monnier pushed a commit to branch externals/auctex
in repository elpa.
commit ba43eedcf74279f367c6e50037bd7bde70058951
Author: Florent Rougon <[email protected]>
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 <[email protected]>
---
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 <[email protected]> (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 <[email protected]>
* 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))