diff options
author | Kim F. Storm <storm@cua.dk> | 2006-12-07 16:05:56 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2006-12-07 16:05:56 +0000 |
commit | 03e8d958c512a43e802c19fffcd6cf2eacd9e58e (patch) | |
tree | dc1c17cddf5b7177167bd9d1a86e6b3c5c8d0b87 /lisp | |
parent | 48b33882d25e81d1b5516fe580415c41b33e0cf3 (diff) | |
download | emacs-03e8d958c512a43e802c19fffcd6cf2eacd9e58e.tar.gz emacs-03e8d958c512a43e802c19fffcd6cf2eacd9e58e.tar.bz2 emacs-03e8d958c512a43e802c19fffcd6cf2eacd9e58e.zip |
(Info-index): Strip leading colon from topic.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/info.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el index 05c07220892..2318f3240dd 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2805,6 +2805,11 @@ Give an empty topic name to go to the Index node itself." (kill-buffer Info-complete-menu-buffer))))) (if (equal Info-current-file "dir") (error "The Info directory node has no index; use m to select a manual")) + ;; Strip leading colon in topic; index format does not allow them. + (if (and (stringp topic) + (> (length topic) 0) + (= (aref topic 0) ?:)) + (setq topic (substring topic 1))) (let ((orignode Info-current-node) (pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]*\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?" (regexp-quote topic))) |