From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D4D111381F3 for ; Thu, 23 May 2013 16:30:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FCBCE07FE; Thu, 23 May 2013 16:30:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2745E07FE for ; Thu, 23 May 2013 16:30:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F9CC33E33E for ; Thu, 23 May 2013 16:30:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9200CE4404 for ; Thu, 23 May 2013 16:30:20 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1369326439.4939bef36b98bffa13c44dca6ebf7522b11775f5.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:patchsets commit in: emacs/24.3/ X-VCS-Repository: proj/emacs-tools X-VCS-Files: emacs/24.3/02_all_texinfo-5.patch X-VCS-Directories: emacs/24.3/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: 4939bef36b98bffa13c44dca6ebf7522b11775f5 X-VCS-Branch: patchsets Date: Thu, 23 May 2013 16:30:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2222b1ec-f6f3-48a7-9bea-61b6f1a5fe9a X-Archives-Hash: 3334874401b370a09a1a5846d9cd9cc3 commit: 4939bef36b98bffa13c44dca6ebf7522b11775f5 Author: Ulrich Müller gentoo org> AuthorDate: Thu May 23 16:27:19 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Thu May 23 16:27:19 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=4939bef3 Fix Info reader to support Info files created by makeinfo 5, bug 464368. --- emacs/24.3/02_all_texinfo-5.patch | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/emacs/24.3/02_all_texinfo-5.patch b/emacs/24.3/02_all_texinfo-5.patch new file mode 100644 index 0000000..e7f1f43 --- /dev/null +++ b/emacs/24.3/02_all_texinfo-5.patch @@ -0,0 +1,16 @@ +Fix Info reader to support Info files created by makeinfo 5. +Patch from upstream. +https://bugs.gentoo.org/464368 +http://debbugs.gnu.org/14125 + +--- emacs-24.3-orig/lisp/info.el ++++ emacs-24.3/lisp/info.el +@@ -1525,7 +1525,7 @@ + (forward-char 1) + (search-forward "\n\^_")) + (if (numberp nodepos) +- (+ (- nodepos lastfilepos) (point))))) ++ (+ (- nodepos lastfilepos) (point-min))))) + + (defun Info-unescape-quotes (value) + "Unescape double quotes and backslashes in VALUE."