2020-05-09 19:58:46 +02:00
|
|
|
|
;;; help-mode.el --- `help-mode' used by *Help* buffers -*- lexical-binding: t; -*-
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2023-01-01 05:31:12 -05:00
|
|
|
|
;; Copyright (C) 1985-1986, 1993-1994, 1998-2023 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
|
;; Foundation, Inc.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2019-05-25 13:43:06 -07:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Keywords: help, internal
|
2010-08-29 12:17:13 -04:00
|
|
|
|
;; Package: emacs
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Defines `help-mode', which is the mode used by *Help* buffers, and
|
|
|
|
|
;; associated support machinery, such as adding hyperlinks, etc.,
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2015-07-07 02:14:16 -04:00
|
|
|
|
(require 'cl-lib)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2022-07-04 18:19:20 +02:00
|
|
|
|
(defvar-keymap help-mode-map
|
|
|
|
|
:doc "Keymap for Help mode."
|
|
|
|
|
:parent (make-composed-keymap button-buffer-map
|
|
|
|
|
special-mode-map)
|
|
|
|
|
"n" #'help-goto-next-page
|
|
|
|
|
"p" #'help-goto-previous-page
|
|
|
|
|
"l" #'help-go-back
|
|
|
|
|
"r" #'help-go-forward
|
|
|
|
|
"C-c C-b" #'help-go-back
|
|
|
|
|
"C-c C-f" #'help-go-forward
|
|
|
|
|
"<XF86Back>" #'help-go-back
|
|
|
|
|
"<XF86Forward>" #'help-go-forward
|
|
|
|
|
"C-c C-c" #'help-follow-symbol
|
|
|
|
|
"s" #'help-view-source
|
|
|
|
|
"I" #'help-goto-lispref-info
|
|
|
|
|
"i" #'help-goto-info
|
|
|
|
|
"c" #'help-customize)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2008-02-20 06:37:53 +00:00
|
|
|
|
(easy-menu-define help-mode-menu help-mode-map
|
2020-05-09 19:58:46 +02:00
|
|
|
|
"Menu for Help mode."
|
2008-02-20 06:37:53 +00:00
|
|
|
|
'("Help-Mode"
|
|
|
|
|
["Show Help for Symbol" help-follow-symbol
|
|
|
|
|
:help "Show the docs for the symbol at point"]
|
|
|
|
|
["Previous Topic" help-go-back
|
2021-02-20 05:55:33 +01:00
|
|
|
|
:help "Go back to previous topic in this help buffer"
|
|
|
|
|
:active help-xref-stack]
|
2008-02-20 06:37:53 +00:00
|
|
|
|
["Next Topic" help-go-forward
|
2021-02-20 05:55:33 +01:00
|
|
|
|
:help "Go back to next topic in this help buffer"
|
|
|
|
|
:active help-xref-forward-stack]
|
2008-02-20 06:37:53 +00:00
|
|
|
|
["Move to Previous Button" backward-button
|
2019-07-01 08:45:24 +02:00
|
|
|
|
:help "Move to the Previous Button in the help buffer"]
|
2008-02-20 06:37:53 +00:00
|
|
|
|
["Move to Next Button" forward-button
|
2021-06-20 02:14:29 +03:00
|
|
|
|
:help "Move to the Next Button in the help buffer"]
|
2021-06-15 20:51:00 +02:00
|
|
|
|
["View Source" help-view-source
|
|
|
|
|
:help "Go to the source file for the current help item"]
|
|
|
|
|
["Goto Info" help-goto-info
|
2021-06-20 02:14:29 +03:00
|
|
|
|
:help "Go to the info node for the current help item"]
|
|
|
|
|
["Customize" help-customize
|
|
|
|
|
:help "Customize variable or face"]))
|
2008-02-20 06:37:53 +00:00
|
|
|
|
|
2021-09-12 20:11:52 +03:00
|
|
|
|
(defun help-mode-context-menu (menu click)
|
2021-09-15 19:00:56 +03:00
|
|
|
|
"Populate MENU with Help mode commands at CLICK."
|
2021-08-01 23:07:29 +03:00
|
|
|
|
(define-key menu [help-mode-separator] menu-bar-separator)
|
|
|
|
|
(let ((easy-menu (make-sparse-keymap "Help-Mode")))
|
|
|
|
|
(easy-menu-define nil easy-menu nil
|
|
|
|
|
'("Help-Mode"
|
|
|
|
|
["Previous Topic" help-go-back
|
|
|
|
|
:help "Go back to previous topic in this help buffer"
|
|
|
|
|
:active help-xref-stack]
|
|
|
|
|
["Next Topic" help-go-forward
|
|
|
|
|
:help "Go back to next topic in this help buffer"
|
|
|
|
|
:active help-xref-forward-stack]))
|
|
|
|
|
(dolist (item (reverse (lookup-key easy-menu [menu-bar help-mode])))
|
|
|
|
|
(when (consp item)
|
|
|
|
|
(define-key menu (vector (car item)) (cdr item)))))
|
|
|
|
|
|
2021-09-12 20:11:52 +03:00
|
|
|
|
(when (mouse-posn-property (event-start click) 'mouse-face)
|
2021-08-01 23:07:29 +03:00
|
|
|
|
(define-key menu [help-mode-push-button]
|
|
|
|
|
'(menu-item "Follow Link" (lambda (event)
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(push-button event))
|
|
|
|
|
:help "Follow the link at click")))
|
|
|
|
|
|
|
|
|
|
menu)
|
|
|
|
|
|
2021-02-20 05:55:33 +01:00
|
|
|
|
(defvar help-mode-tool-bar-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(tool-bar-local-item "close" 'quit-window 'quit map
|
2021-03-08 04:23:11 +01:00
|
|
|
|
:help "Quit help"
|
2021-02-20 05:55:33 +01:00
|
|
|
|
:vert-only t)
|
|
|
|
|
(define-key-after map [separator-1] menu-bar-separator)
|
|
|
|
|
(tool-bar-local-item "search" 'isearch-forward 'search map
|
2021-03-08 04:23:11 +01:00
|
|
|
|
:help "Search" :vert-only t)
|
2021-02-20 05:55:33 +01:00
|
|
|
|
(tool-bar-local-item-from-menu 'help-go-back "left-arrow" map help-mode-map
|
|
|
|
|
:rtl "right-arrow" :vert-only t)
|
|
|
|
|
(tool-bar-local-item-from-menu 'help-go-forward "right-arrow" map help-mode-map
|
|
|
|
|
:rtl "left-arrow" :vert-only t)
|
|
|
|
|
map))
|
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 09:55:40 +01:00
|
|
|
|
(defvar-local help-xref-stack nil
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"A stack of ways by which to return to help buffers after following xrefs.
|
2021-07-31 13:26:26 +02:00
|
|
|
|
Used by `help-follow-symbol' and `help-xref-go-back'.
|
2001-10-11 23:33:52 +00:00
|
|
|
|
An element looks like (POSITION FUNCTION ARGS...).
|
|
|
|
|
To use the element, do (apply FUNCTION ARGS) then goto the point.")
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(put 'help-xref-stack 'permanent-local t)
|
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 09:55:40 +01:00
|
|
|
|
(defvar-local help-xref-forward-stack nil
|
2008-09-06 02:59:40 +00:00
|
|
|
|
"A stack used to navigate help forwards after using the back button.
|
2021-07-31 13:26:26 +02:00
|
|
|
|
Used by `help-follow-symbol' and `help-xref-go-forward'.
|
2007-06-08 10:09:24 +00:00
|
|
|
|
An element looks like (POSITION FUNCTION ARGS...).
|
|
|
|
|
To use the element, do (apply FUNCTION ARGS) then goto the point.")
|
|
|
|
|
(put 'help-xref-forward-stack 'permanent-local t)
|
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 09:55:40 +01:00
|
|
|
|
(defvar-local help-xref-stack-item nil
|
2021-08-11 10:10:19 +03:00
|
|
|
|
"An item for `help-follow-symbol' to push onto `help-xref-stack'.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
The format is (FUNCTION ARGS...).")
|
|
|
|
|
(put 'help-xref-stack-item 'permanent-local t)
|
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 09:55:40 +01:00
|
|
|
|
(defvar-local help-xref-stack-forward-item nil
|
2007-06-08 10:09:24 +00:00
|
|
|
|
"An item for `help-go-back' to push onto `help-xref-forward-stack'.
|
|
|
|
|
The format is (FUNCTION ARGS...).")
|
|
|
|
|
(put 'help-xref-stack-forward-item 'permanent-local t)
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(setq-default help-xref-stack nil help-xref-stack-item nil)
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(setq-default help-xref-forward-stack nil help-xref-forward-stack-item nil)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2021-08-17 14:20:57 +02:00
|
|
|
|
(defvar help-mode-syntax-table
|
|
|
|
|
(let ((table (make-syntax-table emacs-lisp-mode-syntax-table)))
|
2021-08-17 15:40:05 +03:00
|
|
|
|
;; Treat single quotes as parens so that forward-sexp does not
|
|
|
|
|
;; break when a quoted string contains punctuation.
|
2021-08-17 14:20:57 +02:00
|
|
|
|
(modify-syntax-entry ?‘ "(’ " table)
|
|
|
|
|
(modify-syntax-entry ?’ ")‘ " table)
|
|
|
|
|
table)
|
|
|
|
|
"Syntax table used in `help-mode'.")
|
|
|
|
|
|
2001-11-20 23:36:37 +00:00
|
|
|
|
(defcustom help-mode-hook nil
|
|
|
|
|
"Hook run by `help-mode'."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'help)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;; Button types used by help
|
|
|
|
|
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
(define-button-type 'help-xref
|
2004-12-17 15:17:12 +00:00
|
|
|
|
'follow-link t
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'action #'help-button-action)
|
|
|
|
|
|
|
|
|
|
(defun help-button-action (button)
|
|
|
|
|
"Call BUTTON's help function."
|
2016-02-23 20:46:00 +11:00
|
|
|
|
(help-do-xref nil
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
(button-get button 'help-function)
|
|
|
|
|
(button-get button 'help-args)))
|
|
|
|
|
|
2001-11-25 18:49:03 +00:00
|
|
|
|
;; These 6 calls to define-button-type were generated in a dolist
|
|
|
|
|
;; loop, but that is bad because it means these button types don't
|
|
|
|
|
;; have an easily found definition.
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-function
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-function
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this function"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-variable
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-variable
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this variable"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-face
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-face
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this face"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-coding-system
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-coding-system
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this coding system"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-input-method
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-input-method
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this input method"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-character-set
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-character-set
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this character set"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2011-11-19 01:18:31 -08:00
|
|
|
|
;; Make some more idiosyncratic button types.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(define-button-type 'help-symbol
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2015-07-06 13:25:26 -04:00
|
|
|
|
'help-function #'describe-symbol
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: describe this symbol"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(define-button-type 'help-back
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function #'help-xref-go-back
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: go back to previous help buffer"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(define-button-type 'help-forward
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function #'help-xref-go-forward
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: move forward to next help buffer"))
|
|
|
|
|
|
2008-02-25 16:31:25 +00:00
|
|
|
|
(define-button-type 'help-info-variable
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
;; the name of the variable is put before the argument to Info
|
2011-04-19 15:44:55 +02:00
|
|
|
|
'help-function (lambda (_a v) (info v))
|
2008-02-25 16:31:25 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: read this Info node"))
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(define-button-type 'help-info
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function #'info
|
2005-10-28 21:27:13 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: read this Info node"))
|
|
|
|
|
|
2021-09-25 03:03:34 +02:00
|
|
|
|
(define-button-type 'help-man
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function #'man
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: read this man page"))
|
|
|
|
|
|
2021-09-04 10:19:03 +02:00
|
|
|
|
(define-button-type 'help-customization-group
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function #'customize-group
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: display this customization group"))
|
|
|
|
|
|
2005-10-28 21:27:13 +00:00
|
|
|
|
(define-button-type 'help-url
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function #'browse-url
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: view this URL in a browser"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(define-button-type 'help-customize-variable
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function (lambda (v)
|
|
|
|
|
(customize-variable v))
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: customize variable"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2001-10-12 01:58:02 +00:00
|
|
|
|
(define-button-type 'help-customize-face
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2001-10-12 01:58:02 +00:00
|
|
|
|
'help-function (lambda (v)
|
|
|
|
|
(customize-face v))
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: customize face"))
|
2001-10-12 01:58:02 +00:00
|
|
|
|
|
2019-10-11 21:58:26 +02:00
|
|
|
|
(defun help-function-def--button-function (fun &optional file type)
|
|
|
|
|
(or file
|
|
|
|
|
(setq file (find-lisp-object-file-name fun type)))
|
|
|
|
|
(if (not file)
|
|
|
|
|
(message "Unable to find defining file")
|
|
|
|
|
(require 'find-func)
|
|
|
|
|
(when (eq file 'C-source)
|
|
|
|
|
(setq file
|
|
|
|
|
(help-C-file-name (indirect-function fun) 'fun)))
|
|
|
|
|
;; Don't use find-function-noselect because it follows
|
|
|
|
|
;; aliases (which fails for built-in functions).
|
|
|
|
|
(let* ((location
|
|
|
|
|
(find-function-search-for-symbol fun type file))
|
|
|
|
|
(position (cdr location)))
|
2022-05-02 11:30:43 +02:00
|
|
|
|
(if help-window-keep-selected
|
|
|
|
|
(pop-to-buffer-same-window (car location))
|
|
|
|
|
(pop-to-buffer (car location)))
|
2019-10-11 21:58:26 +02:00
|
|
|
|
(run-hooks 'find-function-after-hook)
|
|
|
|
|
(if position
|
|
|
|
|
(progn
|
|
|
|
|
;; Widen the buffer if necessary to go to this position.
|
|
|
|
|
(when (or (< position (point-min))
|
|
|
|
|
(> position (point-max)))
|
|
|
|
|
(widen))
|
2021-10-01 09:11:37 +02:00
|
|
|
|
;; Save mark for the old location, unless the point is not
|
|
|
|
|
;; actually going to move.
|
|
|
|
|
(unless (= (point) position)
|
|
|
|
|
(push-mark nil t))
|
2019-10-11 21:58:26 +02:00
|
|
|
|
(goto-char position))
|
|
|
|
|
(message "Unable to find location in file")))))
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(define-button-type 'help-function-def
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2019-10-11 21:58:26 +02:00
|
|
|
|
'help-function #'help-function-def--button-function
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: find function's definition"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2013-06-11 22:16:02 -04:00
|
|
|
|
(define-button-type 'help-function-cmacro ; FIXME: Obsolete since 24.4.
|
2009-09-11 03:39:48 +00:00
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function (lambda (fun file)
|
|
|
|
|
(setq file (locate-library file t))
|
|
|
|
|
(if (and file (file-readable-p file))
|
|
|
|
|
(progn
|
2022-05-03 12:23:25 +02:00
|
|
|
|
(if help-window-keep-selected
|
|
|
|
|
(pop-to-buffer-same-window
|
|
|
|
|
(find-file-noselect file))
|
|
|
|
|
(pop-to-buffer (find-file-noselect file)))
|
2017-12-10 13:34:06 +00:00
|
|
|
|
(widen)
|
2009-09-11 03:39:48 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward
|
2013-06-11 22:16:02 -04:00
|
|
|
|
(format "^[ \t]*(\\(cl-\\)?define-compiler-macro[ \t]+%s"
|
2015-07-07 02:14:16 -04:00
|
|
|
|
(regexp-quote (symbol-name fun)))
|
|
|
|
|
nil t)
|
2009-09-11 03:39:48 +00:00
|
|
|
|
(forward-line 0)
|
|
|
|
|
(message "Unable to find location in file")))
|
|
|
|
|
(message "Unable to find file")))
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: find function's compiler macro"))
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(define-button-type 'help-variable-def
|
(help-xref): New button type.
(help-function, help-variable, help-face, help-coding-system)
(help-input-method, help-character-set, help-type, help-symbol)
(help-back, help-info, help-customize-variable, help-customize-face)
(help-function-def, help-variable-def): Use it as a supertype.
Remove `action' property.
2001-11-02 05:49:48 +00:00
|
|
|
|
:supertype 'help-xref
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function (lambda (var &optional file)
|
2004-04-29 18:43:32 +00:00
|
|
|
|
(when (eq file 'C-source)
|
|
|
|
|
(setq file (help-C-file-name var 'var)))
|
2017-12-10 13:34:06 +00:00
|
|
|
|
(let* ((location (find-variable-noselect var file))
|
|
|
|
|
(position (cdr location)))
|
2022-05-03 12:23:25 +02:00
|
|
|
|
(if help-window-keep-selected
|
|
|
|
|
(pop-to-buffer-same-window (car location))
|
|
|
|
|
(pop-to-buffer (car location)))
|
2016-04-25 19:27:06 +02:00
|
|
|
|
(run-hooks 'find-function-after-hook)
|
2017-12-10 13:34:06 +00:00
|
|
|
|
(if position
|
|
|
|
|
(progn
|
|
|
|
|
;; Widen the buffer if necessary to go to this position.
|
|
|
|
|
(when (or (< position (point-min))
|
|
|
|
|
(> position (point-max)))
|
|
|
|
|
(widen))
|
|
|
|
|
(goto-char position))
|
|
|
|
|
(message "Unable to find location in file"))))
|
2006-07-11 20:12:40 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: find variable's definition"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2005-05-16 03:31:32 +00:00
|
|
|
|
(define-button-type 'help-face-def
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function (lambda (fun file)
|
|
|
|
|
(require 'find-func)
|
|
|
|
|
;; Don't use find-function-noselect because it follows
|
|
|
|
|
;; aliases (which fails for built-in functions).
|
2017-12-10 13:34:06 +00:00
|
|
|
|
(let* ((location
|
|
|
|
|
(find-function-search-for-symbol fun 'defface file))
|
|
|
|
|
(position (cdr location)))
|
2022-05-03 12:23:25 +02:00
|
|
|
|
(if help-window-keep-selected
|
|
|
|
|
(pop-to-buffer-same-window (car location))
|
|
|
|
|
(pop-to-buffer (car location)))
|
2017-12-10 13:34:06 +00:00
|
|
|
|
(if position
|
|
|
|
|
(progn
|
|
|
|
|
;; Widen the buffer if necessary to go to this position.
|
|
|
|
|
(when (or (< position (point-min))
|
|
|
|
|
(> position (point-max)))
|
|
|
|
|
(widen))
|
|
|
|
|
(goto-char position))
|
|
|
|
|
(message "Unable to find location in file"))))
|
2005-05-16 03:31:32 +00:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: find face's definition"))
|
|
|
|
|
|
2010-06-20 00:55:14 -04:00
|
|
|
|
(define-button-type 'help-package
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function 'describe-package
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: Describe package"))
|
|
|
|
|
|
2010-06-19 18:36:51 -04:00
|
|
|
|
(define-button-type 'help-package-def
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function (lambda (file) (dired file))
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: visit package directory"))
|
|
|
|
|
|
2010-10-11 23:10:21 -04:00
|
|
|
|
(define-button-type 'help-theme-def
|
|
|
|
|
:supertype 'help-xref
|
2019-06-02 11:52:41 -04:00
|
|
|
|
'help-function #'find-file
|
2010-10-11 23:10:21 -04:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: visit theme file"))
|
|
|
|
|
|
|
|
|
|
(define-button-type 'help-theme-edit
|
|
|
|
|
:supertype 'help-xref
|
2019-06-02 11:52:41 -04:00
|
|
|
|
'help-function #'customize-create-theme
|
2010-10-11 23:10:21 -04:00
|
|
|
|
'help-echo (purecopy "mouse-2, RET: edit this theme file"))
|
2012-08-05 16:41:12 +08:00
|
|
|
|
|
|
|
|
|
(define-button-type 'help-dir-local-var-def
|
|
|
|
|
:supertype 'help-xref
|
lisp/*.el: Remove lexical-binding warnings; additional small cleanups.
* calculator.el (calculator): Mark unused argument.
(calculator-paste, calculator-quit, calculator-integer-p):
Use ignore-errors.
(calculator-string-to-number, calculator-decimal, calculator-exp)
(calculator-op-or-exp): Use string-match-p.
* dired-aux.el (dired-compress): Use ignore-errors.
(dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
(dired-do-async-shell-command, dired-do-shell-command)
(dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
(dired-insert-subdir-validate): Use string-match-p.
(dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
(dired-add-entry): Use string-match-p, looking-at-p.
(dired-insert-subdir-newpos): Remove unused local variable.
* dired.el (dired-buffer-more-recently-used-p): Declare.
(dired-insert-set-properties, dired-insert-old-subdirs):
Use ignore-errors.
* filenotify.el (file-notify-callback): Remove unused local variable.
* filesets.el (filesets-error): Mark unused argument.
(filesets-which-command-p, filesets-filter-dir-names)
(filesets-directory-files, filesets-get-external-viewer)
(filesets-ingroup-get-data): Use string-match-p.
* find-file.el (ff-other-file-name, ff-other-file-name)
(ff-find-the-other-file, ff-cc-hh-converter):
Remove unused local variables.
(ff-get-file-name): Use string-match-p.
(ff-all-dirs-under): Use ignore-errors.
* follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
(follow-select-if-visible): Remove unused local variable.
* forms.el (read-file-filter): Move declaration.
(forms--make-format, forms--make-parser, forms-insert-record):
Quote function with #'.
(forms--update): Use string-match-p. Quote function with #'.
* help-mode.el (help-dir-local-var-def): Mark unused argument.
(help-make-xrefs): Use looking-at-p.
(help-xref-on-pp): Use looking-at-p, ignore-errors.
* ibuffer.el (ibuffer-ext-visible-p): Declare.
(ibuffer-confirm-operation-on): Use string-match-p.
* msb.el (msb-item-handler, msb-dired-item-handler):
Mark unused arguments.
* ses.el (ses-decode-cell-symbol)
(ses-kill-override): Remove unused local variable.
(ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
(ses-load): Use ignore-errors, looking-at-p.
(ses-jump-safe): Use ignore-errors.
(ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
* tabify.el (untabify, tabify): Mark unused arguments.
* thingatpt.el (thing-at-point--bounds-of-well-formed-url):
Mark unused argument.
(bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
(thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2013-08-10 17:17:29 +02:00
|
|
|
|
'help-function (lambda (_var &optional file)
|
2012-08-05 16:41:12 +08:00
|
|
|
|
;; FIXME: this should go to the point where the
|
|
|
|
|
;; local variable was defined.
|
|
|
|
|
(find-file file))
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: open directory-local variables file"))
|
2019-06-02 11:52:41 -04:00
|
|
|
|
(define-button-type 'help-news
|
|
|
|
|
:supertype 'help-xref
|
|
|
|
|
'help-function
|
|
|
|
|
(lambda (file pos)
|
2022-05-03 12:23:25 +02:00
|
|
|
|
(if help-window-keep-selected
|
2022-07-21 20:01:36 -04:00
|
|
|
|
(view-file file)
|
|
|
|
|
(view-file-other-window file))
|
2019-06-02 11:52:41 -04:00
|
|
|
|
(goto-char pos))
|
|
|
|
|
'help-echo (purecopy "mouse-2, RET: show corresponding NEWS announcement"))
|
2021-10-24 16:47:22 +02:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-mode--add-function-link (str fun)
|
|
|
|
|
(make-text-button (copy-sequence str) nil
|
|
|
|
|
'type 'help-function
|
|
|
|
|
'help-args (list fun)))
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2012-06-11 21:03:10 -04:00
|
|
|
|
(defvar bookmark-make-record-function)
|
2021-06-15 20:51:00 +02:00
|
|
|
|
(defvar help-mode--current-data nil)
|
2012-06-11 21:03:10 -04:00
|
|
|
|
|
2011-09-07 10:40:27 -04:00
|
|
|
|
;;;###autoload
|
2011-08-28 14:58:16 -04:00
|
|
|
|
(define-derived-mode help-mode special-mode "Help"
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Major mode for viewing help text and navigating references in it.
|
2022-05-29 16:31:38 +02:00
|
|
|
|
Also see the `help-enable-variable-value-editing' variable.
|
2022-04-17 18:59:59 +02:00
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
Commands:
|
|
|
|
|
\\{help-mode-map}"
|
2020-12-09 09:44:38 +01:00
|
|
|
|
(setq-local revert-buffer-function
|
|
|
|
|
#'help-mode-revert-buffer)
|
2022-07-21 20:01:36 -04:00
|
|
|
|
(add-hook 'context-menu-functions #'help-mode-context-menu 5 t)
|
2021-02-20 05:55:33 +01:00
|
|
|
|
(setq-local tool-bar-map
|
|
|
|
|
help-mode-tool-bar-map)
|
2021-06-15 20:51:00 +02:00
|
|
|
|
(setq-local help-mode--current-data nil)
|
2020-12-09 09:44:38 +01:00
|
|
|
|
(setq-local bookmark-make-record-function
|
2022-05-06 13:28:20 +02:00
|
|
|
|
#'help-bookmark-make-record)
|
2022-05-06 13:30:12 +02:00
|
|
|
|
(unless search-default-mode
|
|
|
|
|
(isearch-fold-quotes-mode)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-mode-setup ()
|
2020-05-09 19:58:46 +02:00
|
|
|
|
"Enter Help mode in the current buffer."
|
2022-05-13 16:58:59 +02:00
|
|
|
|
(declare (obsolete nil "29.1"))
|
2022-05-13 19:31:46 +02:00
|
|
|
|
(help-mode)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(setq buffer-read-only nil))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-mode-finish ()
|
2020-05-09 19:58:46 +02:00
|
|
|
|
"Finalize Help mode setup in current buffer."
|
2022-05-13 16:58:59 +02:00
|
|
|
|
(declare (obsolete nil "29.1"))
|
2013-09-17 13:48:06 -04:00
|
|
|
|
(when (derived-mode-p 'help-mode)
|
2012-07-13 15:06:09 +08:00
|
|
|
|
(setq buffer-read-only t)
|
2004-04-20 20:53:01 +00:00
|
|
|
|
(help-make-xrefs (current-buffer))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2002-07-16 16:02:35 +00:00
|
|
|
|
;; Grokking cross-reference information in doc strings and
|
|
|
|
|
;; hyperlinking it.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;; This may have some scope for extension and the same or something
|
|
|
|
|
;; similar should be done for widget doc strings, which currently use
|
|
|
|
|
;; another mechanism.
|
|
|
|
|
|
|
|
|
|
(defvar help-back-label (purecopy "[back]")
|
|
|
|
|
"Label to use by `help-make-xrefs' for the go-back reference.")
|
|
|
|
|
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(defvar help-forward-label (purecopy "[forward]")
|
|
|
|
|
"Label to use by `help-make-xrefs' for the go-forward reference.")
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(defconst help-xref-symbol-regexp
|
2006-03-20 00:42:21 +00:00
|
|
|
|
(purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" ; Link to var
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 18:08:55 -05:00
|
|
|
|
"\\(function\\|command\\|call\\)\\|" ; Link to function
|
2006-06-28 23:29:54 +00:00
|
|
|
|
"\\(face\\)\\|" ; Link to face
|
|
|
|
|
"\\(symbol\\|program\\|property\\)\\|" ; Don't link
|
2003-10-19 03:58:43 +00:00
|
|
|
|
"\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)"
|
|
|
|
|
"[ \t\n]+\\)?"
|
2022-05-07 12:46:55 +02:00
|
|
|
|
"\\(\\\\\\+\\)?"
|
2020-12-27 14:21:50 +00:00
|
|
|
|
"['`‘]\\(\\(?:\\sw\\|\\s_\\)+\\|`\\)['’]"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Regexp matching doc string references to symbols.
|
|
|
|
|
|
|
|
|
|
The words preceding the quoted symbol can be used in doc strings to
|
|
|
|
|
distinguish references to variables, functions and symbols.")
|
|
|
|
|
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(defvar help-xref-mule-regexp nil
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Regexp matching doc string references to MULE-related keywords.
|
|
|
|
|
|
|
|
|
|
It is usually nil, and is temporarily bound to an appropriate regexp
|
|
|
|
|
when help commands related to multilingual environment (e.g.,
|
|
|
|
|
`describe-coding-system') are invoked.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defconst help-xref-info-regexp
|
Support curved quotes in doc strings
Emacs's traditional doc string style has been to quote symbols
`like this'. This worked well on now-obsolete terminals where
` and ' were symmetric quotes, but nowadays curved quotes
‘like this’ look better. Support quoting the new way too.
(Bug#20385)
* doc/lispref/tips.texi (Documentation Tips): Symbols can be quoted
‘like-this’ as well as `like-this'.
* etc/NEWS: Mention this.
* lisp/cedet/mode-local.el (overload-docstring-extension)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cus-theme.el (describe-theme-1):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-generic.el (cl--generic-describe):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-class)
(eieio-help-constructor):
* lisp/emacs-lisp/package.el (describe-package-1):
* lisp/faces.el (describe-face):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode, help-fns--obsolete):
(help-fns--interactive-only, describe-function-1):
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/international/mule-cmds.el (describe-input-method)
(describe-language-environment):
* lisp/international/mule-diag.el (describe-character-set)
(print-coding-system-briefly, list-input-methods)
(list-input-methods-1):
Insert curved quotes rather than grave accent and apostrophe.
* lisp/cedet/srecode/texi.el (srecode-texi-texify-docstring):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-proper-noun-region-engine):
* lisp/emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2)
(lisp-cl-font-lock-keywords-2):
* lisp/finder.el (finder-font-lock-keywords):
* lisp/gnus/gnus-art.el (gnus-button-alist):
* lisp/help-fns.el (help-do-arg-highlight)
(describe-function-1, describe-variable):
* lisp/help-mode.el (help-xref-symbol-regexp)
(help-xref-info-regexp, help-xref-url-regexp):
* lisp/help.el (describe-mode):
* lisp/international/mule-cmds.el (help-xref-mule-regexp-template):
* lisp/wid-edit.el (widget-documentation-link-regexp):
Parse symbols quoted ‘like-this’ as well as `like-this'.
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode):
Add "‘" and "’" to electric-pair-text-pairs.
(elisp--form-quoted-p): Also allow "‘" as a quoting char.
(elisp-completion-at-point, elisp--preceding-sexp):
Also treat "‘" and "’" as quoting chars.
2015-05-28 00:06:14 -07:00
|
|
|
|
(purecopy
|
Improve the optional translation of quotes
Fix several problems with the recently-added custom variable
help-quote-translation where the code would quote inconsistently
in help buffers. Add support for quoting 'like this', which
is common in other GNU programs in ASCII environments. Change
help-quote-translation to use more mnemonic values: values are now the
initial quoting char, e.g., (setq help-quote-translation ?`) gets the
traditional Emacs help-buffer quoting style `like this'. Change the
default behavior of substitute-command-keys to match what's done in
set-locale-environment, i.e., quote ‘like this’ if displayable,
'like this' otherwise.
* doc/lispref/help.texi (Keys in Documentation): Document
new behavior of substitute-command-keys, and document
help-quote-translation.
* doc/lispref/tips.texi (Documentation Tips):
Mention the effect of help-quote-translation.
* etc/NEWS: Mention new behavior of substitute-command-keys,
and merge help-quote-translation news into it.
When talking about doc strings, mention new ways to type quotes.
* lisp/cedet/mode-local.el (overload-docstring-extension):
Revert my recent change to this function, which shouldn't be
needed as the result is a doc string.
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-theme.el (describe-theme-1):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/emacs-lisp/cl-generic.el (cl--generic-describe):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-class)
(eieio-help-constructor):
* lisp/emacs-lisp/package.el (describe-package-1):
* lisp/faces.el (describe-face):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode):
Use substitute-command-keys to ensure a more-consistent quoting
style in help buffers.
* lisp/cus-start.el (standard):
Document new help-quote-translation behavior.
* lisp/emacs-lisp/lisp-mode.el (lisp-fdefs):
* lisp/help-mode.el (help-xref-symbol-regexp, help-xref-info-regexp)
(help-xref-url-regexp):
* lisp/international/mule-cmds.el (help-xref-mule-regexp-template):
* lisp/wid-edit.el (widget-documentation-link-regexp):
Also match 'foo', in case we're in a help buffer generated when
help-quote-translation is ?'.
* src/doc.c: Include disptab.h, for DISP_CHAR_VECTOR.
(LEFT_SINGLE_QUOTATION_MARK, uLSQM0, uLSQM1, uLSQM2, uRSQM0)
(uRSQM1, uRSQM2, LSQM, RSQM): New constants.
(Fsubstitute_command_keys): Document and implement new behavior.
(Vhelp_quote_translation): Document new behavior.
2015-06-19 00:35:43 -07:00
|
|
|
|
"\\<[Ii]nfo[ \t\n]+\\(node\\|anchor\\)[ \t\n]+['`‘]\\([^'’]+\\)['’]")
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Regexp matching doc string references to an Info node.")
|
|
|
|
|
|
2021-09-25 03:03:34 +02:00
|
|
|
|
(defconst help-xref-man-regexp
|
|
|
|
|
(purecopy
|
|
|
|
|
"\\<[Mm]an[ \t\n]+page[ \t\n]+\\(?:for[ \t\n]+\\)?['`‘\"]\\([^'’\"]+\\)['’\"]")
|
|
|
|
|
"Regexp matching doc string references to a man page.")
|
|
|
|
|
|
2021-09-04 10:19:03 +02:00
|
|
|
|
(defconst help-xref-customization-group-regexp
|
|
|
|
|
(purecopy "\\<[Cc]ustomization[ \t\n]+[Gg]roup[ \t\n]+['`‘]\\([^'’]+\\)['’]")
|
|
|
|
|
"Regexp matching doc string references to a customization group.")
|
|
|
|
|
|
2005-10-28 21:27:13 +00:00
|
|
|
|
(defconst help-xref-url-regexp
|
Improve the optional translation of quotes
Fix several problems with the recently-added custom variable
help-quote-translation where the code would quote inconsistently
in help buffers. Add support for quoting 'like this', which
is common in other GNU programs in ASCII environments. Change
help-quote-translation to use more mnemonic values: values are now the
initial quoting char, e.g., (setq help-quote-translation ?`) gets the
traditional Emacs help-buffer quoting style `like this'. Change the
default behavior of substitute-command-keys to match what's done in
set-locale-environment, i.e., quote ‘like this’ if displayable,
'like this' otherwise.
* doc/lispref/help.texi (Keys in Documentation): Document
new behavior of substitute-command-keys, and document
help-quote-translation.
* doc/lispref/tips.texi (Documentation Tips):
Mention the effect of help-quote-translation.
* etc/NEWS: Mention new behavior of substitute-command-keys,
and merge help-quote-translation news into it.
When talking about doc strings, mention new ways to type quotes.
* lisp/cedet/mode-local.el (overload-docstring-extension):
Revert my recent change to this function, which shouldn't be
needed as the result is a doc string.
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-theme.el (describe-theme-1):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/emacs-lisp/cl-generic.el (cl--generic-describe):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-class)
(eieio-help-constructor):
* lisp/emacs-lisp/package.el (describe-package-1):
* lisp/faces.el (describe-face):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode):
Use substitute-command-keys to ensure a more-consistent quoting
style in help buffers.
* lisp/cus-start.el (standard):
Document new help-quote-translation behavior.
* lisp/emacs-lisp/lisp-mode.el (lisp-fdefs):
* lisp/help-mode.el (help-xref-symbol-regexp, help-xref-info-regexp)
(help-xref-url-regexp):
* lisp/international/mule-cmds.el (help-xref-mule-regexp-template):
* lisp/wid-edit.el (widget-documentation-link-regexp):
Also match 'foo', in case we're in a help buffer generated when
help-quote-translation is ?'.
* src/doc.c: Include disptab.h, for DISP_CHAR_VECTOR.
(LEFT_SINGLE_QUOTATION_MARK, uLSQM0, uLSQM1, uLSQM2, uRSQM0)
(uRSQM1, uRSQM2, LSQM, RSQM): New constants.
(Fsubstitute_command_keys): Document and implement new behavior.
(Vhelp_quote_translation): Document new behavior.
2015-06-19 00:35:43 -07:00
|
|
|
|
(purecopy "\\<[Uu][Rr][Ll][ \t\n]+['`‘]\\([^'’]+\\)['’]")
|
2005-10-28 21:27:13 +00:00
|
|
|
|
"Regexp matching doc string references to a URL.")
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-setup-xref (item interactive-p)
|
|
|
|
|
"Invoked from commands using the \"*Help*\" buffer to install some xref info.
|
|
|
|
|
|
|
|
|
|
ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
|
|
|
|
|
buffer after following a reference. INTERACTIVE-P is non-nil if the
|
|
|
|
|
calling command was invoked interactively. In this case the stack of
|
2001-10-11 23:33:52 +00:00
|
|
|
|
items for help buffer \"back\" buttons is cleared.
|
|
|
|
|
|
|
|
|
|
This should be called very early, before the output buffer is cleared,
|
|
|
|
|
because we want to record the \"previous\" position of point so we can
|
|
|
|
|
restore it properly when going back."
|
|
|
|
|
(with-current-buffer (help-buffer)
|
2023-07-13 19:38:36 +03:00
|
|
|
|
;; Disable `outline-minor-mode' in a reused Help buffer
|
|
|
|
|
;; created by `describe-bindings' that enables this mode.
|
|
|
|
|
(when (bound-and-true-p outline-minor-mode)
|
|
|
|
|
(outline-minor-mode -1))
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(when help-xref-stack-item
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(push (cons (point) help-xref-stack-item) help-xref-stack)
|
|
|
|
|
(setq help-xref-forward-stack nil))
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(when interactive-p
|
|
|
|
|
(let ((tail (nthcdr 10 help-xref-stack)))
|
|
|
|
|
;; Truncate the stack.
|
|
|
|
|
(if tail (setcdr tail nil))))
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(setq help-xref-stack-item item)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(defvar help-xref-following nil
|
|
|
|
|
"Non-nil when following a help cross-reference.")
|
|
|
|
|
|
2007-11-10 09:54:07 +00:00
|
|
|
|
;;;###autoload
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(defun help-buffer ()
|
2009-03-30 01:15:08 +00:00
|
|
|
|
"Return the name of a buffer for inserting help.
|
2022-06-06 16:11:50 +02:00
|
|
|
|
If `help-xref-following' is non-nil and the current buffer is
|
|
|
|
|
derived from `help-mode', this is the name of the current buffer.
|
|
|
|
|
|
2011-03-05 16:10:03 -05:00
|
|
|
|
Otherwise, return \"*Help*\", creating a buffer with that name if
|
|
|
|
|
it does not already exist."
|
2022-06-06 16:11:50 +02:00
|
|
|
|
(buffer-name ;for with-output-to-temp-buffer
|
|
|
|
|
(if (and help-xref-following
|
|
|
|
|
(derived-mode-p 'help-mode))
|
|
|
|
|
(current-buffer)
|
|
|
|
|
(get-buffer-create "*Help*"))))
|
2001-10-11 23:33:52 +00:00
|
|
|
|
|
2015-07-07 02:14:16 -04:00
|
|
|
|
(defvar describe-symbol-backends
|
|
|
|
|
`((nil ,#'fboundp ,(lambda (s _b _f) (describe-function s)))
|
|
|
|
|
(nil
|
|
|
|
|
,(lambda (symbol)
|
|
|
|
|
(or (and (boundp symbol) (not (keywordp symbol)))
|
|
|
|
|
(get symbol 'variable-documentation)))
|
2017-08-05 11:51:05 +03:00
|
|
|
|
,#'describe-variable)
|
2018-01-22 22:00:55 -05:00
|
|
|
|
("face" ,#'facep ,(lambda (s _b _f) (describe-face s))))
|
|
|
|
|
"List of providers of information about symbols.
|
|
|
|
|
Each element has the form (NAME TESTFUN DESCFUN) where:
|
|
|
|
|
NAME is a string naming a category of object, such as \"type\" or \"face\".
|
|
|
|
|
TESTFUN is a predicate which takes a symbol and returns non-nil if the
|
|
|
|
|
symbol is such an object.
|
|
|
|
|
DESCFUN is a function which takes three arguments (a symbol, a buffer,
|
|
|
|
|
and a frame), inserts the description of that symbol in the current buffer
|
|
|
|
|
and returns that text as well.")
|
2015-07-07 02:14:16 -04:00
|
|
|
|
|
2022-06-20 02:27:00 +02:00
|
|
|
|
(defcustom help-clean-buttons nil
|
|
|
|
|
"If non-nil, remove quotes around link buttons."
|
|
|
|
|
:version "29.1"
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'help)
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-make-xrefs (&optional buffer)
|
|
|
|
|
"Parse and hyperlink documentation cross-references in the given BUFFER.
|
|
|
|
|
|
2002-06-12 04:54:54 +00:00
|
|
|
|
Find cross-reference information in a buffer and activate such cross
|
2021-07-31 13:26:26 +02:00
|
|
|
|
references for selection with `help-follow-symbol'. Cross-references have
|
2002-06-12 04:54:54 +00:00
|
|
|
|
the canonical form `...' and the type of reference may be
|
|
|
|
|
disambiguated by the preceding word(s) used in
|
2003-10-19 03:58:43 +00:00
|
|
|
|
`help-xref-symbol-regexp'. Faces only get cross-referenced if
|
|
|
|
|
preceded or followed by the word `face'. Variables without
|
|
|
|
|
variable documentation do not get cross-referenced, unless
|
2003-10-19 04:10:34 +00:00
|
|
|
|
preceded by the word `variable' or `option'.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
If the variable `help-xref-mule-regexp' is non-nil, find also
|
|
|
|
|
cross-reference information related to multilingual environment
|
|
|
|
|
\(e.g., coding-systems). This variable is also used to disambiguate
|
|
|
|
|
the type of reference as the same way as `help-xref-symbol-regexp'.
|
|
|
|
|
|
|
|
|
|
A special reference `back' is made to return back through a stack of
|
|
|
|
|
help buffers. Variable `help-back-label' specifies the text for
|
|
|
|
|
that."
|
|
|
|
|
(interactive "b")
|
2009-11-15 05:16:51 +00:00
|
|
|
|
(with-current-buffer (or buffer (current-buffer))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2021-02-22 22:34:03 +01:00
|
|
|
|
;; Skip the first bit, which has already been buttonized.
|
2009-11-15 05:16:51 +00:00
|
|
|
|
(forward-paragraph)
|
|
|
|
|
(let ((old-modified (buffer-modified-p)))
|
|
|
|
|
(let ((stab (syntax-table))
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
(inhibit-read-only t))
|
2021-08-17 14:20:57 +02:00
|
|
|
|
(set-syntax-table help-mode-syntax-table)
|
2009-11-15 05:16:51 +00:00
|
|
|
|
;; The following should probably be abstracted out.
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
;; Info references
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-info-regexp nil t)
|
|
|
|
|
(let ((data (match-string 2)))
|
|
|
|
|
(save-match-data
|
|
|
|
|
(unless (string-match "^([^)]+)" data)
|
2010-05-21 02:54:55 +03:00
|
|
|
|
(setq data (concat "(emacs)" data)))
|
|
|
|
|
(setq data ;; possible newlines if para filled
|
|
|
|
|
(replace-regexp-in-string "[ \t\n]+" " " data t t)))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
(help-xref-button 2 'help-info data))))
|
2021-09-25 03:03:34 +02:00
|
|
|
|
;; Man references
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-man-regexp nil t)
|
|
|
|
|
(help-xref-button 1 'help-man (match-string 1))))
|
2021-09-04 10:19:03 +02:00
|
|
|
|
;; Customization groups.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
help-xref-customization-group-regexp nil t)
|
|
|
|
|
(help-xref-button 1 'help-customization-group
|
|
|
|
|
(intern (match-string 1)))))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
;; URLs
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-url-regexp nil t)
|
|
|
|
|
(let ((data (match-string 1)))
|
|
|
|
|
(help-xref-button 1 'help-url data))))
|
|
|
|
|
;; Mule related keywords. Do this before trying
|
|
|
|
|
;; `help-xref-symbol-regexp' because some of Mule
|
|
|
|
|
;; keywords have variable or function definitions.
|
|
|
|
|
(if help-xref-mule-regexp
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-mule-regexp nil t)
|
|
|
|
|
(let* ((data (match-string 7))
|
|
|
|
|
(sym (intern-soft data)))
|
|
|
|
|
(cond
|
|
|
|
|
((match-string 3) ; coding system
|
|
|
|
|
(and sym (coding-system-p sym)
|
|
|
|
|
(help-xref-button 6 'help-coding-system sym)))
|
|
|
|
|
((match-string 4) ; input method
|
|
|
|
|
(and (assoc data input-method-alist)
|
|
|
|
|
(help-xref-button 7 'help-input-method data)))
|
|
|
|
|
((or (match-string 5) (match-string 6)) ; charset
|
|
|
|
|
(and sym (charsetp sym)
|
|
|
|
|
(help-xref-button 7 'help-character-set sym)))
|
|
|
|
|
((assoc data input-method-alist)
|
2018-05-18 10:58:11 +03:00
|
|
|
|
(help-xref-button 7 'help-input-method data))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
((and sym (coding-system-p sym))
|
|
|
|
|
(help-xref-button 7 'help-coding-system sym))
|
|
|
|
|
((and sym (charsetp sym))
|
|
|
|
|
(help-xref-button 7 'help-character-set sym)))))))
|
|
|
|
|
;; Quoted symbols
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-symbol-regexp nil t)
|
2022-05-07 12:46:55 +02:00
|
|
|
|
(when-let ((sym (intern-soft (match-string 9))))
|
|
|
|
|
(if (match-string 8)
|
|
|
|
|
(delete-region (match-beginning 8)
|
|
|
|
|
(match-end 8))
|
|
|
|
|
(cond
|
|
|
|
|
((match-string 3) ; `variable' &c
|
|
|
|
|
(and (or (boundp sym) ; `variable' doesn't ensure
|
2001-10-09 11:16:25 +00:00
|
|
|
|
; it's actually bound
|
2022-05-07 12:46:55 +02:00
|
|
|
|
(get sym 'variable-documentation))
|
|
|
|
|
(help-xref-button 9 'help-variable sym)))
|
|
|
|
|
((match-string 4) ; `function' &c
|
|
|
|
|
(and (fboundp sym) ; similarly
|
|
|
|
|
(help-xref-button 9 'help-function sym)))
|
|
|
|
|
((match-string 5) ; `face'
|
|
|
|
|
(and (facep sym)
|
|
|
|
|
(help-xref-button 9 'help-face sym)))
|
|
|
|
|
((match-string 6)) ; nothing for `symbol'
|
|
|
|
|
((match-string 7)
|
|
|
|
|
(help-xref-button 9 'help-function-def sym))
|
|
|
|
|
((cl-some (lambda (x) (funcall (nth 1 x) sym))
|
|
|
|
|
describe-symbol-backends)
|
|
|
|
|
(help-xref-button 9 'help-symbol sym)))))))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
;; An obvious case of a key substitution:
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
;; Assume command name is only word and symbol
|
|
|
|
|
;; characters to get things like `use M-x foo->bar'.
|
|
|
|
|
;; Command required to end with word constituent
|
|
|
|
|
;; to avoid `.' at end of a sentence.
|
|
|
|
|
"\\<M-x\\s-+\\(\\sw\\(\\sw\\|\\s_\\)*\\sw\\)" nil t)
|
|
|
|
|
(let ((sym (intern-soft (match-string 1))))
|
|
|
|
|
(if (fboundp sym)
|
2021-11-01 15:42:30 +01:00
|
|
|
|
(help-xref-button 1 'help-function sym))))))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
(set-syntax-table stab))
|
|
|
|
|
;; Delete extraneous newlines at the end of the docstring
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(while (and (not (bobp)) (bolp))
|
|
|
|
|
(delete-char -1))
|
|
|
|
|
(insert "\n")
|
2022-07-16 14:57:58 +02:00
|
|
|
|
(help-xref--navigation-buttons))
|
2009-11-15 05:16:51 +00:00
|
|
|
|
(set-buffer-modified-p old-modified)))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2022-07-16 14:57:58 +02:00
|
|
|
|
(defun help-xref--navigation-buttons ()
|
|
|
|
|
(let ((inhibit-read-only t))
|
2022-07-22 22:43:38 +02:00
|
|
|
|
(when (or help-xref-stack help-xref-forward-stack)
|
|
|
|
|
(ensure-empty-lines 1))
|
2022-07-16 14:57:58 +02:00
|
|
|
|
;; Make a back-reference in this buffer if appropriate.
|
|
|
|
|
(when help-xref-stack
|
|
|
|
|
(help-insert-xref-button help-back-label 'help-back
|
|
|
|
|
(current-buffer)))
|
|
|
|
|
;; Make a forward-reference in this buffer if appropriate.
|
|
|
|
|
(when help-xref-forward-stack
|
|
|
|
|
(when help-xref-stack
|
|
|
|
|
(insert "\t"))
|
|
|
|
|
(help-insert-xref-button help-forward-label 'help-forward
|
|
|
|
|
(current-buffer)))
|
|
|
|
|
(unless (bolp)
|
|
|
|
|
(insert "\n"))))
|
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-xref-button (match-number type &rest args)
|
|
|
|
|
"Make a hyperlink for cross-reference text previously matched.
|
|
|
|
|
MATCH-NUMBER is the subexpression of interest in the last matched
|
|
|
|
|
regexp. TYPE is the type of button to use. Any remaining arguments are
|
|
|
|
|
passed to the button's help-function when it is invoked.
|
2022-06-20 02:27:00 +02:00
|
|
|
|
See `help-make-xrefs'.
|
|
|
|
|
|
2022-06-20 15:49:11 +03:00
|
|
|
|
This function removes quotes surrounding the match if the
|
|
|
|
|
variable `help-clean-buttons' is non-nil."
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Don't mung properties we've added specially in some instances.
|
2022-06-20 02:27:00 +02:00
|
|
|
|
(let ((beg (match-beginning match-number))
|
|
|
|
|
(end (match-end match-number)))
|
|
|
|
|
(unless (button-at beg)
|
|
|
|
|
(make-text-button beg end 'type type 'help-args args)
|
|
|
|
|
(when (and help-clean-buttons
|
|
|
|
|
(> beg (point-min))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (1- beg))
|
|
|
|
|
(looking-at "['`‘]"))
|
|
|
|
|
(< end (point-max))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(looking-at "['’]")))
|
|
|
|
|
(delete-region end (1+ end))
|
|
|
|
|
(delete-region (1- beg) beg)))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-insert-xref-button (string type &rest args)
|
|
|
|
|
"Insert STRING and make a hyperlink from cross-reference text on it.
|
|
|
|
|
TYPE is the type of button to use. Any remaining arguments are passed
|
|
|
|
|
to the button's help-function when it is invoked.
|
|
|
|
|
See `help-make-xrefs'."
|
|
|
|
|
(unless (button-at (point))
|
|
|
|
|
(insert-text-button string 'type type 'help-args args)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-xref-on-pp (from to)
|
|
|
|
|
"Add xrefs for symbols in `pp's output between FROM and TO."
|
2003-02-10 21:52:30 +00:00
|
|
|
|
(if (> (- to from) 5000) nil
|
2021-08-17 14:20:57 +02:00
|
|
|
|
(with-syntax-table help-mode-syntax-table
|
2003-02-10 21:52:30 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region from to)
|
|
|
|
|
(goto-char (point-min))
|
lisp/*.el: Remove lexical-binding warnings; additional small cleanups.
* calculator.el (calculator): Mark unused argument.
(calculator-paste, calculator-quit, calculator-integer-p):
Use ignore-errors.
(calculator-string-to-number, calculator-decimal, calculator-exp)
(calculator-op-or-exp): Use string-match-p.
* dired-aux.el (dired-compress): Use ignore-errors.
(dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
(dired-do-async-shell-command, dired-do-shell-command)
(dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
(dired-insert-subdir-validate): Use string-match-p.
(dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
(dired-add-entry): Use string-match-p, looking-at-p.
(dired-insert-subdir-newpos): Remove unused local variable.
* dired.el (dired-buffer-more-recently-used-p): Declare.
(dired-insert-set-properties, dired-insert-old-subdirs):
Use ignore-errors.
* filenotify.el (file-notify-callback): Remove unused local variable.
* filesets.el (filesets-error): Mark unused argument.
(filesets-which-command-p, filesets-filter-dir-names)
(filesets-directory-files, filesets-get-external-viewer)
(filesets-ingroup-get-data): Use string-match-p.
* find-file.el (ff-other-file-name, ff-other-file-name)
(ff-find-the-other-file, ff-cc-hh-converter):
Remove unused local variables.
(ff-get-file-name): Use string-match-p.
(ff-all-dirs-under): Use ignore-errors.
* follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
(follow-select-if-visible): Remove unused local variable.
* forms.el (read-file-filter): Move declaration.
(forms--make-format, forms--make-parser, forms-insert-record):
Quote function with #'.
(forms--update): Use string-match-p. Quote function with #'.
* help-mode.el (help-dir-local-var-def): Mark unused argument.
(help-make-xrefs): Use looking-at-p.
(help-xref-on-pp): Use looking-at-p, ignore-errors.
* ibuffer.el (ibuffer-ext-visible-p): Declare.
(ibuffer-confirm-operation-on): Use string-match-p.
* msb.el (msb-item-handler, msb-dired-item-handler):
Mark unused arguments.
* ses.el (ses-decode-cell-symbol)
(ses-kill-override): Remove unused local variable.
(ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
(ses-load): Use ignore-errors, looking-at-p.
(ses-jump-safe): Use ignore-errors.
(ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
* tabify.el (untabify, tabify): Mark unused arguments.
* thingatpt.el (thing-at-point--bounds-of-well-formed-url):
Mark unused argument.
(bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
(thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2013-08-10 17:17:29 +02:00
|
|
|
|
(ignore-errors
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(cond
|
|
|
|
|
((looking-at-p "\"") (forward-sexp 1))
|
|
|
|
|
((looking-at-p "#<") (search-forward ">" nil 'move))
|
|
|
|
|
((looking-at "\\(\\(\\sw\\|\\s_\\)+\\)")
|
|
|
|
|
(let* ((sym (intern-soft (match-string 1)))
|
|
|
|
|
(type (cond ((fboundp sym) 'help-function)
|
|
|
|
|
((or (memq sym '(t nil))
|
|
|
|
|
(keywordp sym))
|
|
|
|
|
nil)
|
|
|
|
|
((and sym
|
|
|
|
|
(or (boundp sym)
|
|
|
|
|
(get sym
|
|
|
|
|
'variable-documentation)))
|
|
|
|
|
'help-variable))))
|
|
|
|
|
(when type (help-xref-button 1 type sym)))
|
|
|
|
|
(goto-char (match-end 1)))
|
|
|
|
|
(t (forward-char 1))))))))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Additional functions for (re-)creating types of help buffers.
|
2015-02-05 15:28:04 -02:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2022-07-21 20:01:36 -04:00
|
|
|
|
(define-obsolete-function-alias 'help-xref-interned #'describe-symbol "25.1")
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
|
2002-07-16 16:02:35 +00:00
|
|
|
|
;; Navigation/hyperlinking with xrefs
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(defun help-xref-go-back (buffer)
|
|
|
|
|
"From BUFFER, go back to previous help buffer text using `help-xref-stack'."
|
|
|
|
|
(let (item position method args)
|
|
|
|
|
(with-current-buffer buffer
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(push (cons (point) help-xref-stack-item) help-xref-forward-stack)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(when help-xref-stack
|
|
|
|
|
(setq item (pop help-xref-stack)
|
2001-10-11 23:33:52 +00:00
|
|
|
|
;; Clear the current item so that it won't get pushed
|
|
|
|
|
;; by the function we're about to call. TODO: We could also
|
|
|
|
|
;; push it onto a "forward" stack and add a `forw' button.
|
|
|
|
|
help-xref-stack-item nil
|
2001-10-09 11:16:25 +00:00
|
|
|
|
position (car item)
|
|
|
|
|
method (cadr item)
|
|
|
|
|
args (cddr item))))
|
|
|
|
|
(apply method args)
|
2002-01-12 21:00:17 +00:00
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(if (get-buffer-window buffer)
|
|
|
|
|
(set-window-point (get-buffer-window buffer) position)
|
|
|
|
|
(goto-char position)))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(defun help-xref-go-forward (buffer)
|
|
|
|
|
"From BUFFER, go forward to next help buffer."
|
|
|
|
|
(let (item position method args)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(push (cons (point) help-xref-stack-item) help-xref-stack)
|
|
|
|
|
(when help-xref-forward-stack
|
|
|
|
|
(setq item (pop help-xref-forward-stack)
|
|
|
|
|
;; Clear the current item so that it won't get pushed
|
|
|
|
|
;; by the function we're about to call. TODO: We could also
|
|
|
|
|
;; push it onto a "forward" stack and add a `forw' button.
|
|
|
|
|
help-xref-stack-item nil
|
|
|
|
|
position (car item)
|
|
|
|
|
method (cadr item)
|
|
|
|
|
args (cddr item))))
|
|
|
|
|
(apply method args)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(if (get-buffer-window buffer)
|
|
|
|
|
(set-window-point (get-buffer-window buffer) position)
|
|
|
|
|
(goto-char position)))))
|
2007-11-10 09:54:07 +00:00
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(defun help-go-back ()
|
2004-05-19 00:56:46 +00:00
|
|
|
|
"Go back to previous topic in this help buffer."
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(interactive)
|
2004-05-19 00:56:46 +00:00
|
|
|
|
(if help-xref-stack
|
|
|
|
|
(help-xref-go-back (current-buffer))
|
2015-02-18 07:35:49 +00:00
|
|
|
|
(user-error "No previous help buffer")))
|
2007-11-10 09:54:07 +00:00
|
|
|
|
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(defun help-go-forward ()
|
2015-05-16 17:34:13 +03:00
|
|
|
|
"Go to the next topic in this help buffer."
|
2007-06-08 10:09:24 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(if help-xref-forward-stack
|
|
|
|
|
(help-xref-go-forward (current-buffer))
|
2015-02-18 07:35:49 +00:00
|
|
|
|
(user-error "No next help buffer")))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2021-10-31 18:59:49 +01:00
|
|
|
|
(defun help-goto-next-page ()
|
|
|
|
|
"Go to the next page (if any) in the current buffer.
|
|
|
|
|
The help buffers are divided into \"pages\" by the ^L character."
|
2021-10-31 19:02:46 +01:00
|
|
|
|
(interactive nil help-mode)
|
2021-10-31 18:59:49 +01:00
|
|
|
|
(push-mark)
|
|
|
|
|
(forward-page)
|
|
|
|
|
(unless (eobp)
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
|
|
|
|
|
(defun help-goto-previous-page ()
|
|
|
|
|
"Go to the previous page (if any) in the current buffer.
|
2022-07-21 20:01:36 -04:00
|
|
|
|
\(If not at the start of a page, go to the start of the current page.)
|
2021-10-31 18:59:49 +01:00
|
|
|
|
|
|
|
|
|
The help buffers are divided into \"pages\" by the ^L character."
|
2021-10-31 19:02:46 +01:00
|
|
|
|
(interactive nil help-mode)
|
2021-10-31 18:59:49 +01:00
|
|
|
|
(push-mark)
|
|
|
|
|
(backward-page (if (looking-back "\f\n" (- (point) 5)) 2 1))
|
|
|
|
|
(unless (bobp)
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
|
2021-06-15 20:51:00 +02:00
|
|
|
|
(defun help-view-source ()
|
|
|
|
|
"View the source of the current help item."
|
|
|
|
|
(interactive nil help-mode)
|
2021-06-15 20:58:01 +02:00
|
|
|
|
(unless (plist-get help-mode--current-data :file)
|
2021-06-15 20:51:00 +02:00
|
|
|
|
(error "Source file for the current help item is not defined"))
|
2021-07-19 18:35:09 +02:00
|
|
|
|
(help-function-def--button-function
|
|
|
|
|
(plist-get help-mode--current-data :symbol)
|
|
|
|
|
(plist-get help-mode--current-data :file)
|
|
|
|
|
(plist-get help-mode--current-data :type)))
|
2021-06-15 20:51:00 +02:00
|
|
|
|
|
|
|
|
|
(defun help-goto-info ()
|
|
|
|
|
"View the *info* node of the current help item."
|
|
|
|
|
(interactive nil help-mode)
|
|
|
|
|
(unless help-mode--current-data
|
|
|
|
|
(error "No symbol to look up in the current buffer"))
|
|
|
|
|
(info-lookup-symbol (plist-get help-mode--current-data :symbol)
|
2022-05-02 11:30:43 +02:00
|
|
|
|
'emacs-lisp-mode
|
|
|
|
|
help-window-keep-selected))
|
2021-06-15 20:51:00 +02:00
|
|
|
|
|
2022-01-24 12:59:55 +01:00
|
|
|
|
(defun help-goto-lispref-info ()
|
|
|
|
|
"View the Emacs Lisp manual *info* node of the current help item."
|
|
|
|
|
(interactive nil help-mode)
|
|
|
|
|
(unless help-mode--current-data
|
|
|
|
|
(error "No symbol to look up in the current buffer"))
|
|
|
|
|
(info-lookup-symbol (plist-get help-mode--current-data :symbol)
|
|
|
|
|
'emacs-lisp-only))
|
|
|
|
|
|
2021-06-20 02:14:29 +03:00
|
|
|
|
(defun help-customize ()
|
2021-06-20 10:01:25 +03:00
|
|
|
|
"Customize variable or face whose doc string is shown in the current buffer."
|
2021-06-20 02:14:29 +03:00
|
|
|
|
(interactive nil help-mode)
|
|
|
|
|
(let ((sym (plist-get help-mode--current-data :symbol)))
|
|
|
|
|
(unless (or (boundp sym) (facep sym))
|
|
|
|
|
(user-error "No variable or face to customize"))
|
|
|
|
|
(cond
|
|
|
|
|
((boundp sym) (customize-variable sym))
|
|
|
|
|
((facep sym) (customize-face sym)))))
|
|
|
|
|
|
2011-04-19 15:44:55 +02:00
|
|
|
|
(defun help-do-xref (_pos function args)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Call the help cross-reference function FUNCTION with args ARGS.
|
2021-09-14 08:43:18 +02:00
|
|
|
|
Things are set up properly so that the resulting help buffer has
|
2001-10-09 11:16:25 +00:00
|
|
|
|
a proper [back] button."
|
|
|
|
|
;; There is a reference at point. Follow it.
|
|
|
|
|
(let ((help-xref-following t))
|
2015-02-16 04:17:09 +00:00
|
|
|
|
(apply function (if (eq function 'info)
|
2020-05-09 19:58:46 +02:00
|
|
|
|
(append args (list (generate-new-buffer-name "*info*")))
|
|
|
|
|
args))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2006-03-20 00:42:21 +00:00
|
|
|
|
;; The doc string is meant to explain what buttons do.
|
|
|
|
|
(defun help-follow-mouse ()
|
|
|
|
|
"Follow the cross-reference that you click on."
|
2021-07-31 13:26:26 +02:00
|
|
|
|
(declare (obsolete nil "28.1"))
|
2006-03-20 00:42:21 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(error "No cross-reference here"))
|
|
|
|
|
|
|
|
|
|
;; The doc string is meant to explain what buttons do.
|
|
|
|
|
(defun help-follow ()
|
|
|
|
|
"Follow cross-reference at point.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
For the cross-reference format, see `help-make-xrefs'."
|
2021-07-31 13:26:26 +02:00
|
|
|
|
(declare (obsolete nil "28.1"))
|
2006-03-20 00:42:21 +00:00
|
|
|
|
(interactive)
|
2015-02-18 07:35:49 +00:00
|
|
|
|
(user-error "No cross-reference here"))
|
2006-03-20 00:42:21 +00:00
|
|
|
|
|
|
|
|
|
(defun help-follow-symbol (&optional pos)
|
|
|
|
|
"In help buffer, show docs for symbol at POS, defaulting to point.
|
|
|
|
|
Show all docs for that symbol as either a variable, function or face."
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(interactive "d")
|
|
|
|
|
(unless pos
|
|
|
|
|
(setq pos (point)))
|
2006-03-20 00:42:21 +00:00
|
|
|
|
;; check if the symbol under point is a function, variable or face
|
|
|
|
|
(let ((sym
|
|
|
|
|
(intern
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos) (skip-syntax-backward "w_")
|
|
|
|
|
(buffer-substring (point)
|
|
|
|
|
(progn (skip-syntax-forward "w_")
|
|
|
|
|
(point)))))))
|
2019-11-22 21:10:49 +01:00
|
|
|
|
(if (or (boundp sym)
|
|
|
|
|
(get sym 'variable-documentation)
|
|
|
|
|
(fboundp sym) (facep sym))
|
|
|
|
|
(help-do-xref pos #'describe-symbol (list sym))
|
|
|
|
|
(user-error "No symbol here"))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2020-10-27 08:23:31 +01:00
|
|
|
|
(defun help-mode-revert-buffer (_ignore-auto _noconfirm)
|
|
|
|
|
(let ((pos (point))
|
|
|
|
|
(item help-xref-stack-item)
|
|
|
|
|
;; Pretend there is no current item to add to the history.
|
|
|
|
|
(help-xref-stack-item nil)
|
|
|
|
|
;; Use the current buffer.
|
|
|
|
|
(help-xref-following t))
|
|
|
|
|
(apply (car item) (cdr item))
|
|
|
|
|
(goto-char pos)))
|
2010-06-17 23:56:17 +03:00
|
|
|
|
|
2005-12-27 21:11:50 +00:00
|
|
|
|
(defun help-insert-string (string)
|
|
|
|
|
"Insert STRING to the help buffer and install xref info for it.
|
|
|
|
|
This function can be used to restore the old contents of the help buffer
|
|
|
|
|
when going back to the previous topic in the xref stack. It is needed
|
|
|
|
|
in case when it is impossible to recompute the old contents of the
|
|
|
|
|
help buffer by other means."
|
|
|
|
|
(setq help-xref-stack-item (list #'help-insert-string string))
|
|
|
|
|
(with-output-to-temp-buffer (help-buffer)
|
|
|
|
|
(insert string)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
2012-06-11 21:03:10 -04:00
|
|
|
|
|
|
|
|
|
;; Bookmark support
|
|
|
|
|
|
|
|
|
|
(declare-function bookmark-prop-get "bookmark" (bookmark prop))
|
2012-06-13 13:13:17 +02:00
|
|
|
|
(declare-function bookmark-make-record-default "bookmark"
|
|
|
|
|
(&optional no-file no-context posn))
|
2012-06-11 21:03:10 -04:00
|
|
|
|
|
|
|
|
|
(defun help-bookmark-make-record ()
|
2021-02-20 05:55:33 +01:00
|
|
|
|
"Create and return a `help-mode' bookmark record.
|
|
|
|
|
Implements `bookmark-make-record-function' for `help-mode' buffers."
|
2012-06-11 21:03:10 -04:00
|
|
|
|
(unless (car help-xref-stack-item)
|
|
|
|
|
(error "Cannot create bookmark - help command not known"))
|
|
|
|
|
`(,@(bookmark-make-record-default 'NO-FILE 'NO-CONTEXT)
|
|
|
|
|
(help-fn . ,(car help-xref-stack-item))
|
2017-10-28 15:48:17 -04:00
|
|
|
|
(help-args . ,(mapcar (lambda (a)
|
|
|
|
|
(if (bufferp a) (buffer-name a) a))
|
|
|
|
|
(cdr help-xref-stack-item)))
|
2012-06-11 21:03:10 -04:00
|
|
|
|
(position . ,(point))
|
|
|
|
|
(handler . help-bookmark-jump)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-bookmark-jump (bookmark)
|
2021-02-20 05:55:33 +01:00
|
|
|
|
"Jump to `help-mode' bookmark BOOKMARK.
|
2012-06-11 21:03:10 -04:00
|
|
|
|
Handler function for record returned by `help-bookmark-make-record'.
|
|
|
|
|
BOOKMARK is a bookmark name or a bookmark record."
|
2012-06-13 08:36:29 -04:00
|
|
|
|
(let ((help-fn (bookmark-prop-get bookmark 'help-fn))
|
|
|
|
|
(help-args (bookmark-prop-get bookmark 'help-args))
|
|
|
|
|
(position (bookmark-prop-get bookmark 'position)))
|
|
|
|
|
(apply help-fn help-args)
|
2012-06-11 21:03:10 -04:00
|
|
|
|
(pop-to-buffer "*Help*")
|
|
|
|
|
(goto-char position)))
|
|
|
|
|
|
2022-02-15 23:39:02 +01:00
|
|
|
|
(put 'help-bookmark-jump 'bookmark-handler-type "Help")
|
2012-06-11 21:03:10 -04:00
|
|
|
|
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(provide 'help-mode)
|
|
|
|
|
|
|
|
|
|
;;; help-mode.el ends here
|