Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cd478f3d
Commit
cd478f3d
authored
Apr 12, 2004
by
Juri Linkov
Browse files
(Info-follow-reference): Allow multiline reference name.
parent
0610f22f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/info.el
lisp/info.el
+2
-1
No files found.
lisp/ChangeLog
View file @
cd478f3d
2004-04-12 Juri Linkov <juri@jurta.org>
* info.el (Info-follow-reference): Allow multiline reference name.
2004-04-11 Dave Love <fx@gnu.org>
* progmodes/python.el: New file.
...
...
lisp/info.el
View file @
cd478f3d
...
...
@@ -1840,7 +1840,8 @@ new buffer."
(if (and (save-excursion
(goto-char (+ (point) 5)) ; skip a possible *note
(re-search-backward "\\*note[ \n\t]+" nil t)
(looking-at (concat "\\*note[ \n\t]+" (Info-following-node-name-re))))
(looking-at (concat "\\*note[ \n\t]+"
(Info-following-node-name-re "^.,\t"))))
(<= (point) (match-end 0)))
(goto-char (match-beginning 0))))
;; Go to the reference closest to point
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment