Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package emacs-auctex for openSUSE:Factory checked in at 2024-04-04 22:25:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/emacs-auctex (Old) and /work/SRC/openSUSE:Factory/.emacs-auctex.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "emacs-auctex" Thu Apr 4 22:25:06 2024 rev:46 rq:1164387 version:13.3 Changes: -------- --- /work/SRC/openSUSE:Factory/emacs-auctex/emacs-auctex.changes 2024-03-26 19:32:36.928734496 +0100 +++ /work/SRC/openSUSE:Factory/.emacs-auctex.new.1905/emacs-auctex.changes 2024-04-04 22:25:57.142634454 +0200 @@ -1,0 +2,7 @@ +Wed Mar 27 10:37:32 UTC 2024 - Dr. Werner Fink <wer...@suse.de> + +- Add patch ignore-errors.patch + * Allow to scan *all* style files +- Refresh auctex-13.3-auto-TL-2024.tar.xz + +------------------------------------------------------------------- New: ---- ignore-errors.patch BETA DEBUG BEGIN: New: - Add patch ignore-errors.patch * Allow to scan *all* style files BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ emacs-auctex.spec ++++++ --- /var/tmp/diff_new_pack.40J2Sr/_old 2024-04-04 22:25:58.846697192 +0200 +++ /var/tmp/diff_new_pack.40J2Sr/_new 2024-04-04 22:25:58.874698223 +0200 @@ -56,6 +56,7 @@ # PATCH-FEATURE-UPSTREAM dvips.patch Patch0: dvips.patch Patch1: auctex-13.1-expand.patch +Patch2: ignore-errors.patch BuildArch: noarch %description @@ -80,6 +81,7 @@ %setup -n auctex-%{version} %patch -P0 %patch -P1 +%patch -P2 %build unset ${!LC_*} ++++++ auctex-13.3-auto-TL-2024.tar.xz ++++++ ++++ 4481 lines of diff (skipped) ++++++ ignore-errors.patch ++++++ --- latex.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- latex.el +++ latex.el 2024-03-27 10:36:50.635375638 +0000 @@ -2022,7 +2022,7 @@ TYPE is one of the symbols mac or env." ;; over [>=] and a balanced {} ((looking-at-p "[>=]") (forward-char 1) - (with-syntax-table syntax (forward-sexp))) + (with-syntax-table syntax (ignore-errors (forward-sexp)))) ;; Mandatory arguments: ;; m: Ask for input with "Text" as prompt ((looking-at-p "m") @@ -2038,7 +2038,7 @@ TYPE is one of the symbols mac or env." ;; R<token1><token2>{default} ((looking-at-p "R") (re-search-forward "R\\(.\\)\\(.\\)" (+ (point) 3) t) - (with-syntax-table syntax (forward-sexp)) + (with-syntax-table syntax (ignore-errors (forward-sexp))) (push `(TeX-arg-string nil nil nil nil ,(match-string-no-properties 1) ,(match-string-no-properties 2)) @@ -2062,12 +2062,12 @@ TYPE is one of the symbols mac or env." ;; O{default} ((looking-at-p "O") (forward-char 1) - (with-syntax-table syntax (forward-sexp)) + (with-syntax-table syntax (ignore-errors (forward-sexp))) (push (vector "Text") args)) ;; D<token1><token2>{default} ((looking-at-p "D") (re-search-forward "D\\(.\\)\\(.\\)" (+ (point) 3) t) - (with-syntax-table syntax (forward-sexp)) + (with-syntax-table syntax (ignore-errors (forward-sexp))) (push (vector #'TeX-arg-string nil nil nil nil (match-string-no-properties 1) (match-string-no-properties 2)) @@ -2099,7 +2099,7 @@ TYPE is one of the symbols mac or env." ,(match-string-no-properties 1)) args) (when (looking-at-p TeX-grop) - (with-syntax-table syntax (forward-sexp)))) + (with-syntax-table syntax (ignore-errors (forward-sexp))))) ;; Finished: (t nil)))) (if (eq type 'env)