Gentoo Archives: gentoo-commits

From: Ulrich Mueller <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/emacs-tools:patchsets commit in: emacs/24.3/
Date: Thu, 23 May 2013 16:30:24
Message-Id: 1369326439.4939bef36b98bffa13c44dca6ebf7522b11775f5.ulm@gentoo
1 commit: 4939bef36b98bffa13c44dca6ebf7522b11775f5
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 23 16:27:19 2013 +0000
4 Commit: Ulrich Mueller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 23 16:27:19 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=4939bef3
7
8 Fix Info reader to support Info files created by makeinfo 5, bug 464368.
9
10 ---
11 emacs/24.3/02_all_texinfo-5.patch | 16 ++++++++++++++++
12 1 files changed, 16 insertions(+), 0 deletions(-)
13
14 diff --git a/emacs/24.3/02_all_texinfo-5.patch b/emacs/24.3/02_all_texinfo-5.patch
15 new file mode 100644
16 index 0000000..e7f1f43
17 --- /dev/null
18 +++ b/emacs/24.3/02_all_texinfo-5.patch
19 @@ -0,0 +1,16 @@
20 +Fix Info reader to support Info files created by makeinfo 5.
21 +Patch from upstream.
22 +https://bugs.gentoo.org/464368
23 +http://debbugs.gnu.org/14125
24 +
25 +--- emacs-24.3-orig/lisp/info.el
26 ++++ emacs-24.3/lisp/info.el
27 +@@ -1525,7 +1525,7 @@
28 + (forward-char 1)
29 + (search-forward "\n\^_"))
30 + (if (numberp nodepos)
31 +- (+ (- nodepos lastfilepos) (point)))))
32 ++ (+ (- nodepos lastfilepos) (point-min)))))
33 +
34 + (defun Info-unescape-quotes (value)
35 + "Unescape double quotes and backslashes in VALUE."