This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU AUCTeX".
The branch, master has been updated via 4f02339fd36004e9e8c53e475a9cfe0e012b7780 (commit) via c60dfc155b25c390a1d85783bc67942389539cea (commit) from 700587fe36b0104eba7dd30bef869ba3349a66d1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4f02339fd36004e9e8c53e475a9cfe0e012b7780 Author: Mosè Giordano <m...@gnu.org> Date: Wed Oct 29 20:21:17 2014 +0100 Release_11.88 diff --git a/ChangeLog b/ChangeLog index 22813c0..6a6599e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-10-29 Mosè Giordano <m...@gnu.org> + + * Version 11.88 released. + 2014-10-29 Matthew Leach <matt...@mattleach.net> * latex.el (LaTeX-indent-environment-list): Remove setter diff --git a/preview/ChangeLog b/preview/ChangeLog index 7675572..a3d3885 100644 --- a/preview/ChangeLog +++ b/preview/ChangeLog @@ -1,5 +1,9 @@ 2014-10-29 Mosè Giordano <m...@gnu.org> + * Version 11.88 released. + +2014-10-29 Mosè Giordano <m...@gnu.org> + * latex/preview.dtx: Manually change the release version. * preview.el.in: Rename from "preview/preview.el". commit c60dfc155b25c390a1d85783bc67942389539cea Author: Matthew Leach <matt...@mattleach.net> Date: Wed Oct 29 19:58:21 2014 +0100 Minor fix to previous change. Signed-off-by: Mosè Giordano <m...@gnu.org> diff --git a/latex.el b/latex.el index b56abf3..af1c676 100644 --- a/latex.el +++ b/latex.el @@ -6291,35 +6291,35 @@ i.e. you do _not_ have to cater for this yourself by adding \\\\' or $." (defun LaTeX-indent-tabular () "Return indent column for the current tabular-like line." - (destructuring-bind (beg-pos . beg-col) - (LaTeX-env-beginning-pos-col) - (let ((tabular-like-end-regex - (format "\\\\end{%s}" - (regexp-opt - (let (out) - (mapcar (lambda (x) - (when (eq (cadr x) 'LaTeX-indent-tabular) - (push (car x) out))) - LaTeX-indent-environment-list) - (pp out) - out))))) - (cond ((looking-at tabular-like-end-regex) - beg-col) - - ((looking-at "\\\\\\\\") - (+ 2 beg-col)) - - ((looking-at "&") - (LaTeX-hanging-ampersand-position)) - - (t - (+ 2 - (let ((any-col (save-excursion - (when (re-search-backward "\\\\\\\\\\|&" beg-pos t) - (current-column))))) - (if (and any-col (string= "&" (match-string 0))) - any-col - beg-col)))))))) + (destructuring-bind + (beg-pos . beg-col) + (LaTeX-env-beginning-pos-col) + (let ((tabular-like-end-regex + (format "\\\\end{%s}" + (regexp-opt + (let (out) + (mapcar (lambda (x) + (when (eq (cadr x) 'LaTeX-indent-tabular) + (push (car x) out))) + LaTeX-indent-environment-list) + out))))) + (cond ((looking-at tabular-like-end-regex) + beg-col) + + ((looking-at "\\\\\\\\") + (+ 2 beg-col)) + + ((looking-at "&") + (LaTeX-hanging-ampersand-position)) + + (t + (+ 2 + (let ((any-col (save-excursion + (when (re-search-backward "\\\\\\\\\\|&" beg-pos t) + (current-column))))) + (if (and any-col (string= "&" (match-string 0))) + any-col + beg-col)))))))) (provide 'latex) ----------------------------------------------------------------------- Summary of changes: ChangeLog | 4 +++ latex.el | 58 ++++++++++++++++++++++++++-------------------------- preview/ChangeLog | 4 +++ 3 files changed, 37 insertions(+), 29 deletions(-) hooks/post-receive -- GNU AUCTeX
_______________________________________________ auctex-diffs mailing list auctex-di...@gnu.org https://lists.gnu.org/mailman/listinfo/auctex-diffs