2001-10-09 11:16:25 +00:00
|
|
|
|
;;; help-mode.el --- `help-mode' used by *Help* buffers
|
|
|
|
|
|
2004-04-07 19:35:05 +00:00
|
|
|
|
;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2004
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
;; Maintainer: FSF
|
|
|
|
|
;; Keywords: help, internal
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; 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
|
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Defines `help-mode', which is the mode used by *Help* buffers, and
|
|
|
|
|
;; associated support machinery, such as adding hyperlinks, etc.,
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'button)
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(require 'view)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(defvar help-mode-map (make-sparse-keymap)
|
|
|
|
|
"Keymap for help mode.")
|
|
|
|
|
|
|
|
|
|
(set-keymap-parent help-mode-map button-buffer-map)
|
|
|
|
|
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(define-key help-mode-map [mouse-2] 'help-follow-mouse)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(define-key help-mode-map "\C-c\C-b" 'help-go-back)
|
|
|
|
|
(define-key help-mode-map "\C-c\C-c" 'help-follow)
|
|
|
|
|
;; Documentation only, since we use minor-mode-overriding-map-alist.
|
|
|
|
|
(define-key help-mode-map "\r" 'help-follow)
|
|
|
|
|
|
|
|
|
|
(defvar help-xref-stack nil
|
|
|
|
|
"A stack of ways by which to return to help buffers after following xrefs.
|
|
|
|
|
Used by `help-follow' 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)
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(make-variable-buffer-local 'help-xref-stack)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(defvar help-xref-stack-item nil
|
|
|
|
|
"An item for `help-follow' in this buffer to push onto `help-xref-stack'.
|
|
|
|
|
The format is (FUNCTION ARGS...).")
|
|
|
|
|
(put 'help-xref-stack-item 'permanent-local t)
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(make-variable-buffer-local 'help-xref-stack-item)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(setq-default help-xref-stack nil help-xref-stack-item nil)
|
|
|
|
|
|
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
|
|
|
|
|
'action #'help-button-action)
|
|
|
|
|
|
|
|
|
|
(defun help-button-action (button)
|
|
|
|
|
"Call BUTTON's help function."
|
|
|
|
|
(help-do-xref (button-start button)
|
|
|
|
|
(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
|
|
|
|
|
|
|
|
|
;; make some more ideosyncratic button types
|
|
|
|
|
|
|
|
|
|
(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
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function #'help-xref-interned
|
(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
|
|
|
|
|
|
|
|
|
(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
|
(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: read this Info node"))
|
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)
|
|
|
|
|
(if help-xref-stack
|
|
|
|
|
(pop help-xref-stack))
|
|
|
|
|
(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)
|
|
|
|
|
(if help-xref-stack
|
|
|
|
|
(pop help-xref-stack))
|
|
|
|
|
(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
|
|
|
|
|
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
|
2001-10-09 11:16:25 +00:00
|
|
|
|
'help-function (lambda (fun file)
|
|
|
|
|
(require 'find-func)
|
2004-04-29 18:43:32 +00:00
|
|
|
|
(when (eq file 'C-source)
|
|
|
|
|
(setq file
|
|
|
|
|
(help-C-file-name (indirect-function fun) 'fun)))
|
2002-07-16 16:02:35 +00:00
|
|
|
|
;; Don't use find-function-noselect because it follows
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; aliases (which fails for built-in functions).
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(let ((location
|
2004-04-29 18:43:32 +00:00
|
|
|
|
(find-function-search-for-symbol fun nil file)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(pop-to-buffer (car location))
|
|
|
|
|
(goto-char (cdr location))))
|
(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
|
|
|
|
|
|
|
|
|
(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)))
|
|
|
|
|
(let ((location (find-variable-noselect var file)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(pop-to-buffer (car location))
|
|
|
|
|
(goto-char (cdr location))))
|
(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 variable's definition"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2001-11-20 23:36:37 +00:00
|
|
|
|
(defun help-mode ()
|
2001-10-09 11:16:25 +00:00
|
|
|
|
"Major mode for viewing help text and navigating references in it.
|
|
|
|
|
Entry to this mode runs the normal hook `help-mode-hook'.
|
|
|
|
|
Commands:
|
|
|
|
|
\\{help-mode-map}"
|
2001-11-20 23:36:37 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(kill-all-local-variables)
|
|
|
|
|
(use-local-map help-mode-map)
|
|
|
|
|
(setq mode-name "Help")
|
|
|
|
|
(setq major-mode 'help-mode)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(view-mode)
|
|
|
|
|
(make-local-variable 'view-no-disable-on-exit)
|
2001-11-20 23:36:37 +00:00
|
|
|
|
(setq view-no-disable-on-exit t)
|
|
|
|
|
(run-hooks 'help-mode-hook))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-mode-setup ()
|
|
|
|
|
(help-mode)
|
|
|
|
|
(setq buffer-read-only nil))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun help-mode-finish ()
|
2004-04-20 20:53:01 +00:00
|
|
|
|
(let ((entry (assq (selected-window) view-return-to-alist)))
|
|
|
|
|
(if entry (setcdr entry (cons (selected-window)
|
|
|
|
|
help-return-method))
|
|
|
|
|
(setq view-return-to-alist
|
|
|
|
|
(cons (cons (selected-window) help-return-method)
|
|
|
|
|
view-return-to-alist))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(when (eq major-mode 'help-mode)
|
|
|
|
|
;; View mode's read-only status of existing *Help* buffer is lost
|
|
|
|
|
;; by with-output-to-temp-buffer.
|
|
|
|
|
(toggle-read-only 1)
|
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.")
|
|
|
|
|
|
|
|
|
|
(defconst help-xref-symbol-regexp
|
|
|
|
|
(purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|"
|
|
|
|
|
"\\(function\\|command\\)\\|"
|
|
|
|
|
"\\(face\\)\\|"
|
|
|
|
|
"\\(symbol\\)\\|"
|
2003-10-19 03:58:43 +00:00
|
|
|
|
"\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)"
|
|
|
|
|
"[ \t\n]+\\)?"
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Note starting with word-syntax character:
|
|
|
|
|
"`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'"))
|
|
|
|
|
"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
|
2003-12-30 23:34:08 +00:00
|
|
|
|
(purecopy "\\<[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.")
|
|
|
|
|
|
|
|
|
|
;;;###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)
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(when help-xref-stack-item
|
|
|
|
|
(push (cons (point) help-xref-stack-item) help-xref-stack))
|
|
|
|
|
(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.")
|
|
|
|
|
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(defun help-buffer ()
|
|
|
|
|
(buffer-name ;for with-output-to-temp-buffer
|
|
|
|
|
(if help-xref-following
|
|
|
|
|
(current-buffer)
|
|
|
|
|
(get-buffer-create "*Help*"))))
|
|
|
|
|
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(defvar help-xref-override-view-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(set-keymap-parent map view-mode-map)
|
|
|
|
|
(define-key map "\r" nil)
|
|
|
|
|
map)
|
|
|
|
|
"Replacement keymap for `view-mode' in help buffers.")
|
|
|
|
|
|
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
|
|
|
|
|
references for selection with `help-follow'. Cross-references have
|
|
|
|
|
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")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (or buffer (current-buffer)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Skip the header-type info, though it might be useful to parse
|
|
|
|
|
;; it at some stage (e.g. "function in `library'").
|
|
|
|
|
(forward-paragraph)
|
|
|
|
|
(let ((old-modified (buffer-modified-p)))
|
|
|
|
|
(let ((stab (syntax-table))
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
(inhibit-read-only t))
|
|
|
|
|
(set-syntax-table emacs-lisp-mode-syntax-table)
|
|
|
|
|
;; The following should probably be abstracted out.
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
;; Info references
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward help-xref-info-regexp nil t)
|
2003-12-30 23:34:08 +00:00
|
|
|
|
(let ((data (match-string 2)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(unless (string-match "^([^)]+)" data)
|
|
|
|
|
(setq data (concat "(emacs)" data))))
|
2003-12-30 23:34:08 +00:00
|
|
|
|
(help-xref-button 2 'help-info data))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; 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)
|
|
|
|
|
(help-xref-button 7 'help-character-set data))
|
|
|
|
|
((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)
|
|
|
|
|
(let* ((data (match-string 8))
|
|
|
|
|
(sym (intern-soft data)))
|
|
|
|
|
(if sym
|
|
|
|
|
(cond
|
2003-10-19 03:58:43 +00:00
|
|
|
|
((match-string 3) ; `variable' &c
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(and (boundp sym) ; `variable' doesn't ensure
|
|
|
|
|
; it's actually bound
|
|
|
|
|
(help-xref-button 8 'help-variable sym)))
|
2003-10-19 03:58:43 +00:00
|
|
|
|
((match-string 4) ; `function' &c
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(and (fboundp sym) ; similarly
|
|
|
|
|
(help-xref-button 8 'help-function sym)))
|
|
|
|
|
((match-string 5) ; `face'
|
|
|
|
|
(and (facep sym)
|
|
|
|
|
(help-xref-button 8 'help-face sym)))
|
|
|
|
|
((match-string 6)) ; nothing for `symbol'
|
|
|
|
|
((match-string 7)
|
2003-10-19 03:58:43 +00:00
|
|
|
|
;;; this used:
|
|
|
|
|
;;; #'(lambda (arg)
|
|
|
|
|
;;; (let ((location
|
|
|
|
|
;;; (find-function-noselect arg)))
|
|
|
|
|
;;; (pop-to-buffer (car location))
|
|
|
|
|
;;; (goto-char (cdr location))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(help-xref-button 8 'help-function-def sym))
|
2003-10-20 21:33:34 +00:00
|
|
|
|
((facep sym)
|
|
|
|
|
(if (save-match-data (looking-at "[ \t\n]+face\\W"))
|
|
|
|
|
(help-xref-button 8 'help-face sym)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
((and (boundp sym) (fboundp sym))
|
|
|
|
|
;; We can't intuit whether to use the
|
|
|
|
|
;; variable or function doc -- supply both.
|
|
|
|
|
(help-xref-button 8 'help-symbol sym))
|
2003-10-19 03:58:43 +00:00
|
|
|
|
((and
|
|
|
|
|
(boundp sym)
|
2004-04-05 12:09:53 +00:00
|
|
|
|
(or
|
|
|
|
|
(documentation-property
|
|
|
|
|
sym 'variable-documentation)
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(documentation-property
|
|
|
|
|
(indirect-variable sym)
|
|
|
|
|
'variable-documentation)
|
|
|
|
|
(cyclic-variable-indirection nil))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(help-xref-button 8 'help-variable sym))
|
|
|
|
|
((fboundp sym)
|
2003-10-20 21:33:34 +00:00
|
|
|
|
(help-xref-button 8 'help-function sym)))))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; An obvious case of a key substitution:
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
;; Assume command name is only word characters
|
|
|
|
|
;; and dashes to get things like `use M-x foo.'.
|
|
|
|
|
"\\<M-x\\s-+\\(\\sw\\(\\sw\\|-\\)+\\)" nil t)
|
|
|
|
|
(let ((sym (intern-soft (match-string 1))))
|
|
|
|
|
(if (fboundp sym)
|
|
|
|
|
(help-xref-button 1 'help-function sym)))))
|
|
|
|
|
;; Look for commands in whole keymap substitutions:
|
|
|
|
|
(save-excursion
|
|
|
|
|
;; Make sure to find the first keymap.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Find a header and the column at which the command
|
|
|
|
|
;; name will be found.
|
2003-04-24 01:56:55 +00:00
|
|
|
|
|
|
|
|
|
;; If the keymap substitution isn't the last thing in
|
|
|
|
|
;; the doc string, and if there is anything on the
|
|
|
|
|
;; same line after it, this code won't recognize the end of it.
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n"
|
|
|
|
|
nil t)
|
|
|
|
|
(let ((col (- (match-end 1) (match-beginning 1))))
|
|
|
|
|
(while
|
2003-04-24 01:56:55 +00:00
|
|
|
|
(and (not (eobp))
|
|
|
|
|
;; Stop at a pair of blank lines.
|
|
|
|
|
(not (looking-at "\n\\s-*\n")))
|
|
|
|
|
;; Skip a single blank line.
|
|
|
|
|
(and (eolp) (forward-line))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(skip-chars-backward "^\t\n")
|
|
|
|
|
(if (and (>= (current-column) col)
|
|
|
|
|
(looking-at "\\(\\sw\\|-\\)+$"))
|
|
|
|
|
(let ((sym (intern-soft (match-string 0))))
|
|
|
|
|
(if (fboundp sym)
|
|
|
|
|
(help-xref-button 0 'help-function sym))))
|
2003-04-24 08:37:02 +00:00
|
|
|
|
(forward-line))))))
|
|
|
|
|
(set-syntax-table stab))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Delete extraneous newlines at the end of the docstring
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(while (and (not (bobp)) (bolp))
|
|
|
|
|
(delete-char -1))
|
2004-04-11 09:52:09 +00:00
|
|
|
|
(insert "\n")
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; Make a back-reference in this buffer if appropriate.
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(when help-xref-stack
|
2004-04-11 09:52:09 +00:00
|
|
|
|
(insert "\n")
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(help-insert-xref-button help-back-label 'help-back
|
2004-04-11 09:52:09 +00:00
|
|
|
|
(current-buffer))
|
|
|
|
|
(insert "\n")))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;; View mode steals RET from us.
|
|
|
|
|
(set (make-local-variable 'minor-mode-overriding-map-alist)
|
2002-07-16 16:02:35 +00:00
|
|
|
|
(list (cons 'view-mode help-xref-override-view-map)))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(set-buffer-modified-p old-modified))))
|
|
|
|
|
|
|
|
|
|
;;;###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.
|
|
|
|
|
See `help-make-xrefs'."
|
|
|
|
|
;; Don't mung properties we've added specially in some instances.
|
|
|
|
|
(unless (button-at (match-beginning match-number))
|
|
|
|
|
(make-text-button (match-beginning match-number)
|
|
|
|
|
(match-end match-number)
|
|
|
|
|
'type type 'help-args args)))
|
|
|
|
|
|
|
|
|
|
;;;###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
|
|
|
|
|
(with-syntax-table emacs-lisp-mode-syntax-table
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region from to)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(cond
|
|
|
|
|
((looking-at "\"") (forward-sexp 1))
|
|
|
|
|
((looking-at "#<") (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 (boundp sym))
|
|
|
|
|
'help-variable))))
|
|
|
|
|
(when type (help-xref-button 1 type sym)))
|
|
|
|
|
(goto-char (match-end 1)))
|
|
|
|
|
(t (forward-char 1))))
|
|
|
|
|
(error nil)))))))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Additional functions for (re-)creating types of help buffers.
|
|
|
|
|
(defun help-xref-interned (symbol)
|
|
|
|
|
"Follow a hyperlink which appeared to be an arbitrary interned SYMBOL.
|
2001-10-11 23:33:52 +00:00
|
|
|
|
Both variable, function and face documentation are extracted into a single
|
2001-10-09 11:16:25 +00:00
|
|
|
|
help buffer."
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(with-current-buffer (help-buffer)
|
|
|
|
|
;; Push the previous item on the stack before clobbering the output buffer.
|
|
|
|
|
(help-setup-xref nil nil)
|
|
|
|
|
(let ((facedoc (when (facep symbol)
|
|
|
|
|
;; Don't record the current entry in the stack.
|
|
|
|
|
(setq help-xref-stack-item nil)
|
|
|
|
|
(describe-face symbol)))
|
|
|
|
|
(fdoc (when (fboundp symbol)
|
|
|
|
|
;; Don't record the current entry in the stack.
|
|
|
|
|
(setq help-xref-stack-item nil)
|
|
|
|
|
(describe-function symbol)))
|
|
|
|
|
(sdoc (when (boundp symbol)
|
|
|
|
|
;; Don't record the current entry in the stack.
|
|
|
|
|
(setq help-xref-stack-item nil)
|
|
|
|
|
(describe-variable symbol))))
|
|
|
|
|
(cond
|
|
|
|
|
(sdoc
|
|
|
|
|
;; We now have a help buffer on the variable.
|
|
|
|
|
;; Insert the function and face text before it.
|
2002-01-07 05:20:57 +00:00
|
|
|
|
(when (or fdoc facedoc)
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(when fdoc
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(insert fdoc "\n\n")
|
2002-01-07 05:20:57 +00:00
|
|
|
|
(when facedoc
|
|
|
|
|
(insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
|
2001-10-11 23:33:52 +00:00
|
|
|
|
" is also a " "face." "\n\n")))
|
|
|
|
|
(when facedoc
|
|
|
|
|
(insert facedoc "\n\n"))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
|
|
|
|
|
" is also a " "variable." "\n\n"))
|
2001-10-11 23:33:52 +00:00
|
|
|
|
;; Don't record the `describe-variable' item in the stack.
|
|
|
|
|
(setq help-xref-stack-item nil)
|
|
|
|
|
(help-setup-xref (list #'help-xref-interned symbol) nil)))
|
|
|
|
|
(fdoc
|
|
|
|
|
;; We now have a help buffer on the function.
|
|
|
|
|
;; Insert face text before it.
|
|
|
|
|
(when facedoc
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(insert "\n\n" (make-string 30 ?-) "\n\n" (symbol-name symbol)
|
|
|
|
|
" is also a " "face." "\n\n" facedoc))
|
|
|
|
|
;; Don't record the `describe-function' item in the stack.
|
|
|
|
|
(setq help-xref-stack-item nil)
|
|
|
|
|
(help-setup-xref (list #'help-xref-interned symbol) nil)))))))
|
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
|
|
|
|
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(defun help-follow-mouse (click)
|
|
|
|
|
"Follow the cross-reference that you CLICK on."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(let* ((start (event-start click))
|
|
|
|
|
(window (car start))
|
|
|
|
|
(pos (car (cdr start))))
|
|
|
|
|
(with-current-buffer (window-buffer window)
|
|
|
|
|
(help-follow pos))))
|
|
|
|
|
|
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
|
|
|
|
|
(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
|
|
|
|
|
|
|
|
|
(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))
|
|
|
|
|
(error "No previous help buffer.")))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
|
|
|
|
|
(defun help-do-xref (pos function args)
|
|
|
|
|
"Call the help cross-reference function FUNCTION with args ARGS.
|
|
|
|
|
Things are set up properly so that the resulting help-buffer has
|
|
|
|
|
a proper [back] button."
|
|
|
|
|
;; There is a reference at point. Follow it.
|
|
|
|
|
(let ((help-xref-following t))
|
|
|
|
|
(apply function args)))
|
|
|
|
|
|
|
|
|
|
(defun help-follow (&optional pos)
|
|
|
|
|
"Follow cross-reference at POS, defaulting to point.
|
|
|
|
|
|
|
|
|
|
For the cross-reference format, see `help-make-xrefs'."
|
|
|
|
|
(interactive "d")
|
|
|
|
|
(unless pos
|
|
|
|
|
(setq pos (point)))
|
|
|
|
|
(unless (push-button pos)
|
|
|
|
|
;; check if the symbol under point is a function or variable
|
|
|
|
|
(let ((sym
|
|
|
|
|
(intern
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos) (skip-syntax-backward "w_")
|
|
|
|
|
(buffer-substring (point)
|
|
|
|
|
(progn (skip-syntax-forward "w_")
|
|
|
|
|
(point)))))))
|
2001-10-11 23:33:52 +00:00
|
|
|
|
(when (or (boundp sym) (fboundp sym) (facep sym))
|
2001-10-09 11:16:25 +00:00
|
|
|
|
(help-do-xref pos #'help-xref-interned (list sym))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'help-mode)
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: 850954ae-3725-4cb4-8e91-0bf6d52d6b0b
|
2001-10-09 11:16:25 +00:00
|
|
|
|
;;; help-mode.el ends here
|