(help-make-xrefs): Default info references to an
`(emacs)' prefix.
This commit is contained in:
parent
26c529891a
commit
d62f8b134b
1 changed files with 5 additions and 1 deletions
|
@ -1004,7 +1004,11 @@ that."
|
|||
;; Info references
|
||||
(save-excursion
|
||||
(while (re-search-forward help-xref-info-regexp nil t)
|
||||
(help-xref-button 1 #'info (match-string 1))))
|
||||
(let ((data (match-string 1)))
|
||||
(save-match-data
|
||||
(unless (string-match "^([^)]+)" data)
|
||||
(setq data (concat "(emacs)" data))))
|
||||
(help-xref-button 1 #'info data))))
|
||||
;; An obvious case of a key substitution:
|
||||
(save-excursion
|
||||
(while (re-search-forward
|
||||
|
|
Loading…
Add table
Reference in a new issue