mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
Merge branch 'maint'
This commit is contained in:
commit
3c4cb7b296
14
lisp/ol.el
14
lisp/ol.el
@ -1557,10 +1557,16 @@ non-nil."
|
||||
(org-link-store-props :type "calendar" :date cd)))
|
||||
|
||||
((eq major-mode 'help-mode)
|
||||
(setq link (concat "help:" (save-excursion
|
||||
(goto-char (point-min))
|
||||
(looking-at "^[^ ]+")
|
||||
(match-string 0))))
|
||||
(let ((symbol (replace-regexp-in-string
|
||||
;; Help mode escapes backquotes and backslashes
|
||||
;; before displaying them. E.g., "`" appears
|
||||
;; as "\'" for reasons. Work around this.
|
||||
(rx "\\" (group (or "`" "\\"))) "\\1"
|
||||
(save-excursion
|
||||
(goto-char (point-min))
|
||||
(looking-at "^[^ ]+")
|
||||
(match-string 0)))))
|
||||
(setq link (concat "help:" symbol)))
|
||||
(org-link-store-props :type "help"))
|
||||
|
||||
((eq major-mode 'w3-mode)
|
||||
|
Loading…
Reference in New Issue
Block a user