[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] elpa 40c2c26 32/51: Allow for negative offsets in region backward
From: |
Tassilo Horn |
Subject: |
[elpa] elpa 40c2c26 32/51: Allow for negative offsets in region backward search |
Date: |
Sun, 22 May 2016 07:22:49 +0000 (UTC) |
branch: elpa
commit 40c2c26c0be82fb9ae164db40c96efea50cd3d8f
Author: Mosè Giordano <address@hidden>
Commit: Mosè Giordano <address@hidden>
Allow for negative offsets in region backward search
* tex.el (TeX-source-correlate-handle-TeX-region): Use the same regexp
used in `preview-parse-messages', that is also XEmacs compatible and
allows for negative offsets. This makes backward search work also
when using `TeX-command-buffer' and `LaTeX-command-section'. Reported
by Qiang Yin.
---
tex.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tex.el b/tex.el
index b85a72a..c946851 100644
--- a/tex.el
+++ b/tex.el
@@ -1838,7 +1838,9 @@ file and LINE to (+ LINE offset-of-region). Else, return
nil."
(with-current-buffer (or (find-buffer-visiting file)
(find-file-noselect file))
(goto-char 0)
- (when (re-search-forward "!offset(\\([[:digit:]]+\\))" nil t)
+ ;; Same regexp used in `preview-parse-messages'. XXX: XEmacs doesn't
+ ;; support regexp classes, so we can't use "[:digit:]" here.
+ (when (re-search-forward "!offset(\\([---0-9]+\\))" nil t)
(let ((offset (string-to-int (match-string-no-properties 1))))
(when TeX-region-orig-buffer
(list (expand-file-name (buffer-file-name TeX-region-orig-buffer))
- [elpa] elpa 4f9666b 24/51: Use customize option `TeX-region' instead of "_region_", (continued)
- [elpa] elpa 4f9666b 24/51: Use customize option `TeX-region' instead of "_region_", Tassilo Horn, 2016/05/22
- [elpa] elpa a83c4d0 02/51: Fix compatibility with older Emacs versions, Tassilo Horn, 2016/05/22
- [elpa] elpa 13153ba 40/51: Use commit date for package date also in configure, Tassilo Horn, 2016/05/22
- [elpa] elpa 7fc63f1 39/51: Tweak mode name only when file local variable is enabled., Tassilo Horn, 2016/05/22
- [elpa] elpa 7e3bec8 44/51: Run `TeX-add-symbols' if "xcolor" is not an active style, Tassilo Horn, 2016/05/22
- [elpa] elpa f0849b4 10/51: TikZ: Add the 'sin' and 'cos' connectors., Tassilo Horn, 2016/05/22
- [elpa] elpa 7ea1aa3 18/51: TikZ: Don't allow relative points with \coordinate., Tassilo Horn, 2016/05/22
- [elpa] elpa c032063 19/51: Auto save `TeX-command-extra-options'., Tassilo Horn, 2016/05/22
- [elpa] elpa 56c1afd 28/51: Call TeX-newline-function interactively, Tassilo Horn, 2016/05/22
- [elpa] elpa eb9986d 46/51: Respect both "xcolor" and "color" for query to "shadecolor", Tassilo Horn, 2016/05/22
- [elpa] elpa 40c2c26 32/51: Allow for negative offsets in region backward search,
Tassilo Horn <=
- [elpa] elpa 9613bdd 36/51: Check TeX engine only once, Tassilo Horn, 2016/05/22
- [elpa] elpa d9910d4 21/51: Fix small errors in doc string and comment, Tassilo Horn, 2016/05/22
- [elpa] elpa 6eb95e6 14/51: Integrate viewer support between tex.el and tex-jp.el, Tassilo Horn, 2016/05/22
- [elpa] elpa e90e050 34/51: Insert braces after some macros and \relax after \ProcessOptions, Tassilo Horn, 2016/05/22
- [elpa] elpa 0a3632e 45/51: Adjust query commands for loading by xcolor.el, Tassilo Horn, 2016/05/22
- [elpa] elpa adf998c 25/51: Replace TeX-PDF-via-dvips-ps2pdf with TeX-PDF-from-DVI, Tassilo Horn, 2016/05/22
- [elpa] elpa 3e93869 43/51: Add new style/xcolor.el, Tassilo Horn, 2016/05/22
- [elpa] elpa ae6ed8b 06/51: TikZ: make `TeX-TikZ-single-macro-arg' prompt required., Tassilo Horn, 2016/05/22
- [elpa] elpa d83900b 09/51: TikZ: Make '+' and '++' prefixes apply to TikZ points, Tassilo Horn, 2016/05/22
- [elpa] elpa ae6cb79 26/51: Reword documentation of TeX-PDF-from-DVI, Tassilo Horn, 2016/05/22