emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 278/299: Fix the expansion of %' in TeX-expand-list.


From: Stefan Monnier
Subject: [elpa] 278/299: Fix the expansion of %' in TeX-expand-list.
Date: Sun, 02 Nov 2014 03:11:57 +0000

monnier pushed a commit to branch externals/auctex
in repository elpa.

commit ba43eedcf74279f367c6e50037bd7bde70058951
Author: Florent Rougon <address@hidden>
Date:   Sun Aug 24 19:13:16 2014 +0200

    Fix the expansion of %' in TeX-expand-list.
    
    * tex.el (TeX-expand-list): Add the previous position to the
    lenght of the expanded string to get the current position in the
    %' expander.
    
    Signed-off-by: Mosè Giordano <address@hidden>
---
 ChangeLog |    6 ++++++
 tex.el    |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ef147f7..09fff22 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-08-24  Florent Rougon  <address@hidden>  (tiny change)
+
+       * tex.el (TeX-expand-list): Add the previous position to the
+       lenght of the expanded string to get the current position in the
+       %' expander.
+
 2014-08-18  Vincent Bela�che  <address@hidden>
 
        * font-latex.el (font-latex-add-quotes): Code optimization: use
diff --git a/tex.el b/tex.el
index e5378aa..cf56f90 100644
--- a/tex.el
+++ b/tex.el
@@ -507,7 +507,7 @@ string."
            (prog1
                (if (stringp TeX-command-text)
                    (progn
-                     (setq pos (+ (length TeX-command-text) 9)
+                     (setq pos (+ pos (length TeX-command-text) 9)
                            TeX-command-pos
                            (and (string-match " "
                                               (funcall file t t))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]