Variable: Info-hide-note-references

Info-hide-note-references is a customizable variable defined in info.el.gz.

Value

t

Documentation

If non-nil, hide the tag and section reference in *note and * menu items.

If the value is t, the default, replace "*note" with "see". If the value is hide, remove "*note" without replacing it with anything. If value is non-nil, but not t or hide, the reference section is still shown. nil completely disables this feature, leaving the original "*note" visible. If this is non-nil, you may wish setting Info-refill-paragraphs non-nil.

This variable was added, or its default value changed, in Emacs 22.1.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defcustom Info-hide-note-references t
  "If non-nil, hide the tag and section reference in *note and * menu items.
If the value is t, the default, replace \"*note\" with \"see\".
If the value is `hide', remove \"*note\" without replacing it with anything.
If value is non-nil, but not t or `hide', the reference section is still shown.
nil completely disables this feature, leaving the original \"*note\" visible.
If this is non-nil, you may wish setting `Info-refill-paragraphs' non-nil."
  :version "22.1"
  :type '(choice (const :tag "No hiding" nil)
		 (const :tag "Replace tag and hide reference" t)
		 (const :tag "Hide tag and reference" hide)
		 (other :tag "Only replace tag" tag))
  :set (lambda (sym val)
	 (set sym val)
	 (dolist (buffer (buffer-list))
	   (with-current-buffer buffer
             (when (derived-mode-p 'Info-mode)
               (revert-buffer t t))))))