فهرست منبع

EXPERIMENTAL/org-e-latex.el (org-e-latex-collect-errors): Small fix

Nicolas Goaziou 13 سال پیش
والد
کامیت
08bad014c7
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      EXPERIMENTAL/org-e-latex.el

+ 2 - 2
EXPERIMENTAL/org-e-latex.el

@@ -1987,10 +1987,10 @@ none."
 		  (re-search-forward "Undefined control sequence" nil t))
 	    (setq errors (concat errors " [undefined control sequence]")))
 	  (when (save-excursion
-		  (re-search-forward "^! LaTeX.*?Error"))
+		  (re-search-forward "^! LaTeX.*?Error" nil t))
 	    (setq errors (concat errors " [LaTeX error]")))
 	  (when (save-excursion
-		  (re-search-forward "^! Package.*?Error"))
+		  (re-search-forward "^! Package.*?Error" nil t))
 	    (setq errors (concat errors " [package error]")))
 	  (and (org-string-nw-p errors) (org-trim errors)))))))