emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r106175: * lisp/info.el (Info-followi


From: Juri Linkov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106175: * lisp/info.el (Info-following-node-name-re): Add newline to the list
Date: Mon, 24 Oct 2011 08:47:05 +0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106175
fixes bug(s): http://debbugs.gnu.org/9824
committer: Juri Linkov <address@hidden>
branch nick: trunk
timestamp: Mon 2011-10-24 08:47:05 +0300
message:
  * lisp/info.el (Info-following-node-name-re): Add newline to the list
  of allowed characters for leading space.
modified:
  lisp/ChangeLog
  lisp/info.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-10-24 02:56:59 +0000
+++ b/lisp/ChangeLog    2011-10-24 05:47:05 +0000
@@ -1,3 +1,8 @@
+2011-10-24  Juri Linkov  <address@hidden>
+
+       * info.el (Info-following-node-name-re): Add newline to the list
+       of allowed characters for leading space.  (Bug#9824)
+
 2011-10-24  Stefan Monnier  <address@hidden>
 
        * progmodes/octave-inf.el (inferior-octave-mode-map): Fix C-c C-h 
binding.

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2011-09-22 16:15:52 +0000
+++ b/lisp/info.el      2011-10-24 05:47:05 +0000
@@ -2015,7 +2015,7 @@
 Submatch 2 if non-nil is the parenthesized file name part of the node name.
 Submatch 3 is the local part of the node name.
 End of submatch 0, 1, and 3 are the same, so you can safely concat."
-  (concat "[ \t]*"                     ;Skip leading space.
+  (concat "[ \t\n]*"                   ;Skip leading space.
          "\\(\\(([^)]+)\\)?"   ;Node name can start with a file name.
          "\\([" (or allowedchars "^,\t\n") "]*" ;Any number of allowed chars.
          "[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space.


reply via email to

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