2009-09-22 08:44:16 +00:00
|
|
|
|
;; info.el --- info package for Emacs
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
2005-05-27 16:19:36 +00:00
|
|
|
|
;; Copyright (C) 1985, 1986, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
2008-02-01 04:48:20 +00:00
|
|
|
|
;; Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;; Maintainer: FSF
|
1992-07-17 08:15:29 +00:00
|
|
|
|
;; Keywords: help
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
1991-07-13 07:49:50 +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
|
1991-07-13 07:49:50 +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.
|
1991-07-13 07:49:50 +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
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; Note that nowadays we expect Info files to be made using makeinfo.
|
2003-01-25 00:53:58 +00:00
|
|
|
|
;; In particular we make these assumptions:
|
|
|
|
|
;; - a menu item MAY contain colons but not colon-space ": "
|
|
|
|
|
;; - a menu item ending with ": " (but not ":: ") is an index entry
|
|
|
|
|
;; - a node name MAY NOT contain a colon
|
2003-01-25 02:45:12 +00:00
|
|
|
|
;; This distinction is to support indexing of computer programming
|
|
|
|
|
;; language terms that may contain ":" but not ": ".
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2008-06-25 16:51:33 +00:00
|
|
|
|
(eval-when-compile (require 'jka-compr) (require 'cl))
|
1999-10-05 11:47:35 +00:00
|
|
|
|
|
1997-04-13 03:09:23 +00:00
|
|
|
|
(defgroup info nil
|
2005-07-04 02:12:31 +00:00
|
|
|
|
"Info subsystem."
|
1997-04-13 03:09:23 +00:00
|
|
|
|
:group 'help
|
|
|
|
|
:group 'docs)
|
|
|
|
|
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defvar Info-history nil
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Stack of Info nodes user has visited.
|
2005-07-04 09:36:02 +00:00
|
|
|
|
Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(defvar Info-history-forward nil
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Stack of Info nodes user has visited with `Info-history-back' command.
|
2005-07-04 09:36:02 +00:00
|
|
|
|
Each element of the stack is a list (FILENAME NODENAME BUFFERPOS).")
|
2005-01-11 21:57:46 +00:00
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defvar Info-history-list nil
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"List of all Info nodes user has visited.
|
2005-07-04 09:36:02 +00:00
|
|
|
|
Each element of the list is a list (FILENAME NODENAME).")
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
1997-04-13 03:09:23 +00:00
|
|
|
|
(defcustom Info-enable-edit nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
|
2005-08-09 08:43:02 +00:00
|
|
|
|
This is convenient if you want to write Info files by hand.
|
1992-06-03 20:43:49 +00:00
|
|
|
|
However, we recommend that you not do this.
|
|
|
|
|
It is better to write a Texinfo file and generate the Info file from that,
|
1997-04-13 03:09:23 +00:00
|
|
|
|
because that gives you a printed manual as well."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1996-05-07 00:51:23 +00:00
|
|
|
|
(defvar Info-enable-active-nodes nil
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Non-nil allows Info to execute Lisp code associated with nodes.
|
|
|
|
|
The Lisp code is executed when the node is selected.")
|
1996-05-07 00:51:23 +00:00
|
|
|
|
(put 'Info-enable-active-nodes 'risky-local-variable t)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1997-07-30 18:15:19 +00:00
|
|
|
|
(defface info-node
|
2004-04-21 20:54:19 +00:00
|
|
|
|
'((((class color) (background light)) :foreground "brown" :weight bold :slant italic)
|
|
|
|
|
(((class color) (background dark)) :foreground "white" :weight bold :slant italic)
|
|
|
|
|
(t :weight bold :slant italic))
|
1997-07-30 18:15:19 +00:00
|
|
|
|
"Face for Info node names."
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(defface info-title-1
|
|
|
|
|
'((((type tty pc) (class color) (background light))
|
|
|
|
|
:foreground "green" :weight bold)
|
|
|
|
|
(((type tty pc) (class color) (background dark))
|
|
|
|
|
:foreground "yellow" :weight bold)
|
|
|
|
|
(t :height 1.2 :inherit info-title-2))
|
|
|
|
|
"Face for info titles at level 1."
|
|
|
|
|
:group 'info)
|
2009-09-01 07:24:13 +00:00
|
|
|
|
(define-obsolete-face-alias 'Info-title-1-face 'info-title-1 "22.1")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
|
|
|
|
|
(defface info-title-2
|
|
|
|
|
'((((type tty pc) (class color)) :foreground "lightblue" :weight bold)
|
|
|
|
|
(t :height 1.2 :inherit info-title-3))
|
|
|
|
|
"Face for info titles at level 2."
|
|
|
|
|
:group 'info)
|
2009-09-01 07:24:13 +00:00
|
|
|
|
(define-obsolete-face-alias 'Info-title-2-face 'info-title-2 "22.1")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
|
|
|
|
|
(defface info-title-3
|
|
|
|
|
'((((type tty pc) (class color)) :weight bold)
|
|
|
|
|
(t :height 1.2 :inherit info-title-4))
|
|
|
|
|
"Face for info titles at level 3."
|
|
|
|
|
:group 'info)
|
2009-09-01 07:24:13 +00:00
|
|
|
|
(define-obsolete-face-alias 'Info-title-3-face 'info-title-3 "22.1")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
|
|
|
|
|
(defface info-title-4
|
|
|
|
|
'((((type tty pc) (class color)) :weight bold)
|
|
|
|
|
(t :weight bold :inherit variable-pitch))
|
|
|
|
|
"Face for info titles at level 4."
|
|
|
|
|
:group 'info)
|
2009-09-01 07:24:13 +00:00
|
|
|
|
(define-obsolete-face-alias 'Info-title-4-face 'info-title-4 "22.1")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
|
|
|
|
|
(defface info-menu-header
|
|
|
|
|
'((((type tty pc))
|
|
|
|
|
:underline t
|
|
|
|
|
:weight bold)
|
|
|
|
|
(t
|
|
|
|
|
:inherit variable-pitch
|
|
|
|
|
:weight bold))
|
|
|
|
|
"Face for headers in Info menus."
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
|
|
|
|
(defface info-menu-star
|
2004-04-21 20:54:19 +00:00
|
|
|
|
'((((class color)) :foreground "red1")
|
|
|
|
|
(t :underline t))
|
2002-06-26 13:11:28 +00:00
|
|
|
|
"Face for every third `*' in an Info menu."
|
1997-07-30 18:15:19 +00:00
|
|
|
|
:group 'info)
|
2009-09-02 03:06:50 +00:00
|
|
|
|
(define-obsolete-face-alias 'info-menu-5 'info-menu-star "22.1")
|
1997-07-30 18:15:19 +00:00
|
|
|
|
|
|
|
|
|
(defface info-xref
|
2006-01-23 01:19:35 +00:00
|
|
|
|
'((t :inherit link))
|
|
|
|
|
"Face for unvisited Info cross-references."
|
1997-07-30 18:15:19 +00:00
|
|
|
|
:group 'info)
|
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defface info-xref-visited
|
2006-02-13 15:44:01 +00:00
|
|
|
|
'((t :inherit (link-visited info-xref)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
"Face for visited Info cross-references."
|
2006-01-23 01:19:35 +00:00
|
|
|
|
:version "22.1"
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
:group 'info)
|
|
|
|
|
|
|
|
|
|
(defcustom Info-fontify-visited-nodes t
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Non-nil to fontify references to visited nodes in `info-xref-visited' face."
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1"
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2007-04-02 04:28:45 +00:00
|
|
|
|
(defcustom Info-fontify-maximum-menu-size 100000
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Maximum size of menu to fontify if `font-lock-mode' is non-nil.
|
2007-02-10 11:10:49 +00:00
|
|
|
|
Set to nil to disable node fontification."
|
1997-04-13 03:09:23 +00:00
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'info)
|
1994-08-07 23:35:47 +00:00
|
|
|
|
|
2000-09-17 16:21:42 +00:00
|
|
|
|
(defcustom Info-use-header-line t
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Non-nil means to put the beginning-of-node links in an Emacs header-line.
|
2000-09-17 16:21:42 +00:00
|
|
|
|
A header-line does not scroll with the rest of the buffer."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
|
|
|
|
(defface info-header-xref
|
2004-04-21 20:54:19 +00:00
|
|
|
|
'((t :inherit info-xref))
|
2000-09-17 16:21:42 +00:00
|
|
|
|
"Face for Info cross-references in a node header."
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
|
|
|
|
(defface info-header-node
|
2004-04-21 20:54:19 +00:00
|
|
|
|
'((t :inherit info-node))
|
2000-09-17 16:21:42 +00:00
|
|
|
|
"Face for Info nodes in a node header."
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
1999-08-01 12:17:46 +00:00
|
|
|
|
(defvar Info-directory-list nil
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"List of directories to search for Info documentation files.
|
2002-07-08 09:34:49 +00:00
|
|
|
|
If nil, meaning not yet initialized, Info uses the environment
|
1993-03-02 07:27:17 +00:00
|
|
|
|
variable INFOPATH to initialize it, or `Info-default-directory-list'
|
2003-06-03 19:54:42 +00:00
|
|
|
|
if there is no INFOPATH variable in the environment, or the
|
|
|
|
|
concatenation of the two if INFOPATH ends with a colon.
|
2000-09-01 21:41:22 +00:00
|
|
|
|
|
|
|
|
|
When `Info-directory-list' is initialized from the value of
|
2000-12-14 17:14:32 +00:00
|
|
|
|
`Info-default-directory-list', and Emacs is installed in one of the
|
|
|
|
|
standard directories, the directory of Info files that come with Emacs
|
|
|
|
|
is put last (so that local Info files override standard ones).
|
|
|
|
|
|
|
|
|
|
When `Info-directory-list' is initialized from the value of
|
|
|
|
|
`Info-default-directory-list', and Emacs is not installed in one
|
|
|
|
|
of the standard directories, the first element of the resulting
|
2000-09-01 21:41:22 +00:00
|
|
|
|
list is the directory where Emacs installs the Info files that
|
|
|
|
|
come with it. This is so that Emacs's own manual, which suits the
|
2000-12-14 17:14:32 +00:00
|
|
|
|
version of Emacs you are using, will always be found first. This
|
|
|
|
|
is useful when you install an experimental version of Emacs without
|
|
|
|
|
removing the standard installation.
|
|
|
|
|
|
|
|
|
|
If you want to override the order of directories in
|
|
|
|
|
`Info-default-directory-list', set INFOPATH in the environment.
|
1994-08-06 02:58:22 +00:00
|
|
|
|
|
|
|
|
|
If you run the Emacs executable from the `src' directory in the Emacs
|
2000-09-01 21:41:22 +00:00
|
|
|
|
source tree, and INFOPATH is not defined, the `info' directory in the
|
|
|
|
|
source tree is used as the first element of `Info-directory-list', in
|
|
|
|
|
place of the installation Info directory. This is useful when you run
|
|
|
|
|
a version of Emacs without installing it.")
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1997-04-13 03:09:23 +00:00
|
|
|
|
(defcustom Info-additional-directory-list nil
|
1994-08-07 23:35:47 +00:00
|
|
|
|
"List of additional directories to search for Info documentation files.
|
2002-11-29 15:07:49 +00:00
|
|
|
|
These directories are searched after those in `Info-directory-list'."
|
1997-04-13 03:09:23 +00:00
|
|
|
|
:type '(repeat directory)
|
|
|
|
|
:group 'info)
|
1994-08-07 23:35:47 +00:00
|
|
|
|
|
2003-07-02 00:57:20 +00:00
|
|
|
|
(defcustom Info-scroll-prefer-subnodes nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes.
|
2005-08-09 08:43:02 +00:00
|
|
|
|
|
2000-12-04 16:38:22 +00:00
|
|
|
|
If this is non-nil, and you scroll far enough in a node that its menu
|
|
|
|
|
appears on the screen, the next \\<Info-mode-map>\\[Info-scroll-up]
|
|
|
|
|
moves to a subnode indicated by the following menu item. This means
|
|
|
|
|
that you visit a subnode before getting to the end of the menu.
|
|
|
|
|
|
|
|
|
|
Setting this option to nil results in behavior similar to the stand-alone
|
|
|
|
|
Info reader program, which visits the first subnode from the menu only
|
|
|
|
|
when you hit the end of the current node."
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1"
|
2000-12-04 16:38:22 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2002-11-01 08:53:50 +00:00
|
|
|
|
(defcustom Info-hide-note-references t
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, hide the tag and section reference in *note and * menu items.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
If value is non-nil but not `hide', also replaces the \"*note\" with \"see\".
|
2005-08-09 08:43:02 +00:00
|
|
|
|
If value is non-nil but not t or `hide', the reference section is still shown.
|
2008-08-30 20:16:47 +00:00
|
|
|
|
`nil' completely disables this feature. If this is non-nil, you might
|
|
|
|
|
want to set `Info-refill-paragraphs'."
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1"
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
:type '(choice (const :tag "No hiding" nil)
|
2003-03-02 23:33:56 +00:00
|
|
|
|
(const :tag "Replace tag and hide reference" t)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(const :tag "Hide tag and reference" hide)
|
|
|
|
|
(other :tag "Only replace tag" tag))
|
2002-11-01 08:53:50 +00:00
|
|
|
|
:group 'info)
|
|
|
|
|
|
2003-07-04 21:40:22 +00:00
|
|
|
|
(defcustom Info-refill-paragraphs nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, attempt to refill paragraphs with hidden references.
|
2005-08-09 08:43:02 +00:00
|
|
|
|
This refilling may accidentally remove explicit line breaks in the Info
|
2008-08-30 20:16:47 +00:00
|
|
|
|
file, so be prepared for a few surprises if you enable this feature.
|
|
|
|
|
This only has an effect if `Info-hide-note-references' is non-nil."
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1"
|
2003-07-04 21:40:22 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2008-10-18 23:45:05 +00:00
|
|
|
|
(defcustom Info-breadcrumbs-depth 4
|
|
|
|
|
"Depth of breadcrumbs to display.
|
|
|
|
|
0 means do not display breadcrumbs."
|
|
|
|
|
:type 'integer)
|
|
|
|
|
|
2004-11-28 15:42:11 +00:00
|
|
|
|
(defcustom Info-search-whitespace-regexp "\\s-+"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, regular expression to match a sequence of whitespace chars.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
This applies to Info search for regular expressions.
|
|
|
|
|
You might want to use something like \"[ \\t\\r\\n]+\" instead.
|
|
|
|
|
In the Customization buffer, that is `[' followed by a space,
|
|
|
|
|
a tab, a carriage return (control-M), a newline, and `]+'."
|
|
|
|
|
:type 'regexp
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2005-02-23 17:03:17 +00:00
|
|
|
|
(defcustom Info-isearch-search t
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If non-nil, isearch in Info searches through multiple nodes.
|
2005-03-16 07:32:43 +00:00
|
|
|
|
Before leaving the initial Info node, where isearch was started,
|
|
|
|
|
it fails once with the error message [initial node], and with
|
|
|
|
|
subsequent C-s/C-r continues through other nodes without failing
|
|
|
|
|
with this error message in other nodes. When isearch fails for
|
|
|
|
|
the rest of the manual, it wraps aroung the whole manual and
|
|
|
|
|
restarts the search from the top/final node depending on
|
|
|
|
|
search direction.
|
|
|
|
|
|
|
|
|
|
Setting this option to nil restores the default isearch behavior
|
|
|
|
|
with wrapping around the current Info node."
|
2005-02-23 17:03:17 +00:00
|
|
|
|
:version "22.1"
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(defvar Info-isearch-initial-node nil)
|
|
|
|
|
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(defcustom Info-mode-hook
|
|
|
|
|
;; Try to obey obsolete Info-fontify settings.
|
|
|
|
|
(unless (and (boundp 'Info-fontify) (null Info-fontify))
|
|
|
|
|
'(turn-on-font-lock))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
"Hooks run when `Info-mode' is called."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
|
|
|
|
(defcustom Info-selection-hook nil
|
|
|
|
|
"Hooks run when `Info-select-node' is called."
|
2002-05-21 22:22:10 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'info)
|
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defvar Info-edit-mode-hook nil
|
|
|
|
|
"Hooks run when `Info-edit-mode' is called.")
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defvar Info-current-file nil
|
1995-07-24 01:26:23 +00:00
|
|
|
|
"Info file that Info is now looking at, or nil.
|
|
|
|
|
This is the name that was specified in Info, not the actual file name.
|
2005-11-25 16:35:34 +00:00
|
|
|
|
It doesn't contain directory names or file name extensions added by Info.")
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-current-subfile nil
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Info subfile that is actually in the *info* buffer now.
|
2007-05-16 13:14:45 +00:00
|
|
|
|
It is nil if current Info file is not split into subfiles.")
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-current-node nil
|
|
|
|
|
"Name of node that Info is now looking at, or nil.")
|
|
|
|
|
|
1997-02-08 18:34:21 +00:00
|
|
|
|
(defvar Info-tag-table-marker nil
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Marker pointing at beginning of current Info file's tag table.
|
|
|
|
|
Marker points nowhere if file has no tag table.")
|
|
|
|
|
|
1997-02-08 18:34:21 +00:00
|
|
|
|
(defvar Info-tag-table-buffer nil
|
|
|
|
|
"Buffer used for indirect tag tables.")
|
|
|
|
|
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(defvar Info-current-file-completions nil
|
|
|
|
|
"Cached completion list for current Info file.")
|
|
|
|
|
|
2005-11-01 09:45:38 +00:00
|
|
|
|
(defvar Info-file-supports-index-cookies nil
|
|
|
|
|
"Non-nil if current Info file supports index cookies.")
|
|
|
|
|
|
2008-10-18 23:45:05 +00:00
|
|
|
|
(defvar Info-file-supports-index-cookies-list nil
|
|
|
|
|
"List of Info files with information about index cookies support.
|
|
|
|
|
Each element of the list is a list (FILENAME SUPPORTS-INDEX-COOKIES)
|
|
|
|
|
where SUPPORTS-INDEX-COOKIES can be either t or nil.")
|
|
|
|
|
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(defvar Info-index-alternatives nil
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"List of possible matches for last `Info-index' command.")
|
1993-04-23 02:20:55 +00:00
|
|
|
|
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(defvar Info-point-loc nil
|
|
|
|
|
"Point location within a selected node.
|
|
|
|
|
If string, the point is moved to the proper occurrence of the
|
|
|
|
|
name of the followed cross reference within a selected node.
|
|
|
|
|
If number, the point is moved to the corresponding line.")
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(defvar Info-standalone nil
|
|
|
|
|
"Non-nil if Emacs was started solely as an Info browser.")
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-virtual-files nil
|
|
|
|
|
"List of definitions of virtual Info files.
|
|
|
|
|
Each element of the list has the format (FILENAME (OPERATION . HANDLER) ...)
|
|
|
|
|
where FILENAME is a regexp that matches a class of virtual Info file names.
|
|
|
|
|
It should be carefully chosen to not cause file name clashes with
|
|
|
|
|
existing file names. OPERATION is one of the following operation
|
|
|
|
|
symbols `find-file', `find-node', `toc-nodes' that define what HANDLER
|
|
|
|
|
function to call instead of calling the default corresponding function
|
|
|
|
|
to override it.")
|
|
|
|
|
|
|
|
|
|
(defvar Info-virtual-nodes nil
|
|
|
|
|
"List of definitions of virtual Info nodes.
|
|
|
|
|
Each element of the list has the format (NODENAME (OPERATION . HANDLER) ...)
|
|
|
|
|
where NODENAME is a regexp that matches a class of virtual Info node names.
|
|
|
|
|
It should be carefully chosen to not cause node name clashes with
|
|
|
|
|
existing node names. OPERATION is one of the following operation
|
|
|
|
|
symbols `find-node' that define what HANDLER
|
|
|
|
|
function to call instead of calling the default corresponding function
|
|
|
|
|
to override it.")
|
|
|
|
|
|
|
|
|
|
(defvar Info-current-node-virtual nil
|
|
|
|
|
"Non-nil if the current Info node is virtual.")
|
|
|
|
|
|
|
|
|
|
(defun Info-virtual-file-p (filename)
|
|
|
|
|
"Check if Info file FILENAME is virtual."
|
|
|
|
|
(Info-virtual-fun 'find-file filename nil))
|
|
|
|
|
|
|
|
|
|
(defun Info-virtual-fun (op filename nodename)
|
|
|
|
|
"Find a function that handles operations on virtual manuals.
|
|
|
|
|
OP is an operation symbol (`find-file', `find-node' or `toc-nodes'),
|
|
|
|
|
FILENAME is a virtual Info file name, NODENAME is a virtual Info
|
|
|
|
|
node name. Return a function found either in `Info-virtual-files'
|
|
|
|
|
or `Info-virtual-nodes'."
|
|
|
|
|
(or (and (stringp filename) ; some legacy code can still use a symbol
|
|
|
|
|
(cdr-safe (assoc op (assoc-default filename
|
|
|
|
|
Info-virtual-files
|
|
|
|
|
'string-match))))
|
|
|
|
|
(and (stringp nodename) ; some legacy code can still use a symbol
|
|
|
|
|
(cdr-safe (assoc op (assoc-default nodename
|
|
|
|
|
Info-virtual-nodes
|
|
|
|
|
'string-match))))))
|
|
|
|
|
|
|
|
|
|
(defun Info-virtual-call (virtual-fun &rest args)
|
|
|
|
|
"Call a function that handles operations on virtual manuals."
|
|
|
|
|
(when (functionp virtual-fun)
|
|
|
|
|
(or (apply virtual-fun args) t)))
|
|
|
|
|
|
1999-08-01 12:17:46 +00:00
|
|
|
|
|
1995-08-22 18:51:46 +00:00
|
|
|
|
(defvar Info-suffix-list
|
1997-09-15 19:48:11 +00:00
|
|
|
|
;; The MS-DOS list should work both when long file names are
|
|
|
|
|
;; supported (Windows 9X), and when only 8+3 file names are available.
|
1995-08-22 18:51:46 +00:00
|
|
|
|
(if (eq system-type 'ms-dos)
|
|
|
|
|
'( (".gz" . "gunzip")
|
|
|
|
|
(".z" . "gunzip")
|
2000-12-13 00:14:52 +00:00
|
|
|
|
(".bz2" . ("bzip2" "-dc"))
|
1997-09-15 19:48:11 +00:00
|
|
|
|
(".inz" . "gunzip")
|
|
|
|
|
(".igz" . "gunzip")
|
|
|
|
|
(".info.Z" . "gunzip")
|
|
|
|
|
(".info.gz" . "gunzip")
|
|
|
|
|
("-info.Z" . "gunzip")
|
|
|
|
|
("-info.gz" . "gunzip")
|
|
|
|
|
("/index.gz". "gunzip")
|
|
|
|
|
("/index.z" . "gunzip")
|
1995-09-06 18:04:02 +00:00
|
|
|
|
(".inf" . nil)
|
1997-09-15 19:48:11 +00:00
|
|
|
|
(".info" . nil)
|
|
|
|
|
("-info" . nil)
|
|
|
|
|
("/index" . nil)
|
1995-08-22 18:51:46 +00:00
|
|
|
|
("" . nil))
|
1997-05-24 21:27:29 +00:00
|
|
|
|
'( (".info.Z". "uncompress")
|
|
|
|
|
(".info.Y". "unyabba")
|
|
|
|
|
(".info.gz". "gunzip")
|
|
|
|
|
(".info.z". "gunzip")
|
2000-12-13 00:14:52 +00:00
|
|
|
|
(".info.bz2" . ("bzip2" "-dc"))
|
1997-05-24 21:27:29 +00:00
|
|
|
|
(".info". nil)
|
|
|
|
|
("-info.Z". "uncompress")
|
|
|
|
|
("-info.Y". "unyabba")
|
|
|
|
|
("-info.gz". "gunzip")
|
2000-12-13 00:14:52 +00:00
|
|
|
|
("-info.bz2" . ("bzip2" "-dc"))
|
1997-05-24 21:27:29 +00:00
|
|
|
|
("-info.z". "gunzip")
|
|
|
|
|
("-info". nil)
|
|
|
|
|
("/index.Z". "uncompress")
|
|
|
|
|
("/index.Y". "unyabba")
|
|
|
|
|
("/index.gz". "gunzip")
|
|
|
|
|
("/index.z". "gunzip")
|
2000-12-13 00:14:52 +00:00
|
|
|
|
("/index.bz2". ("bzip2" "-dc"))
|
1997-05-24 21:27:29 +00:00
|
|
|
|
("/index". nil)
|
|
|
|
|
(".Z". "uncompress")
|
|
|
|
|
(".Y". "unyabba")
|
|
|
|
|
(".gz". "gunzip")
|
|
|
|
|
(".z". "gunzip")
|
2000-12-13 00:14:52 +00:00
|
|
|
|
(".bz2" . ("bzip2" "-dc"))
|
1997-05-24 21:27:29 +00:00
|
|
|
|
("". nil)))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
"List of file name suffixes and associated decoding commands.
|
|
|
|
|
Each entry should be (SUFFIX . STRING); the file is given to
|
2000-12-13 00:14:52 +00:00
|
|
|
|
the command as standard input.
|
|
|
|
|
|
|
|
|
|
STRING may be a list of strings. In that case, the first element is
|
|
|
|
|
the command name, and the rest are arguments to that command.
|
|
|
|
|
|
|
|
|
|
If STRING is nil, no decoding is done.
|
1994-03-29 01:39:51 +00:00
|
|
|
|
Because the SUFFIXes are tried in order, the empty string should
|
|
|
|
|
be last in the list.")
|
1993-04-23 02:20:55 +00:00
|
|
|
|
|
1995-11-15 23:17:18 +00:00
|
|
|
|
;; Concatenate SUFFIX onto FILENAME. SUFFIX should start with a dot.
|
2001-03-01 14:14:09 +00:00
|
|
|
|
;; First, on MS-DOS with no long file names support, delete some of
|
|
|
|
|
;; the extension in FILENAME to make room.
|
|
|
|
|
(defun info-insert-file-contents-1 (filename suffix lfn)
|
|
|
|
|
(if lfn ; long file names are supported
|
1995-08-22 18:51:46 +00:00
|
|
|
|
(concat filename suffix)
|
|
|
|
|
(let* ((sans-exts (file-name-sans-extension filename))
|
1995-11-15 23:17:18 +00:00
|
|
|
|
;; How long is the extension in FILENAME (not counting the dot).
|
|
|
|
|
(ext-len (max 0 (- (length filename) (length sans-exts) 1)))
|
|
|
|
|
ext-left)
|
1995-09-06 18:04:02 +00:00
|
|
|
|
;; SUFFIX starts with a dot. If FILENAME already has one,
|
1996-02-16 00:58:07 +00:00
|
|
|
|
;; get rid of the one in SUFFIX (unless suffix is empty).
|
1995-11-15 23:17:18 +00:00
|
|
|
|
(or (and (<= ext-len 0)
|
1995-09-06 18:04:02 +00:00
|
|
|
|
(not (eq (aref filename (1- (length filename))) ?.)))
|
1996-02-16 00:58:07 +00:00
|
|
|
|
(= (length suffix) 0)
|
1995-09-06 18:04:02 +00:00
|
|
|
|
(setq suffix (substring suffix 1)))
|
1995-11-15 23:17:18 +00:00
|
|
|
|
;; How many chars of that extension should we keep?
|
|
|
|
|
(setq ext-left (min ext-len (max 0 (- 3 (length suffix)))))
|
1995-08-22 18:51:46 +00:00
|
|
|
|
;; Get rid of the rest of the extension, and add SUFFIX.
|
|
|
|
|
(concat (substring filename 0 (- (length filename)
|
|
|
|
|
(- ext-len ext-left)))
|
|
|
|
|
suffix))))
|
|
|
|
|
|
1998-05-15 04:05:56 +00:00
|
|
|
|
(defun info-file-exists-p (filename)
|
|
|
|
|
(and (file-exists-p filename)
|
|
|
|
|
(not (file-directory-p filename))))
|
|
|
|
|
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(defun info-insert-file-contents (filename &optional visit)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Insert the contents of an Info file in the current buffer.
|
1993-04-23 02:20:55 +00:00
|
|
|
|
Do the right thing if the file has been compressed or zipped."
|
2001-03-01 14:14:09 +00:00
|
|
|
|
(let* ((tail Info-suffix-list)
|
2003-01-26 18:04:55 +00:00
|
|
|
|
(lfn (if (fboundp 'msdos-long-file-names)
|
|
|
|
|
(msdos-long-file-names)
|
|
|
|
|
t))
|
2001-03-01 14:14:09 +00:00
|
|
|
|
(check-short (and (fboundp 'msdos-long-file-names)
|
|
|
|
|
lfn))
|
|
|
|
|
fullname decoder done)
|
2001-08-03 12:33:14 +00:00
|
|
|
|
(if (info-file-exists-p filename)
|
1995-08-22 18:51:46 +00:00
|
|
|
|
;; FILENAME exists--see if that name contains a suffix.
|
|
|
|
|
;; If so, set DECODE accordingly.
|
1994-03-29 01:39:51 +00:00
|
|
|
|
(progn
|
|
|
|
|
(while (and tail
|
|
|
|
|
(not (string-match
|
|
|
|
|
(concat (regexp-quote (car (car tail))) "$")
|
|
|
|
|
filename)))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(setq fullname filename
|
|
|
|
|
decoder (cdr (car tail))))
|
1995-08-22 18:51:46 +00:00
|
|
|
|
;; Try adding suffixes to FILENAME and see if we can find something.
|
2001-03-01 14:14:09 +00:00
|
|
|
|
(while (and tail (not done))
|
|
|
|
|
(setq fullname (info-insert-file-contents-1 filename
|
|
|
|
|
(car (car tail)) lfn))
|
|
|
|
|
(if (info-file-exists-p fullname)
|
|
|
|
|
(setq done t
|
|
|
|
|
;; If we found a file with a suffix, set DECODER
|
|
|
|
|
;; according to the suffix.
|
|
|
|
|
decoder (cdr (car tail)))
|
|
|
|
|
;; When the MS-DOS port runs on Windows, we need to check
|
|
|
|
|
;; the short variant of a long file name as well.
|
|
|
|
|
(when check-short
|
|
|
|
|
(setq fullname (info-insert-file-contents-1 filename
|
|
|
|
|
(car (car tail)) nil))
|
|
|
|
|
(if (info-file-exists-p fullname)
|
|
|
|
|
(setq done t
|
|
|
|
|
decoder (cdr (car tail))))))
|
1994-03-29 01:39:51 +00:00
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(or tail
|
1995-08-22 18:51:46 +00:00
|
|
|
|
(error "Can't find %s or any compressed version of it" filename)))
|
1994-10-18 05:25:40 +00:00
|
|
|
|
;; check for conflict with jka-compr
|
2005-12-12 05:15:53 +00:00
|
|
|
|
(if (and (jka-compr-installed-p)
|
1994-10-18 05:25:40 +00:00
|
|
|
|
(jka-compr-get-compression-info fullname))
|
|
|
|
|
(setq decoder nil))
|
1994-03-29 01:39:51 +00:00
|
|
|
|
(if decoder
|
1997-09-15 19:48:11 +00:00
|
|
|
|
(progn
|
|
|
|
|
(insert-file-contents-literally fullname visit)
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
1997-09-15 19:48:11 +00:00
|
|
|
|
(coding-system-for-write 'no-conversion)
|
2009-01-10 10:43:11 +00:00
|
|
|
|
(inhibit-null-byte-detection t) ; Index nodes include null bytes
|
1997-09-15 19:48:11 +00:00
|
|
|
|
(default-directory (or (file-name-directory fullname)
|
|
|
|
|
default-directory)))
|
2000-12-13 00:14:52 +00:00
|
|
|
|
(or (consp decoder)
|
|
|
|
|
(setq decoder (list decoder)))
|
|
|
|
|
(apply 'call-process-region (point-min) (point-max)
|
|
|
|
|
(car decoder) t t nil (cdr decoder))))
|
2009-01-10 10:43:11 +00:00
|
|
|
|
(let ((inhibit-null-byte-detection t)) ; Index nodes include null bytes
|
|
|
|
|
(insert-file-contents fullname visit)))))
|
2008-10-18 23:45:05 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-file-supports-index-cookies (&optional file)
|
|
|
|
|
"Return non-nil value if FILE supports Info index cookies.
|
|
|
|
|
Info index cookies were first introduced in 4.7, and all later
|
2008-10-19 23:23:34 +00:00
|
|
|
|
makeinfo versions output them in index nodes, so we can rely
|
2008-10-18 23:45:05 +00:00
|
|
|
|
solely on the makeinfo version. This function caches the information
|
|
|
|
|
in `Info-file-supports-index-cookies-list'."
|
|
|
|
|
(or file (setq file Info-current-file))
|
|
|
|
|
(or (assoc file Info-file-supports-index-cookies-list)
|
|
|
|
|
;; Skip virtual Info files
|
|
|
|
|
(and (or (not (stringp file))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(Info-virtual-file-p file))
|
2008-10-18 23:45:05 +00:00
|
|
|
|
(setq Info-file-supports-index-cookies-list
|
|
|
|
|
(cons (cons file nil) Info-file-supports-index-cookies-list)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((found nil))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(if (and (re-search-forward
|
|
|
|
|
"makeinfo[ \n]version[ \n]\\([0-9]+.[0-9]+\\)"
|
|
|
|
|
(line-beginning-position 3) t)
|
|
|
|
|
(not (version< (match-string 1) "4.7")))
|
|
|
|
|
(setq found t))
|
|
|
|
|
(error nil))
|
|
|
|
|
(setq Info-file-supports-index-cookies-list
|
|
|
|
|
(cons (cons file found) Info-file-supports-index-cookies-list)))))
|
|
|
|
|
(cdr (assoc file Info-file-supports-index-cookies-list)))
|
|
|
|
|
|
1999-08-01 12:17:46 +00:00
|
|
|
|
|
2003-04-21 17:40:19 +00:00
|
|
|
|
(defun Info-default-dirs ()
|
|
|
|
|
(let ((source (expand-file-name "info/" source-directory))
|
|
|
|
|
(sibling (if installation-directory
|
|
|
|
|
(expand-file-name "info/" installation-directory)
|
|
|
|
|
(if invocation-directory
|
|
|
|
|
(let ((infodir (expand-file-name
|
2007-01-18 16:09:06 +00:00
|
|
|
|
"../share/info/"
|
2003-04-21 17:40:19 +00:00
|
|
|
|
invocation-directory)))
|
|
|
|
|
(if (file-exists-p infodir)
|
|
|
|
|
infodir
|
|
|
|
|
(setq infodir (expand-file-name
|
2007-01-18 16:09:06 +00:00
|
|
|
|
"../../../share/info/"
|
2003-04-21 17:40:19 +00:00
|
|
|
|
invocation-directory))
|
|
|
|
|
(and (file-exists-p infodir)
|
|
|
|
|
infodir))))))
|
|
|
|
|
alternative)
|
|
|
|
|
(setq alternative
|
|
|
|
|
(if (and sibling (file-exists-p sibling))
|
|
|
|
|
;; Uninstalled, Emacs builddir != srcdir.
|
|
|
|
|
sibling
|
|
|
|
|
;; Uninstalled, builddir == srcdir
|
|
|
|
|
source))
|
|
|
|
|
(if (or (member alternative Info-default-directory-list)
|
|
|
|
|
;; On DOS/NT, we use movable executables always,
|
|
|
|
|
;; and we must always find the Info dir at run time.
|
|
|
|
|
(if (memq system-type '(ms-dos windows-nt))
|
|
|
|
|
nil
|
|
|
|
|
;; Use invocation-directory for Info
|
|
|
|
|
;; only if we used it for exec-directory also.
|
|
|
|
|
(not (string= exec-directory
|
|
|
|
|
(expand-file-name "lib-src/"
|
|
|
|
|
installation-directory))))
|
|
|
|
|
(not (file-exists-p alternative)))
|
|
|
|
|
Info-default-directory-list
|
|
|
|
|
;; `alternative' contains the Info files that came with this
|
|
|
|
|
;; version, so we should look there first. `Info-insert-dir'
|
|
|
|
|
;; currently expects to find `alternative' first on the list.
|
|
|
|
|
(cons alternative
|
2004-03-19 02:37:11 +00:00
|
|
|
|
;; Don't drop the last part, it might contain non-Emacs stuff.
|
|
|
|
|
;; (reverse (cdr (reverse
|
|
|
|
|
Info-default-directory-list)))) ;; )))
|
2003-04-21 17:40:19 +00:00
|
|
|
|
|
1999-08-01 12:17:46 +00:00
|
|
|
|
(defun info-initialize ()
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Initialize `Info-directory-list', if that hasn't been done yet."
|
1999-08-01 12:17:46 +00:00
|
|
|
|
(unless Info-directory-list
|
2003-04-21 17:40:19 +00:00
|
|
|
|
(let ((path (getenv "INFOPATH")))
|
1999-08-01 12:17:46 +00:00
|
|
|
|
(setq Info-directory-list
|
2000-07-04 04:50:20 +00:00
|
|
|
|
(prune-directory-list
|
|
|
|
|
(if path
|
2003-04-21 17:40:19 +00:00
|
|
|
|
(if (string-match ":\\'" path)
|
|
|
|
|
(append (split-string (substring path 0 -1)
|
|
|
|
|
(regexp-quote path-separator))
|
|
|
|
|
(Info-default-dirs))
|
|
|
|
|
(split-string path (regexp-quote path-separator)))
|
|
|
|
|
(Info-default-dirs)))))))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
|
1998-06-13 06:00:00 +00:00
|
|
|
|
;;;###autoload
|
2005-12-23 21:52:00 +00:00
|
|
|
|
(defun info-other-window (&optional file-or-node)
|
1998-06-13 06:00:00 +00:00
|
|
|
|
"Like `info' but show the Info buffer in another window."
|
|
|
|
|
(interactive (if current-prefix-arg
|
|
|
|
|
(list (read-file-name "Info file name: " nil nil t))))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(let (same-window-buffer-names same-window-regexps)
|
2005-12-23 21:52:00 +00:00
|
|
|
|
(info file-or-node)))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
|
2009-11-11 05:49:09 +00:00
|
|
|
|
;;;###autoload (add-hook 'same-window-regexps (purecopy "\\*info\\*\\(\\|<[0-9]+>\\)"))
|
1995-03-11 04:37:47 +00:00
|
|
|
|
|
2009-11-11 05:49:09 +00:00
|
|
|
|
;;;###autoload (put 'info 'info-file (purecopy "emacs"))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;;;###autoload
|
2005-12-23 21:52:00 +00:00
|
|
|
|
(defun info (&optional file-or-node buffer)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Enter Info, the documentation browser.
|
2005-12-23 21:52:00 +00:00
|
|
|
|
Optional argument FILE-OR-NODE specifies the file to examine;
|
1991-07-13 07:49:50 +00:00
|
|
|
|
the default is the top-level directory of Info.
|
2005-12-23 21:52:00 +00:00
|
|
|
|
Called from a program, FILE-OR-NODE may specify an Info node of the form
|
1999-08-17 18:51:25 +00:00
|
|
|
|
`(FILENAME)NODENAME'.
|
2004-04-27 06:39:46 +00:00
|
|
|
|
Optional argument BUFFER specifies the Info buffer name;
|
|
|
|
|
the default buffer name is *info*. If BUFFER exists,
|
|
|
|
|
just switch to BUFFER. Otherwise, create a new buffer
|
|
|
|
|
with the top-level Info directory.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2004-04-27 06:39:46 +00:00
|
|
|
|
In interactive use, a non-numeric prefix argument directs
|
|
|
|
|
this command to read a file name from the minibuffer.
|
2004-06-12 05:54:43 +00:00
|
|
|
|
A numeric prefix argument selects an Info buffer with the prefix number
|
|
|
|
|
appended to the Info buffer name.
|
1996-02-09 19:12:10 +00:00
|
|
|
|
|
|
|
|
|
The search path for Info files is in the variable `Info-directory-list'.
|
2000-05-16 16:24:25 +00:00
|
|
|
|
The top-level Info directory is made by combining all the files named `dir'
|
2008-07-30 17:17:13 +00:00
|
|
|
|
in all the directories in that path.
|
|
|
|
|
|
|
|
|
|
See a list of available Info commands in `Info-mode'."
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(interactive (list
|
|
|
|
|
(if (and current-prefix-arg (not (numberp current-prefix-arg)))
|
|
|
|
|
(read-file-name "Info file name: " nil nil t))
|
|
|
|
|
(if (numberp current-prefix-arg)
|
|
|
|
|
(format "*info*<%s>" current-prefix-arg))))
|
|
|
|
|
(pop-to-buffer (or buffer "*info*"))
|
|
|
|
|
(if (and buffer (not (eq major-mode 'Info-mode)))
|
|
|
|
|
(Info-mode))
|
2005-12-23 21:52:00 +00:00
|
|
|
|
(if file-or-node
|
2004-04-14 18:39:52 +00:00
|
|
|
|
;; If argument already contains parentheses, don't add another set
|
|
|
|
|
;; since the argument will then be parsed improperly. This also
|
|
|
|
|
;; has the added benefit of allowing node names to be included
|
|
|
|
|
;; following the parenthesized filename.
|
2005-05-27 16:19:36 +00:00
|
|
|
|
(Info-goto-node
|
2005-12-23 21:52:00 +00:00
|
|
|
|
(if (and (stringp file-or-node) (string-match "(.*)" file-or-node))
|
|
|
|
|
file-or-node
|
|
|
|
|
(concat "(" file-or-node ")")))
|
2006-01-05 16:05:49 +00:00
|
|
|
|
(if (and (zerop (buffer-size))
|
|
|
|
|
(null Info-history))
|
|
|
|
|
;; If we just created the Info buffer, go to the directory.
|
|
|
|
|
(Info-directory))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2002-07-12 17:41:54 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun info-emacs-manual ()
|
2002-10-08 04:57:27 +00:00
|
|
|
|
"Display the Emacs manual in Info mode."
|
2002-07-12 17:41:54 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(info "emacs"))
|
|
|
|
|
|
1993-08-02 04:22:12 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun info-standalone ()
|
|
|
|
|
"Run Emacs as a standalone Info reader.
|
|
|
|
|
Usage: emacs -f info-standalone [filename]
|
|
|
|
|
In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
|
|
|
|
|
(setq Info-standalone t)
|
|
|
|
|
(if (and command-line-args-left
|
|
|
|
|
(not (string-match "^-" (car command-line-args-left))))
|
|
|
|
|
(condition-case err
|
|
|
|
|
(progn
|
|
|
|
|
(info (car command-line-args-left))
|
|
|
|
|
(setq command-line-args-left (cdr command-line-args-left)))
|
|
|
|
|
(error (send-string-to-terminal
|
|
|
|
|
(format "%s\n" (if (eq (car-safe err) 'error)
|
|
|
|
|
(nth 1 err) err)))
|
|
|
|
|
(save-buffers-kill-emacs)))
|
|
|
|
|
(info)))
|
1999-08-01 12:17:46 +00:00
|
|
|
|
|
2000-09-27 21:55:54 +00:00
|
|
|
|
;; See if the accessible portion of the buffer begins with a node
|
1998-12-21 11:18:29 +00:00
|
|
|
|
;; delimiter, and the node header line which follows matches REGEXP.
|
|
|
|
|
;; Typically, this test will be followed by a loop that examines the
|
|
|
|
|
;; rest of the buffer with (search-forward "\n\^_"), and it's a pity
|
|
|
|
|
;; to have the overhead of this special test inside the loop.
|
|
|
|
|
|
|
|
|
|
;; This function changes match-data, but supposedly the caller might
|
|
|
|
|
;; want to use the results of re-search-backward.
|
|
|
|
|
|
|
|
|
|
;; The return value is the value of point at the beginning of matching
|
2000-09-27 21:55:54 +00:00
|
|
|
|
;; REGEXP, if the function succeeds, nil otherwise.
|
1998-12-21 11:18:29 +00:00
|
|
|
|
(defun Info-node-at-bob-matching (regexp)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(and (bobp) ; are we at beginning of buffer?
|
|
|
|
|
(looking-at "\^_") ; does it begin with node delimiter?
|
1998-12-21 11:18:29 +00:00
|
|
|
|
(let (beg)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq beg (point))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(forward-line 1) ; does the line after delimiter match REGEXP?
|
1998-12-21 11:18:29 +00:00
|
|
|
|
(re-search-backward regexp beg t))))
|
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defun Info-find-file (filename &optional noerror)
|
|
|
|
|
"Return expanded FILENAME, or t, if FILENAME is \"dir\".
|
|
|
|
|
Optional second argument NOERROR, if t, means if file is not found
|
|
|
|
|
just return nil (no error)."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; Convert filename to lower case if not found as specified.
|
|
|
|
|
;; Expand it.
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(cond
|
|
|
|
|
((Info-virtual-call
|
|
|
|
|
(Info-virtual-fun 'find-file filename nil)
|
|
|
|
|
filename noerror))
|
|
|
|
|
((stringp filename)
|
|
|
|
|
(let (temp temp-downcase found)
|
|
|
|
|
(setq filename (substitute-in-file-name filename))
|
|
|
|
|
(let ((dirs (if (string-match "^\\./" filename)
|
|
|
|
|
;; If specified name starts with `./'
|
|
|
|
|
;; then just try current directory.
|
|
|
|
|
'("./")
|
|
|
|
|
(if (file-name-absolute-p filename)
|
|
|
|
|
;; No point in searching for an
|
|
|
|
|
;; absolute file name
|
|
|
|
|
'(nil)
|
|
|
|
|
(if Info-additional-directory-list
|
|
|
|
|
(append Info-directory-list
|
|
|
|
|
Info-additional-directory-list)
|
|
|
|
|
Info-directory-list)))))
|
|
|
|
|
;; Search the directory list for file FILENAME.
|
|
|
|
|
(while (and dirs (not found))
|
|
|
|
|
(setq temp (expand-file-name filename (car dirs)))
|
|
|
|
|
(setq temp-downcase
|
|
|
|
|
(expand-file-name (downcase filename) (car dirs)))
|
|
|
|
|
;; Try several variants of specified name.
|
|
|
|
|
(let ((suffix-list Info-suffix-list)
|
|
|
|
|
(lfn (if (fboundp 'msdos-long-file-names)
|
|
|
|
|
(msdos-long-file-names)
|
|
|
|
|
t)))
|
|
|
|
|
(while (and suffix-list (not found))
|
|
|
|
|
(cond ((info-file-exists-p
|
|
|
|
|
(info-insert-file-contents-1
|
|
|
|
|
temp (car (car suffix-list)) lfn))
|
|
|
|
|
(setq found temp))
|
|
|
|
|
((info-file-exists-p
|
|
|
|
|
(info-insert-file-contents-1
|
|
|
|
|
temp-downcase (car (car suffix-list)) lfn))
|
|
|
|
|
(setq found temp-downcase))
|
|
|
|
|
((and (fboundp 'msdos-long-file-names)
|
|
|
|
|
lfn
|
|
|
|
|
(info-file-exists-p
|
|
|
|
|
(info-insert-file-contents-1
|
|
|
|
|
temp (car (car suffix-list)) nil)))
|
|
|
|
|
(setq found temp)))
|
|
|
|
|
(setq suffix-list (cdr suffix-list))))
|
|
|
|
|
(setq dirs (cdr dirs))))
|
|
|
|
|
(if found
|
|
|
|
|
(setq filename found)
|
|
|
|
|
(if noerror
|
|
|
|
|
(setq filename nil)
|
|
|
|
|
(error "Info file %s does not exist" filename)))
|
|
|
|
|
filename))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-find-node (filename nodename &optional no-going-back)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Go to an Info node specified as separate FILENAME and NODENAME.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
NO-GOING-BACK is non-nil if recovering from an error in this function;
|
|
|
|
|
it says do not attempt further (recursive) error recovery."
|
|
|
|
|
(info-initialize)
|
|
|
|
|
(setq filename (Info-find-file filename))
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; Go into Info buffer.
|
2005-03-16 07:32:43 +00:00
|
|
|
|
(or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
|
2006-01-05 16:05:49 +00:00
|
|
|
|
;; Record the node we are leaving, if we were in one.
|
|
|
|
|
(and (not no-going-back)
|
|
|
|
|
Info-current-file
|
2008-06-14 01:59:21 +00:00
|
|
|
|
(push (list Info-current-file Info-current-node (point))
|
|
|
|
|
Info-history))
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(Info-find-node-2 filename nodename no-going-back))
|
|
|
|
|
|
2005-11-25 16:35:34 +00:00
|
|
|
|
;;;###autoload
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(defun Info-on-current-buffer (&optional nodename)
|
2005-12-12 05:15:53 +00:00
|
|
|
|
"Use Info mode to browse the current Info buffer.
|
|
|
|
|
With a prefix arg, this queries for the node name to visit first;
|
|
|
|
|
otherwise, that defaults to `Top'."
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (if current-prefix-arg
|
|
|
|
|
(completing-read "Node name: " (Info-build-node-completions)
|
2001-09-26 15:45:47 +00:00
|
|
|
|
nil t "Top"))))
|
|
|
|
|
(unless nodename (setq nodename "Top"))
|
2000-06-04 23:07:45 +00:00
|
|
|
|
(info-initialize)
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(Info-mode)
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(set (make-local-variable 'Info-current-file)
|
|
|
|
|
(or buffer-file-name
|
|
|
|
|
;; If called on a non-file buffer, make a fake file name.
|
|
|
|
|
(concat default-directory (buffer-name))))
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(Info-find-node-2 nil nodename))
|
|
|
|
|
|
2002-12-22 22:04:51 +00:00
|
|
|
|
;; It's perhaps a bit nasty to kill the *info* buffer to force a re-read,
|
2007-11-04 12:01:35 +00:00
|
|
|
|
;; but at least it keeps this routine (which is for makeinfo-buffer and
|
|
|
|
|
;; Info-revert-buffer-function) out of the way of normal operations.
|
2002-12-22 22:04:51 +00:00
|
|
|
|
;;
|
|
|
|
|
(defun Info-revert-find-node (filename nodename)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Go to an Info node FILENAME and NODENAME, re-reading disk contents.
|
2002-12-22 22:04:51 +00:00
|
|
|
|
When *info* is already displaying FILENAME and NODENAME, the window position
|
|
|
|
|
is preserved, if possible."
|
|
|
|
|
(pop-to-buffer "*info*")
|
|
|
|
|
(let ((old-filename Info-current-file)
|
|
|
|
|
(old-nodename Info-current-node)
|
|
|
|
|
(pcolumn (current-column))
|
|
|
|
|
(pline (count-lines (point-min) (line-beginning-position)))
|
|
|
|
|
(wline (count-lines (point-min) (window-start)))
|
|
|
|
|
(old-history Info-history)
|
2006-01-17 02:07:44 +00:00
|
|
|
|
(new-history (and Info-current-file
|
|
|
|
|
(list Info-current-file Info-current-node (point)))))
|
2002-12-22 22:04:51 +00:00
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
|
(Info-find-node filename nodename)
|
|
|
|
|
(setq Info-history old-history)
|
|
|
|
|
(if (and (equal old-filename Info-current-file)
|
|
|
|
|
(equal old-nodename Info-current-node))
|
|
|
|
|
(progn
|
|
|
|
|
;; note goto-line is no good, we want to measure from point-min
|
2004-11-08 16:43:00 +00:00
|
|
|
|
(goto-char (point-min))
|
2002-12-22 22:04:51 +00:00
|
|
|
|
(forward-line wline)
|
|
|
|
|
(set-window-start (selected-window) (point))
|
2004-11-08 16:43:00 +00:00
|
|
|
|
(goto-char (point-min))
|
2002-12-22 22:04:51 +00:00
|
|
|
|
(forward-line pline)
|
|
|
|
|
(move-to-column pcolumn))
|
|
|
|
|
;; only add to the history when coming from a different file+node
|
|
|
|
|
(if new-history
|
|
|
|
|
(setq Info-history (cons new-history Info-history))))))
|
|
|
|
|
|
2007-11-04 12:01:35 +00:00
|
|
|
|
(defun Info-revert-buffer-function (ignore-auto noconfirm)
|
|
|
|
|
(when (or noconfirm (y-or-n-p "Revert info buffer? "))
|
|
|
|
|
(Info-revert-find-node Info-current-file Info-current-node)
|
|
|
|
|
(message "Reverted %s" Info-current-file)))
|
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(defun Info-find-in-tag-table-1 (marker regexp case-fold)
|
|
|
|
|
"Find a node in a tag table.
|
|
|
|
|
MARKER specifies the buffer and position to start searching at.
|
|
|
|
|
REGEXP is a regular expression matching nodes or references. Its first
|
|
|
|
|
group should match `Node:' or `Ref:'.
|
|
|
|
|
CASE-FOLD t means search for a case-insensitive match.
|
|
|
|
|
If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
|
|
|
|
|
FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
|
|
|
|
|
where the match was found, and MODE is `major-mode' of the buffer in
|
|
|
|
|
which the match was found."
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(let ((case-fold-search case-fold))
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(with-current-buffer (marker-buffer marker)
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(goto-char marker)
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
;; Search tag table
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(when (re-search-forward regexp nil t)
|
|
|
|
|
(list (string-equal "Ref:" (match-string 1))
|
2002-04-30 02:08:56 +00:00
|
|
|
|
(+ (point-min) (read (current-buffer)))
|
2000-06-15 19:49:11 +00:00
|
|
|
|
major-mode)))))
|
|
|
|
|
|
|
|
|
|
(defun Info-find-in-tag-table (marker regexp)
|
|
|
|
|
"Find a node in a tag table.
|
|
|
|
|
MARKER specifies the buffer and position to start searching at.
|
|
|
|
|
REGEXP is a regular expression matching nodes or references. Its first
|
|
|
|
|
group should match `Node:' or `Ref:'.
|
|
|
|
|
If a match was found, value is a list (FOUND-ANCHOR POS MODE), where
|
|
|
|
|
FOUND-ANCHOR is non-nil if a `Ref:' was matched, POS is the position
|
|
|
|
|
where the match was found, and MODE is `major-mode' of the buffer in
|
|
|
|
|
which the match was found.
|
|
|
|
|
This function tries to find a case-sensitive match first, then a
|
|
|
|
|
case-insensitive match is tried."
|
|
|
|
|
(let ((result (Info-find-in-tag-table-1 marker regexp nil)))
|
|
|
|
|
(when (null (car result))
|
|
|
|
|
(setq result (Info-find-in-tag-table-1 marker regexp t)))
|
|
|
|
|
result))
|
|
|
|
|
|
|
|
|
|
(defun Info-find-node-in-buffer-1 (regexp case-fold)
|
|
|
|
|
"Find a node or anchor in the current buffer.
|
|
|
|
|
REGEXP is a regular expression matching nodes or references. Its first
|
|
|
|
|
group should match `Node:' or `Ref:'.
|
|
|
|
|
CASE-FOLD t means search for a case-insensitive match.
|
|
|
|
|
Value is the position at which a match was found, or nil if not found."
|
|
|
|
|
(let ((case-fold-search case-fold)
|
|
|
|
|
found)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(when (Info-node-at-bob-matching regexp)
|
|
|
|
|
(setq found (point)))
|
|
|
|
|
(while (and (not found)
|
|
|
|
|
(search-forward "\n\^_" nil t))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(let ((beg (point)))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(when (re-search-backward regexp beg t)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq found (point)))))
|
|
|
|
|
found)))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(defun Info-find-node-in-buffer (regexp)
|
|
|
|
|
"Find a node or anchor in the current buffer.
|
|
|
|
|
REGEXP is a regular expression matching nodes or references. Its first
|
|
|
|
|
group should match `Node:' or `Ref:'.
|
|
|
|
|
Value is the position at which a match was found, or nil if not found.
|
|
|
|
|
This function looks for a case-sensitive match first. If none is found,
|
|
|
|
|
a case-insensitive match is tried."
|
|
|
|
|
(or (Info-find-node-in-buffer-1 regexp nil)
|
|
|
|
|
(Info-find-node-in-buffer-1 regexp t)))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(defun Info-find-node-2 (filename nodename &optional no-going-back)
|
1992-10-27 10:14:08 +00:00
|
|
|
|
(buffer-disable-undo (current-buffer))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(or (eq major-mode 'Info-mode)
|
|
|
|
|
(Info-mode))
|
|
|
|
|
(widen)
|
|
|
|
|
(setq Info-current-node nil)
|
|
|
|
|
(unwind-protect
|
1999-04-26 05:58:59 +00:00
|
|
|
|
(let ((case-fold-search t)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(virtual-fun (Info-virtual-fun 'find-node
|
|
|
|
|
(or filename Info-current-file)
|
|
|
|
|
nodename))
|
1999-04-26 05:58:59 +00:00
|
|
|
|
anchorpos)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(cond
|
|
|
|
|
((functionp virtual-fun)
|
|
|
|
|
(let ((filename (or filename Info-current-file)))
|
|
|
|
|
(setq buffer-read-only nil)
|
2009-12-05 19:49:47 +00:00
|
|
|
|
(setq Info-current-file filename
|
|
|
|
|
Info-current-subfile nil
|
|
|
|
|
Info-current-file-completions nil
|
|
|
|
|
buffer-file-name nil)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(Info-virtual-call virtual-fun filename nodename no-going-back)
|
|
|
|
|
(set-marker Info-tag-table-marker nil)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(set (make-local-variable 'Info-current-node-virtual) t)))
|
|
|
|
|
((not (and
|
|
|
|
|
;; Reread a file when moving from a virtual node.
|
|
|
|
|
(not Info-current-node-virtual)
|
|
|
|
|
(or (null filename)
|
|
|
|
|
(equal Info-current-file filename))))
|
|
|
|
|
;; Switch files if necessary
|
|
|
|
|
(let ((inhibit-read-only t))
|
2009-12-05 19:49:47 +00:00
|
|
|
|
(when Info-current-node-virtual
|
|
|
|
|
;; When moving from a virtual node.
|
|
|
|
|
(set (make-local-variable 'Info-current-node-virtual) nil)
|
|
|
|
|
(if (null filename)
|
|
|
|
|
(setq filename Info-current-file)))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(setq Info-current-file nil
|
|
|
|
|
Info-current-subfile nil
|
|
|
|
|
Info-current-file-completions nil
|
|
|
|
|
buffer-file-name nil)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(info-insert-file-contents filename nil)
|
|
|
|
|
(setq default-directory (file-name-directory filename))
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(set (make-local-variable 'Info-file-supports-index-cookies)
|
|
|
|
|
(Info-file-supports-index-cookies filename))
|
|
|
|
|
|
|
|
|
|
;; See whether file has a tag table. Record the location if yes.
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(forward-line -8)
|
|
|
|
|
;; Use string-equal, not equal, to ignore text props.
|
|
|
|
|
(if (not (or (string-equal nodename "*")
|
|
|
|
|
(not
|
|
|
|
|
(search-forward "\^_\nEnd tag table\n" nil t))))
|
|
|
|
|
(let (pos)
|
|
|
|
|
;; We have a tag table. Find its beginning.
|
|
|
|
|
;; Is this an indirect file?
|
|
|
|
|
(search-backward "\nTag table:\n")
|
|
|
|
|
(setq pos (point))
|
|
|
|
|
(if (save-excursion
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(looking-at "(Indirect)\n"))
|
|
|
|
|
;; It is indirect. Copy it to another buffer
|
|
|
|
|
;; and record that the tag table is in that buffer.
|
|
|
|
|
(let ((buf (current-buffer))
|
|
|
|
|
(tagbuf
|
|
|
|
|
(or Info-tag-table-buffer
|
|
|
|
|
(generate-new-buffer " *info tag table*"))))
|
|
|
|
|
(setq Info-tag-table-buffer tagbuf)
|
|
|
|
|
(with-current-buffer tagbuf
|
|
|
|
|
(buffer-disable-undo (current-buffer))
|
|
|
|
|
(setq case-fold-search t)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-buffer-substring buf))
|
|
|
|
|
(set-marker Info-tag-table-marker
|
|
|
|
|
(match-end 0) tagbuf))
|
|
|
|
|
(set-marker Info-tag-table-marker pos)))
|
|
|
|
|
(set-marker Info-tag-table-marker nil))
|
|
|
|
|
(setq Info-current-file filename)
|
|
|
|
|
)))
|
|
|
|
|
|
1998-07-05 23:57:45 +00:00
|
|
|
|
;; Use string-equal, not equal, to ignore text props.
|
|
|
|
|
(if (string-equal nodename "*")
|
|
|
|
|
(progn (setq Info-current-node nodename)
|
|
|
|
|
(Info-set-mode-line))
|
|
|
|
|
;; Possibilities:
|
|
|
|
|
;;
|
|
|
|
|
;; 1. Anchor found in tag table
|
|
|
|
|
;; 2. Anchor *not* in tag table
|
|
|
|
|
;;
|
|
|
|
|
;; 3. Node found in tag table
|
|
|
|
|
;; 4. Node *not* found in tag table, but found in file
|
|
|
|
|
;; 5. Node *not* in tag table, and *not* in file
|
|
|
|
|
;;
|
|
|
|
|
;; *Or* the same, but in an indirect subfile.
|
|
|
|
|
|
|
|
|
|
;; Search file for a suitable node.
|
1999-04-26 05:58:59 +00:00
|
|
|
|
(let ((guesspos (point-min))
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(regexp (concat "\\(Node:\\|Ref:\\) *\\("
|
2001-07-02 19:20:25 +00:00
|
|
|
|
(if (stringp nodename)
|
2000-08-08 18:29:49 +00:00
|
|
|
|
(regexp-quote nodename)
|
|
|
|
|
"")
|
2003-06-03 19:54:42 +00:00
|
|
|
|
"\\) *[,\t\n\177]")))
|
1998-07-05 23:57:45 +00:00
|
|
|
|
|
2000-05-24 17:19:51 +00:00
|
|
|
|
(catch 'foo
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-05-24 17:19:51 +00:00
|
|
|
|
;; First, search a tag table, if any
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(when (marker-position Info-tag-table-marker)
|
|
|
|
|
(let* ((m Info-tag-table-marker)
|
|
|
|
|
(found (Info-find-in-tag-table m regexp)))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(when found
|
|
|
|
|
;; FOUND is (ANCHOR POS MODE).
|
|
|
|
|
(setq guesspos (nth 1 found))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
;; If this is an indirect file, determine which
|
|
|
|
|
;; file really holds this node and read it in.
|
|
|
|
|
(unless (eq (nth 2 found) 'Info-mode)
|
|
|
|
|
;; Note that the current buffer must be the
|
|
|
|
|
;; *info* buffer on entry to
|
|
|
|
|
;; Info-read-subfile. Thus the hackery above.
|
|
|
|
|
(setq guesspos (Info-read-subfile guesspos)))
|
2000-05-24 17:19:51 +00:00
|
|
|
|
|
|
|
|
|
;; Handle anchor
|
2000-06-15 19:49:11 +00:00
|
|
|
|
(when (nth 0 found)
|
|
|
|
|
(goto-char (setq anchorpos guesspos))
|
|
|
|
|
(throw 'foo t)))))
|
2000-05-24 17:19:51 +00:00
|
|
|
|
|
|
|
|
|
;; Else we may have a node, which we search for:
|
|
|
|
|
(goto-char (max (point-min)
|
|
|
|
|
(- (byte-to-position guesspos) 1000)))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2000-06-15 19:49:11 +00:00
|
|
|
|
;; Now search from our advised position (or from beg of
|
|
|
|
|
;; buffer) to find the actual node. First, check
|
|
|
|
|
;; whether the node is right where we are, in case the
|
|
|
|
|
;; buffer begins with a node.
|
|
|
|
|
(let ((pos (Info-find-node-in-buffer regexp)))
|
|
|
|
|
(when pos
|
|
|
|
|
(goto-char pos)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(throw 'foo t)))
|
|
|
|
|
|
|
|
|
|
(when (string-match "\\([^.]+\\)\\." nodename)
|
|
|
|
|
(let (Info-point-loc)
|
|
|
|
|
(Info-find-node-2
|
|
|
|
|
filename (match-string 1 nodename) no-going-back))
|
|
|
|
|
(widen)
|
|
|
|
|
(throw 'foo t))
|
|
|
|
|
|
|
|
|
|
;; No such anchor in tag table or node in tag table or file
|
|
|
|
|
(error "No such node or anchor: %s" nodename))
|
2000-05-24 17:19:51 +00:00
|
|
|
|
|
|
|
|
|
(Info-select-node)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(goto-char (point-min))
|
2008-10-18 23:05:11 +00:00
|
|
|
|
(forward-line 1) ; skip header line
|
2010-04-05 22:15:04 +00:00
|
|
|
|
;; (when (> Info-breadcrumbs-depth 0) ; skip breadcrumbs line
|
|
|
|
|
;; (forward-line 1))
|
2008-10-18 23:05:11 +00:00
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(cond (anchorpos
|
|
|
|
|
(let ((new-history (list Info-current-file
|
|
|
|
|
(substring-no-properties nodename))))
|
|
|
|
|
;; Add anchors to the history too
|
|
|
|
|
(setq Info-history-list
|
|
|
|
|
(cons new-history
|
|
|
|
|
(delete new-history Info-history-list))))
|
|
|
|
|
(goto-char anchorpos))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
((numberp Info-point-loc)
|
2008-12-23 21:03:09 +00:00
|
|
|
|
(forward-line (- Info-point-loc 2))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(setq Info-point-loc nil))
|
|
|
|
|
((stringp Info-point-loc)
|
|
|
|
|
(Info-find-index-name Info-point-loc)
|
|
|
|
|
(setq Info-point-loc nil))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; If we did not finish finding the specified node,
|
|
|
|
|
;; go back to the previous one.
|
1994-04-07 03:11:50 +00:00
|
|
|
|
(or Info-current-node no-going-back (null Info-history)
|
1998-07-05 23:57:45 +00:00
|
|
|
|
(let ((hist (car Info-history)))
|
|
|
|
|
(setq Info-history (cdr Info-history))
|
|
|
|
|
(Info-find-node (nth 0 hist) (nth 1 hist) t)
|
|
|
|
|
(goto-char (nth 2 hist))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1993-03-02 07:27:17 +00:00
|
|
|
|
;; Cache the contents of the (virtual) dir file, once we have merged
|
|
|
|
|
;; it for the first time, so we can save time subsequently.
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(defvar Info-dir-contents nil)
|
|
|
|
|
|
1993-03-02 07:27:17 +00:00
|
|
|
|
;; Cache for the directory we decided to use for the default-directory
|
|
|
|
|
;; of the merged dir text.
|
|
|
|
|
(defvar Info-dir-contents-directory nil)
|
|
|
|
|
|
1993-06-19 20:18:05 +00:00
|
|
|
|
;; Record the file attributes of all the files from which we
|
|
|
|
|
;; constructed Info-dir-contents.
|
|
|
|
|
(defvar Info-dir-file-attributes nil)
|
|
|
|
|
|
1998-10-11 22:44:46 +00:00
|
|
|
|
(defvar Info-dir-file-name nil)
|
|
|
|
|
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; Construct the Info directory node by merging the files named `dir'
|
1993-03-02 07:27:17 +00:00
|
|
|
|
;; from various directories. Set the *info* buffer's
|
|
|
|
|
;; default-directory to the first directory we actually get any text
|
|
|
|
|
;; from.
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(defun Info-insert-dir ()
|
1993-06-19 20:18:05 +00:00
|
|
|
|
(if (and Info-dir-contents Info-dir-file-attributes
|
|
|
|
|
;; Verify that none of the files we used has changed
|
|
|
|
|
;; since we used it.
|
|
|
|
|
(eval (cons 'and
|
2000-06-12 05:16:04 +00:00
|
|
|
|
(mapcar (lambda (elt)
|
|
|
|
|
(let ((curr (file-attributes
|
|
|
|
|
;; Handle symlinks
|
|
|
|
|
(file-truename (car elt)))))
|
|
|
|
|
|
|
|
|
|
;; Don't compare the access time.
|
|
|
|
|
(if curr (setcar (nthcdr 4 curr) 0))
|
|
|
|
|
(setcar (nthcdr 4 (cdr elt)) 0)
|
|
|
|
|
(equal (cdr elt) curr)))
|
1993-06-19 20:18:05 +00:00
|
|
|
|
Info-dir-file-attributes))))
|
1998-10-11 22:44:46 +00:00
|
|
|
|
(progn
|
|
|
|
|
(insert Info-dir-contents)
|
|
|
|
|
(goto-char (point-min)))
|
2000-08-08 18:29:49 +00:00
|
|
|
|
(let ((dirs (if Info-additional-directory-list
|
2002-07-02 19:01:59 +00:00
|
|
|
|
(append Info-directory-list
|
|
|
|
|
Info-additional-directory-list)
|
|
|
|
|
Info-directory-list))
|
2002-12-06 09:10:19 +00:00
|
|
|
|
(dir-file-attrs nil)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
;; Bind this in case the user sets it to nil.
|
|
|
|
|
(case-fold-search t)
|
1998-10-11 22:44:46 +00:00
|
|
|
|
;; This is set non-nil if we find a problem in some input files.
|
|
|
|
|
problems
|
1993-05-28 18:35:23 +00:00
|
|
|
|
buffers buffer others nodes dirs-done)
|
1993-03-02 07:27:17 +00:00
|
|
|
|
|
|
|
|
|
;; Search the directory list for the directory file.
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(while dirs
|
1993-12-23 03:20:32 +00:00
|
|
|
|
(let ((truename (file-truename (expand-file-name (car dirs)))))
|
|
|
|
|
(or (member truename dirs-done)
|
|
|
|
|
(member (directory-file-name truename) dirs-done)
|
|
|
|
|
;; Try several variants of specified name.
|
|
|
|
|
;; Try upcasing, appending `.info', or both.
|
1994-06-15 18:13:52 +00:00
|
|
|
|
(let* (file
|
|
|
|
|
(attrs
|
|
|
|
|
(or
|
|
|
|
|
(progn (setq file (expand-file-name "dir" truename))
|
|
|
|
|
(file-attributes file))
|
|
|
|
|
(progn (setq file (expand-file-name "DIR" truename))
|
|
|
|
|
(file-attributes file))
|
|
|
|
|
(progn (setq file (expand-file-name "dir.info" truename))
|
|
|
|
|
(file-attributes file))
|
|
|
|
|
(progn (setq file (expand-file-name "DIR.INFO" truename))
|
|
|
|
|
(file-attributes file)))))
|
1993-12-23 03:20:32 +00:00
|
|
|
|
(setq dirs-done
|
|
|
|
|
(cons truename
|
|
|
|
|
(cons (directory-file-name truename)
|
|
|
|
|
dirs-done)))
|
1994-06-15 18:13:52 +00:00
|
|
|
|
(if attrs
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(with-current-buffer (generate-new-buffer " info dir")
|
1994-06-15 18:13:52 +00:00
|
|
|
|
(or buffers
|
|
|
|
|
(message "Composing main Info directory..."))
|
1998-08-01 19:03:50 +00:00
|
|
|
|
(condition-case nil
|
2009-01-10 10:43:11 +00:00
|
|
|
|
;; Index nodes include null bytes. DIR
|
|
|
|
|
;; files should not have indices, but who
|
|
|
|
|
;; knows...
|
|
|
|
|
(let ((inhibit-null-byte-detection t))
|
1998-08-01 19:03:50 +00:00
|
|
|
|
(insert-file-contents file)
|
2002-12-06 09:10:19 +00:00
|
|
|
|
(set (make-local-variable 'Info-dir-file-name)
|
|
|
|
|
file)
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(push (current-buffer) buffers)
|
2002-12-06 09:10:19 +00:00
|
|
|
|
(push (cons file attrs) dir-file-attrs))
|
1998-08-01 19:03:50 +00:00
|
|
|
|
(error (kill-buffer (current-buffer))))))))
|
2002-12-06 09:10:19 +00:00
|
|
|
|
(unless (cdr dirs)
|
|
|
|
|
(set (make-local-variable 'Info-dir-contents-directory)
|
|
|
|
|
(file-name-as-directory (car dirs))))
|
1994-06-15 18:13:52 +00:00
|
|
|
|
(setq dirs (cdr dirs))))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
|
1994-04-07 03:11:50 +00:00
|
|
|
|
(or buffers
|
1996-02-25 18:31:16 +00:00
|
|
|
|
(error "Can't find the Info directory node"))
|
2002-12-06 09:10:19 +00:00
|
|
|
|
|
1993-03-02 07:27:17 +00:00
|
|
|
|
;; Distinguish the dir file that comes with Emacs from all the
|
1993-05-28 18:35:23 +00:00
|
|
|
|
;; others. Yes, that is really what this is supposed to do.
|
1999-03-24 14:25:58 +00:00
|
|
|
|
;; The definition of `Info-directory-list' puts it first on that
|
|
|
|
|
;; list and so last in `buffers' at this point.
|
|
|
|
|
(setq buffer (car (last buffers))
|
|
|
|
|
others (delq buffer buffers))
|
1993-03-02 07:27:17 +00:00
|
|
|
|
|
1996-05-30 19:46:24 +00:00
|
|
|
|
;; Insert the entire original dir file as a start; note that we've
|
|
|
|
|
;; already saved its default directory to use as the default
|
|
|
|
|
;; directory for the whole concatenation.
|
2005-08-22 19:53:46 +00:00
|
|
|
|
(save-excursion (insert-buffer-substring buffer))
|
1993-03-02 07:27:17 +00:00
|
|
|
|
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; Look at each of the other buffers one by one.
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(dolist (other others)
|
|
|
|
|
(let (this-buffer-nodes)
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; In each, find all the menus.
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(with-current-buffer other
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Find each menu, and add an elt to NODES for it.
|
|
|
|
|
(while (re-search-forward "^\\* Menu:" nil t)
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(while (and (zerop (forward-line 1)) (eolp)))
|
|
|
|
|
(let ((beg (point))
|
|
|
|
|
nodename end)
|
|
|
|
|
(re-search-backward "^\^_")
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(search-forward "Node: ")
|
2004-04-21 22:23:25 +00:00
|
|
|
|
(setq nodename (Info-following-node-name))
|
1994-03-14 21:27:13 +00:00
|
|
|
|
(search-forward "\n\^_" nil 'move)
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq end (point))
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(push (list nodename other beg end) this-buffer-nodes)))
|
2003-12-29 19:18:53 +00:00
|
|
|
|
(if (assoc-string "top" this-buffer-nodes t)
|
1998-10-11 22:44:46 +00:00
|
|
|
|
(setq nodes (nconc this-buffer-nodes nodes))
|
|
|
|
|
(setq problems t)
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(message "No `top' node in %s" Info-dir-file-name)))))
|
2000-06-13 14:46:08 +00:00
|
|
|
|
;; Add to the main menu a menu item for each other node.
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(re-search-forward "^\\* Menu:")
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(forward-line 1)
|
|
|
|
|
(let ((menu-items '("top"))
|
1994-03-14 21:27:13 +00:00
|
|
|
|
(end (save-excursion (search-forward "\^_" nil t) (point))))
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(dolist (node nodes)
|
|
|
|
|
(let ((nodename (car node)))
|
1994-03-26 05:24:17 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(or (member (downcase nodename) menu-items)
|
1998-04-18 01:57:45 +00:00
|
|
|
|
(re-search-forward (concat "^\\* +"
|
1994-03-26 05:24:17 +00:00
|
|
|
|
(regexp-quote nodename)
|
|
|
|
|
"::")
|
|
|
|
|
end t)
|
|
|
|
|
(progn
|
|
|
|
|
(insert "* " nodename "::" "\n")
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(push nodename menu-items)))))))
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; Now take each node of each of the other buffers
|
|
|
|
|
;; and merge it into the main buffer.
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(dolist (node nodes)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let ((case-fold-search t)
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(nodename (car node)))
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Find the like-named node in the main buffer.
|
1998-12-16 14:01:45 +00:00
|
|
|
|
(if (re-search-forward (concat "^\^_.*\n.*Node: "
|
1993-03-01 09:25:44 +00:00
|
|
|
|
(regexp-quote nodename)
|
|
|
|
|
"[,\n\t]")
|
|
|
|
|
nil t)
|
|
|
|
|
(progn
|
1994-03-14 21:27:13 +00:00
|
|
|
|
(search-forward "\n\^_" nil 'move)
|
1994-09-19 05:11:40 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(insert "\n"))
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; If none exists, add one.
|
|
|
|
|
(goto-char (point-max))
|
1994-06-27 20:54:14 +00:00
|
|
|
|
(insert "\^_\nFile: dir\tNode: " nodename "\n\n* Menu:\n\n"))
|
1993-03-01 09:25:44 +00:00
|
|
|
|
;; Merge the text from the other buffer's menu
|
|
|
|
|
;; into the menu in the like-named node in the main buffer.
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(apply 'insert-buffer-substring (cdr node))))
|
|
|
|
|
(Info-dir-remove-duplicates)
|
2004-09-08 10:28:17 +00:00
|
|
|
|
;; Kill all the buffers we just made, including the special one excised.
|
|
|
|
|
(mapc 'kill-buffer (cons buffer buffers))
|
1998-10-11 22:44:46 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if problems
|
|
|
|
|
(message "Composing main Info directory...problems encountered, see `*Messages*'")
|
2002-12-06 09:10:19 +00:00
|
|
|
|
(message "Composing main Info directory...done"))
|
|
|
|
|
(set (make-local-variable 'Info-dir-contents) (buffer-string))
|
|
|
|
|
(set (make-local-variable 'Info-dir-file-attributes) dir-file-attrs)))
|
1993-03-02 07:27:17 +00:00
|
|
|
|
(setq default-directory Info-dir-contents-directory))
|
1993-03-01 09:25:44 +00:00
|
|
|
|
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(defvar Info-streamline-headings
|
|
|
|
|
'(("Emacs" . "Emacs")
|
|
|
|
|
("Programming" . "Programming")
|
|
|
|
|
("Libraries" . "Libraries")
|
|
|
|
|
("World Wide Web\\|Net Utilities" . "Net Utilities"))
|
|
|
|
|
"List of elements (RE . NAME) to merge headings matching RE to NAME.")
|
|
|
|
|
|
|
|
|
|
(defun Info-dir-remove-duplicates ()
|
|
|
|
|
(let (limit)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Remove duplicate headings in the same menu.
|
|
|
|
|
(while (search-forward "\n* Menu:" nil t)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(setq limit (save-excursion (search-forward "\n\^_" nil t)))
|
2002-11-03 12:01:33 +00:00
|
|
|
|
;; Look for the next heading to unify.
|
|
|
|
|
(while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t)
|
|
|
|
|
(let ((name (match-string 1))
|
|
|
|
|
(start (match-beginning 0))
|
|
|
|
|
(entries nil) re)
|
|
|
|
|
;; Check whether this heading should be streamlined.
|
|
|
|
|
(save-match-data
|
|
|
|
|
(dolist (x Info-streamline-headings)
|
|
|
|
|
(when (string-match (car x) name)
|
|
|
|
|
(setq name (cdr x))
|
|
|
|
|
(setq re (car x)))))
|
|
|
|
|
(if re (replace-match name t t nil 1))
|
|
|
|
|
(goto-char (if (re-search-forward "^[^* \n\t]" limit t)
|
|
|
|
|
(match-beginning 0)
|
|
|
|
|
(or limit (point-max))))
|
|
|
|
|
;; Look for other headings of the same category and merge them.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-forward "^\\(\\w.*\\)\n\\*" limit t)
|
|
|
|
|
(when (if re (save-match-data (string-match re (match-string 1)))
|
|
|
|
|
(equal name (match-string 1)))
|
|
|
|
|
(forward-line 0)
|
|
|
|
|
;; Delete redundant heading.
|
|
|
|
|
(delete-region (match-beginning 0) (point))
|
|
|
|
|
;; Push the entries onto `text'.
|
|
|
|
|
(push
|
|
|
|
|
(delete-and-extract-region
|
|
|
|
|
(point)
|
|
|
|
|
(if (re-search-forward "^[^* \n\t]" nil t)
|
|
|
|
|
(match-beginning 0)
|
2006-03-11 22:35:51 +00:00
|
|
|
|
(or limit (point-max))))
|
|
|
|
|
entries)
|
|
|
|
|
(forward-line 0))))
|
2002-11-03 12:01:33 +00:00
|
|
|
|
;; Insert the entries just found.
|
|
|
|
|
(while (= (line-beginning-position 0) (1- (point)))
|
|
|
|
|
(backward-char))
|
|
|
|
|
(dolist (entry (nreverse entries))
|
|
|
|
|
(insert entry)
|
|
|
|
|
(while (= (line-beginning-position 0) (1- (point)))
|
|
|
|
|
(delete-region (1- (point)) (point))))
|
2003-01-25 00:53:58 +00:00
|
|
|
|
|
2002-11-03 12:01:33 +00:00
|
|
|
|
;; Now remove duplicate entries under the same heading.
|
2008-09-04 08:17:57 +00:00
|
|
|
|
(let (seen)
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region start (point))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^* \\([^:\n]+:\\(:\\|[^.\n]+\\).\\)" nil 'move)
|
|
|
|
|
;; Fold case straight away; `member-ignore-case' here wasteful.
|
|
|
|
|
(let ((x (downcase (match-string 1))))
|
|
|
|
|
(if (member x seen)
|
|
|
|
|
(delete-region
|
|
|
|
|
(match-beginning 0)
|
|
|
|
|
(if (re-search-forward "^[^ \t]" nil 'move)
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(point-max)))
|
|
|
|
|
(push x seen)))))))))))
|
2002-11-03 12:01:33 +00:00
|
|
|
|
|
1997-02-08 18:34:21 +00:00
|
|
|
|
;; Note that on entry to this function the current-buffer must be the
|
|
|
|
|
;; *info* buffer; not the info tags buffer.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-read-subfile (nodepos)
|
1996-10-06 22:50:07 +00:00
|
|
|
|
;; NODEPOS is either a position (in the Info file as a whole,
|
|
|
|
|
;; not relative to a subfile) or the name of a subfile.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(let (lastfilepos
|
|
|
|
|
lastfilename)
|
1996-10-06 22:50:07 +00:00
|
|
|
|
(if (numberp nodepos)
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(with-current-buffer (marker-buffer Info-tag-table-marker)
|
1996-10-06 22:50:07 +00:00
|
|
|
|
(goto-char (point-min))
|
1998-12-16 14:01:45 +00:00
|
|
|
|
(or (looking-at "\^_")
|
|
|
|
|
(search-forward "\n\^_"))
|
1996-10-06 22:50:07 +00:00
|
|
|
|
(forward-line 2)
|
|
|
|
|
(catch 'foo
|
|
|
|
|
(while (not (looking-at "\^_"))
|
|
|
|
|
(if (not (eolp))
|
|
|
|
|
(let ((beg (point))
|
|
|
|
|
thisfilepos thisfilename)
|
|
|
|
|
(search-forward ": ")
|
|
|
|
|
(setq thisfilename (buffer-substring beg (- (point) 2)))
|
2002-04-30 02:08:56 +00:00
|
|
|
|
(setq thisfilepos (+ (point-min) (read (current-buffer))))
|
1996-10-06 22:50:07 +00:00
|
|
|
|
;; read in version 19 stops at the end of number.
|
|
|
|
|
;; Advance to the next line.
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(if (> thisfilepos nodepos)
|
|
|
|
|
(throw 'foo t))
|
|
|
|
|
(setq lastfilename thisfilename)
|
|
|
|
|
(setq lastfilepos thisfilepos))
|
|
|
|
|
(forward-line 1)))))
|
|
|
|
|
(setq lastfilename nodepos)
|
|
|
|
|
(setq lastfilepos 0))
|
1997-02-08 18:34:21 +00:00
|
|
|
|
;; Assume previous buffer is in Info-mode.
|
|
|
|
|
;; (set-buffer (get-buffer "*info*"))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(or (equal Info-current-subfile lastfilename)
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(setq buffer-file-name nil)
|
|
|
|
|
(widen)
|
|
|
|
|
(erase-buffer)
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(info-insert-file-contents lastfilename)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(setq Info-current-subfile lastfilename)))
|
2001-05-20 17:03:12 +00:00
|
|
|
|
;; Widen in case we are in the same subfile as before.
|
|
|
|
|
(widen)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(goto-char (point-min))
|
1998-12-16 14:01:45 +00:00
|
|
|
|
(if (looking-at "\^_")
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(search-forward "\n\^_"))
|
1996-10-06 22:50:07 +00:00
|
|
|
|
(if (numberp nodepos)
|
|
|
|
|
(+ (- nodepos lastfilepos) (point)))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(defun Info-unescape-quotes (value)
|
2003-12-23 20:25:22 +00:00
|
|
|
|
"Unescape double quotes and backslashes in VALUE."
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(let ((start 0)
|
|
|
|
|
(unquote value))
|
|
|
|
|
(while (string-match "[^\\\"]*\\(\\\\\\)[\\\\\"]" unquote start)
|
|
|
|
|
(setq unquote (replace-match "" t t unquote 1))
|
|
|
|
|
(setq start (- (match-end 0) 1)))
|
|
|
|
|
unquote))
|
|
|
|
|
|
|
|
|
|
;; As of Texinfo 4.6, makeinfo writes constructs like
|
|
|
|
|
;; \0\h[image param=value ...\h\0]
|
|
|
|
|
;; into the Info file for handling images.
|
|
|
|
|
(defun Info-split-parameter-string (parameter-string)
|
|
|
|
|
"Return alist of (\"KEY\" . \"VALUE\") from PARAMETER-STRING; a
|
2003-12-23 20:25:22 +00:00
|
|
|
|
whitespace separated list of KEY=VALUE pairs. If VALUE contains
|
|
|
|
|
whitespace or double quotes, it must be quoted in double quotes and
|
|
|
|
|
any double quotes or backslashes must be escaped (\\\",\\\\)."
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(let ((start 0)
|
|
|
|
|
(parameter-alist))
|
|
|
|
|
(while (string-match
|
|
|
|
|
"\\s *\\([^=]+\\)=\\(?:\\([^\\s \"]+\\)\\|\\(?:\"\\(\\(?:[^\\\"]\\|\\\\[\\\\\"]\\)*\\)\"\\)\\)"
|
|
|
|
|
parameter-string start)
|
|
|
|
|
(setq start (match-end 0))
|
|
|
|
|
(push (cons (match-string 1 parameter-string)
|
|
|
|
|
(or (match-string 2 parameter-string)
|
|
|
|
|
(Info-unescape-quotes
|
|
|
|
|
(match-string 3 parameter-string))))
|
|
|
|
|
parameter-alist))
|
|
|
|
|
parameter-alist))
|
|
|
|
|
|
|
|
|
|
(defun Info-display-images-node ()
|
|
|
|
|
"Display images in current node."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((inhibit-read-only t)
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(case-fold-search t))
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"\\(\0\b[[]image\\(\\(?:[^\b]\\|[^\0]+\b\\)*\\)\0\b[]]\\)"
|
|
|
|
|
nil t)
|
|
|
|
|
(let* ((start (match-beginning 1))
|
|
|
|
|
(parameter-alist (Info-split-parameter-string (match-string 2)))
|
2007-03-27 22:21:02 +00:00
|
|
|
|
(src (cdr (assoc-string "src" parameter-alist))))
|
|
|
|
|
(if (display-images-p)
|
|
|
|
|
(let* ((image-file (if src (if (file-name-absolute-p src) src
|
|
|
|
|
(concat default-directory src))
|
|
|
|
|
""))
|
|
|
|
|
(image (if (file-exists-p image-file)
|
|
|
|
|
(create-image image-file)
|
|
|
|
|
"[broken image]")))
|
|
|
|
|
(if (not (get-text-property start 'display))
|
|
|
|
|
(add-text-properties
|
|
|
|
|
start (point) `(display ,image rear-nonsticky (display)))))
|
|
|
|
|
;; text-only display, show alternative text if provided, or
|
|
|
|
|
;; otherwise a clue that there's meant to be a picture
|
|
|
|
|
(delete-region start (point))
|
|
|
|
|
(insert (or (cdr (assoc-string "text" parameter-alist))
|
|
|
|
|
(cdr (assoc-string "alt" parameter-alist))
|
|
|
|
|
(and src
|
|
|
|
|
(concat "[image:" src "]"))
|
|
|
|
|
"[image]"))))))
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(set-buffer-modified-p nil)))
|
|
|
|
|
|
2004-04-08 03:12:16 +00:00
|
|
|
|
;; Texinfo 4.7 adds cookies of the form ^@^H[NAME CONTENTS ^@^H].
|
|
|
|
|
;; Hide any construct of the general form ^@[^@-^_][ ... ^@[^@-^_]],
|
|
|
|
|
;; including one optional trailing newline.
|
|
|
|
|
(defun Info-hide-cookies-node ()
|
2005-06-16 16:07:02 +00:00
|
|
|
|
"Hide unrecognized cookies in current node."
|
2004-04-08 03:12:16 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
(case-fold-search t))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"\\(\0[\0-\37][[][^\0]*\0[\0-\37][]]\n?\\)"
|
|
|
|
|
nil t)
|
|
|
|
|
(let* ((start (match-beginning 1)))
|
2009-12-14 05:09:08 +00:00
|
|
|
|
(if (and (not (get-text-property start 'invisible))
|
|
|
|
|
(not (get-text-property start 'display)))
|
2004-04-08 03:12:16 +00:00
|
|
|
|
(put-text-property start (point) 'invisible t)))))
|
|
|
|
|
(set-buffer-modified-p nil)))
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-select-node ()
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Select the Info node that point is in."
|
2003-06-06 12:28:16 +00:00
|
|
|
|
;; Bind this in case the user sets it to nil.
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(save-excursion
|
2000-06-05 19:22:40 +00:00
|
|
|
|
;; Find beginning of node.
|
|
|
|
|
(if (search-backward "\n\^_" nil 'move)
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(if (looking-at "\^_")
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(signal 'search-failed (list "\n\^_"))))
|
|
|
|
|
;; Get nodename spelled as it is in the node.
|
|
|
|
|
(re-search-forward "Node:[ \t]*")
|
|
|
|
|
(setq Info-current-node
|
|
|
|
|
(buffer-substring-no-properties (point)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward "^,\t\n")
|
|
|
|
|
(point))))
|
|
|
|
|
(Info-set-mode-line)
|
|
|
|
|
;; Find the end of it, and narrow.
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(let (active-expression)
|
2000-09-17 16:21:42 +00:00
|
|
|
|
;; Narrow to the node contents
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(narrow-to-region (point)
|
|
|
|
|
(if (re-search-forward "\n[\^_\f]" nil t)
|
|
|
|
|
(prog1
|
|
|
|
|
(1- (point))
|
|
|
|
|
(if (looking-at "[\n\^_\f]*execute: ")
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(setq active-expression
|
|
|
|
|
(read (current-buffer))))))
|
|
|
|
|
(point-max)))
|
|
|
|
|
(if Info-enable-active-nodes (eval active-expression))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
;; Add a new unique history item to full history list
|
|
|
|
|
(let ((new-history (list Info-current-file Info-current-node)))
|
|
|
|
|
(setq Info-history-list
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(cons new-history (delete new-history Info-history-list)))
|
|
|
|
|
(setq Info-history-forward nil))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(if (not (eq Info-fontify-maximum-menu-size nil))
|
|
|
|
|
(Info-fontify-node))
|
2003-04-25 23:17:06 +00:00
|
|
|
|
(Info-display-images-node)
|
2004-04-08 03:12:16 +00:00
|
|
|
|
(Info-hide-cookies-node)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(run-hooks 'Info-selection-hook)))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2006-01-16 23:54:02 +00:00
|
|
|
|
(defvar Info-mode-line-node-keymap
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2007-04-23 15:21:47 +00:00
|
|
|
|
(define-key map [mode-line mouse-1] 'Info-mouse-scroll-up)
|
|
|
|
|
(define-key map [mode-line mouse-3] 'Info-mouse-scroll-down)
|
2006-01-16 23:54:02 +00:00
|
|
|
|
map)
|
|
|
|
|
"Keymap to put on the Info node name in the mode line.")
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-set-mode-line ()
|
|
|
|
|
(setq mode-line-buffer-identification
|
2000-10-16 15:25:21 +00:00
|
|
|
|
(nconc (propertized-buffer-identification "%b")
|
2000-10-16 13:59:49 +00:00
|
|
|
|
(list
|
2006-01-16 23:54:02 +00:00
|
|
|
|
(concat
|
|
|
|
|
" ("
|
|
|
|
|
(if (stringp Info-current-file)
|
2006-02-13 15:44:01 +00:00
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"%" "%%" (file-name-nondirectory Info-current-file))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(format "*%S*" Info-current-file))
|
2006-01-16 23:54:02 +00:00
|
|
|
|
") "
|
|
|
|
|
(if Info-current-node
|
2006-02-13 15:44:01 +00:00
|
|
|
|
(propertize (replace-regexp-in-string
|
|
|
|
|
"%" "%%" Info-current-node)
|
2006-01-16 23:54:02 +00:00
|
|
|
|
'face 'mode-line-buffer-id
|
|
|
|
|
'help-echo
|
|
|
|
|
"mouse-1: scroll forward, mouse-3: scroll back"
|
|
|
|
|
'mouse-face 'mode-line-highlight
|
|
|
|
|
'local-map Info-mode-line-node-keymap)
|
|
|
|
|
""))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; Go to an Info node specified with a filename-and-nodename string
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; of the sort that is found in pointers in nodes.
|
|
|
|
|
|
2005-05-27 16:19:36 +00:00
|
|
|
|
;; Don't autoload this function: the correct entry point for other packages
|
|
|
|
|
;; to use is `info'. --Stef
|
|
|
|
|
;; ;;;###autoload
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(defun Info-goto-node (nodename &optional fork)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Go to Info node named NODENAME. Give just NODENAME or (FILENAME)NODENAME.
|
2001-09-22 15:10:59 +00:00
|
|
|
|
If NODENAME is of the form (FILENAME)NODENAME, the node is in the Info file
|
|
|
|
|
FILENAME; otherwise, NODENAME should be in the current Info file (or one of
|
|
|
|
|
its sub-files).
|
|
|
|
|
Completion is available, but only for node names in the current Info file.
|
2000-10-08 15:44:36 +00:00
|
|
|
|
If FORK is non-nil (interactively with a prefix arg), show the node in
|
2005-08-09 08:43:02 +00:00
|
|
|
|
a new Info buffer.
|
1999-10-13 14:48:57 +00:00
|
|
|
|
If FORK is a string, it is the name to use for the new buffer."
|
2000-10-15 16:46:09 +00:00
|
|
|
|
(interactive (list (Info-read-node-name "Go to node: ") current-prefix-arg))
|
1999-08-04 18:55:22 +00:00
|
|
|
|
(info-initialize)
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(if fork
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(set-buffer
|
|
|
|
|
(clone-buffer (concat "*info-" (if (stringp fork) fork nodename) "*") t)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(let (filename)
|
|
|
|
|
(string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)"
|
|
|
|
|
nodename)
|
|
|
|
|
(setq filename (if (= (match-beginning 1) (match-end 1))
|
|
|
|
|
""
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(match-string 2 nodename))
|
|
|
|
|
nodename (match-string 3 nodename))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(let ((trim (string-match "\\s +\\'" filename)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(if trim (setq filename (substring filename 0 trim))))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(let ((trim (string-match "\\s +\\'" nodename)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(if trim (setq nodename (substring nodename 0 trim))))
|
1995-06-29 18:57:15 +00:00
|
|
|
|
(if transient-mark-mode (deactivate-mark))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(Info-find-node (if (equal filename "") nil filename)
|
|
|
|
|
(if (equal nodename "") "Top" nodename))))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
|
1998-07-15 00:07:49 +00:00
|
|
|
|
(defvar Info-read-node-completion-table)
|
|
|
|
|
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(defun Info-read-node-name-2 (dirs suffixes string pred action)
|
2005-06-06 12:47:51 +00:00
|
|
|
|
"Virtual completion table for file names input in Info node names.
|
|
|
|
|
PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(setq suffixes (remove "" suffixes))
|
|
|
|
|
(when (file-name-absolute-p string)
|
|
|
|
|
(setq dirs (list (file-name-directory string))))
|
|
|
|
|
(let ((names nil)
|
|
|
|
|
(suffix (concat (regexp-opt suffixes t) "\\'"))
|
|
|
|
|
(string-dir (file-name-directory string)))
|
2005-06-06 12:47:51 +00:00
|
|
|
|
(dolist (dir dirs)
|
|
|
|
|
(unless dir
|
|
|
|
|
(setq dir default-directory))
|
|
|
|
|
(if string-dir (setq dir (expand-file-name string-dir dir)))
|
|
|
|
|
(when (file-directory-p dir)
|
|
|
|
|
(dolist (file (file-name-all-completions
|
|
|
|
|
(file-name-nondirectory string) dir))
|
|
|
|
|
;; If the file name has no suffix or a standard suffix,
|
|
|
|
|
;; include it.
|
|
|
|
|
(and (or (null (file-name-extension file))
|
|
|
|
|
(string-match suffix file))
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; But exclude subfiles of split Info files.
|
2005-06-06 12:47:51 +00:00
|
|
|
|
(not (string-match "-[0-9]+\\'" file))
|
|
|
|
|
;; And exclude backup files.
|
|
|
|
|
(not (string-match "~\\'" file))
|
|
|
|
|
(push (if string-dir (concat string-dir file) file) names))
|
|
|
|
|
;; If the file name ends in a standard suffix,
|
|
|
|
|
;; add the unsuffixed name as a completion option.
|
|
|
|
|
(when (string-match suffix file)
|
|
|
|
|
(setq file (substring file 0 (match-beginning 0)))
|
|
|
|
|
(push (if string-dir (concat string-dir file) file) names)))))
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(complete-with-action action names string pred)))
|
2005-06-06 12:47:51 +00:00
|
|
|
|
|
1995-08-05 20:56:23 +00:00
|
|
|
|
;; This function is used as the "completion table" while reading a node name.
|
1998-07-15 00:07:49 +00:00
|
|
|
|
;; It does completion using the alist in Info-read-node-completion-table
|
1995-08-05 20:56:23 +00:00
|
|
|
|
;; unless STRING starts with an open-paren.
|
|
|
|
|
(defun Info-read-node-name-1 (string predicate code)
|
2002-04-30 02:08:56 +00:00
|
|
|
|
(cond
|
|
|
|
|
;; First complete embedded file names.
|
|
|
|
|
((string-match "\\`([^)]*\\'" string)
|
2008-04-13 22:12:02 +00:00
|
|
|
|
(completion-table-with-context
|
|
|
|
|
"("
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(apply-partially 'completion-table-with-terminator ")"
|
|
|
|
|
(apply-partially 'Info-read-node-name-2
|
|
|
|
|
Info-directory-list
|
|
|
|
|
(mapcar 'car Info-suffix-list)))
|
2008-04-13 22:12:02 +00:00
|
|
|
|
(substring string 1)
|
2008-04-19 03:33:13 +00:00
|
|
|
|
predicate
|
2008-04-13 22:12:02 +00:00
|
|
|
|
code))
|
|
|
|
|
|
2002-04-30 02:08:56 +00:00
|
|
|
|
;; If a file name was given, then any node is fair game.
|
|
|
|
|
((string-match "\\`(" string)
|
|
|
|
|
(cond
|
|
|
|
|
((eq code nil) string)
|
|
|
|
|
((eq code t) nil)
|
|
|
|
|
(t t)))
|
|
|
|
|
;; Otherwise use Info-read-node-completion-table.
|
2008-04-13 22:12:02 +00:00
|
|
|
|
(t (complete-with-action
|
|
|
|
|
code Info-read-node-completion-table string predicate))))
|
1995-08-05 20:56:23 +00:00
|
|
|
|
|
2005-06-06 12:47:51 +00:00
|
|
|
|
;; Arrange to highlight the proper letters in the completion list buffer.
|
2008-04-13 22:12:02 +00:00
|
|
|
|
|
2005-06-06 12:47:51 +00:00
|
|
|
|
|
2008-02-18 12:14:24 +00:00
|
|
|
|
(defun Info-read-node-name (prompt)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(let* ((completion-ignore-case t)
|
1998-07-15 00:07:49 +00:00
|
|
|
|
(Info-read-node-completion-table (Info-build-node-completions))
|
1997-03-08 19:19:51 +00:00
|
|
|
|
(nodename (completing-read prompt 'Info-read-node-name-1 nil t)))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(if (equal nodename "")
|
2008-02-18 12:14:24 +00:00
|
|
|
|
(Info-read-node-name prompt)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
nodename)))
|
|
|
|
|
|
|
|
|
|
(defun Info-build-node-completions ()
|
|
|
|
|
(or Info-current-file-completions
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((compl nil)
|
|
|
|
|
;; Bind this in case the user sets it to nil.
|
1998-12-21 11:18:29 +00:00
|
|
|
|
(case-fold-search t)
|
|
|
|
|
(node-regexp "Node: *\\([^,\n]*\\) *[,\n\t]"))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
2006-12-18 05:16:48 +00:00
|
|
|
|
(or Info-tag-table-marker
|
|
|
|
|
(error "No Info tags found"))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(if (marker-buffer Info-tag-table-marker)
|
1997-02-08 18:34:21 +00:00
|
|
|
|
(let ((marker Info-tag-table-marker))
|
|
|
|
|
(set-buffer (marker-buffer marker))
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(widen)
|
1997-02-08 18:34:21 +00:00
|
|
|
|
(goto-char marker)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
(while (re-search-forward "\n\\(Node\\|Ref\\): \\(.*\\)\177" nil t)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(setq compl
|
2000-06-13 14:46:08 +00:00
|
|
|
|
(cons (list (match-string-no-properties 2))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
compl))))
|
|
|
|
|
(widen)
|
|
|
|
|
(goto-char (point-min))
|
1998-12-21 11:18:29 +00:00
|
|
|
|
;; If the buffer begins with a node header, process that first.
|
|
|
|
|
(if (Info-node-at-bob-matching node-regexp)
|
1999-11-24 19:53:56 +00:00
|
|
|
|
(setq compl (list (match-string-no-properties 1))))
|
1998-12-21 11:18:29 +00:00
|
|
|
|
;; Now for the rest of the nodes.
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(while (search-forward "\n\^_" nil t)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(let ((beg (point)))
|
|
|
|
|
(forward-line 1)
|
1998-12-21 11:18:29 +00:00
|
|
|
|
(if (re-search-backward node-regexp beg t)
|
2000-05-16 16:24:25 +00:00
|
|
|
|
(setq compl
|
1999-11-24 19:53:56 +00:00
|
|
|
|
(cons (list (match-string-no-properties 1))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
compl))))))))
|
1999-10-25 13:31:08 +00:00
|
|
|
|
(setq compl (cons '("*") compl))
|
2001-07-13 18:34:08 +00:00
|
|
|
|
(set (make-local-variable 'Info-current-file-completions) compl))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1992-02-07 21:40:34 +00:00
|
|
|
|
(defun Info-restore-point (hl)
|
|
|
|
|
"If this node has been visited, restore the point value when we left."
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(while hl
|
|
|
|
|
(if (and (equal (nth 0 (car hl)) Info-current-file)
|
1995-04-24 15:31:19 +00:00
|
|
|
|
;; Use string-equal, not equal, to ignore text props.
|
|
|
|
|
(string-equal (nth 1 (car hl)) Info-current-node))
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(progn
|
1994-03-01 09:02:19 +00:00
|
|
|
|
(goto-char (nth 2 (car hl)))
|
|
|
|
|
(setq hl nil)) ;terminate the while at next iter
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(setq hl (cdr hl)))))
|
1992-02-07 21:40:34 +00:00
|
|
|
|
|
2000-07-07 13:01:16 +00:00
|
|
|
|
(defvar Info-search-history nil
|
|
|
|
|
"The history list for `Info-search'.")
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defvar Info-search-case-fold nil
|
|
|
|
|
"The value of `case-fold-search' from previous `Info-search' command.")
|
|
|
|
|
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(defun Info-search (regexp &optional bound noerror count direction)
|
|
|
|
|
"Search for REGEXP, starting from point, and select node it's found in.
|
|
|
|
|
If DIRECTION is `backward', search in the reverse direction."
|
2001-01-08 16:59:54 +00:00
|
|
|
|
(interactive (list (read-string
|
|
|
|
|
(if Info-search-history
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(format "Regexp search%s (default %s): "
|
|
|
|
|
(if case-fold-search "" " case-sensitively")
|
2001-01-08 16:59:54 +00:00
|
|
|
|
(car Info-search-history))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(format "Regexp search%s: "
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(if case-fold-search "" " case-sensitively")))
|
2001-01-08 16:59:54 +00:00
|
|
|
|
nil 'Info-search-history)))
|
2009-07-15 01:25:32 +00:00
|
|
|
|
(deactivate-mark)
|
2000-07-07 13:01:16 +00:00
|
|
|
|
(when (equal regexp "")
|
|
|
|
|
(setq regexp (car Info-search-history)))
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(when regexp
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(let (found beg-found give-up
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(backward (eq direction 'backward))
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(onode Info-current-node)
|
|
|
|
|
(ofile Info-current-file)
|
|
|
|
|
(opoint (point))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(opoint-min (point-min))
|
|
|
|
|
(opoint-max (point-max))
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(ostart (window-start))
|
|
|
|
|
(osubfile Info-current-subfile))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(setq Info-search-case-fold case-fold-search)
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
2004-11-05 19:06:24 +00:00
|
|
|
|
(when backward
|
|
|
|
|
;; Hide Info file header for backward search
|
|
|
|
|
(narrow-to-region (save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n\^_")
|
|
|
|
|
(1- (point)))
|
|
|
|
|
(point-max)))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(while (and (not give-up)
|
2008-04-22 19:57:58 +00:00
|
|
|
|
(or (null found)
|
2008-11-17 00:43:58 +00:00
|
|
|
|
(not (funcall isearch-filter-predicate beg-found found))))
|
2006-02-23 21:41:41 +00:00
|
|
|
|
(let ((search-spaces-regexp
|
|
|
|
|
(if (or (not isearch-mode) isearch-regexp)
|
|
|
|
|
Info-search-whitespace-regexp)))
|
2004-11-19 20:04:44 +00:00
|
|
|
|
(if (if backward
|
|
|
|
|
(re-search-backward regexp bound t)
|
|
|
|
|
(re-search-forward regexp bound t))
|
|
|
|
|
(setq found (point) beg-found (if backward (match-end 0)
|
|
|
|
|
(match-beginning 0)))
|
|
|
|
|
(setq give-up t))))))
|
2005-03-15 10:46:00 +00:00
|
|
|
|
|
|
|
|
|
(when (and isearch-mode Info-isearch-search
|
|
|
|
|
(not Info-isearch-initial-node)
|
|
|
|
|
(not bound)
|
|
|
|
|
(or give-up (and found (not (and (> found opoint-min)
|
|
|
|
|
(< found opoint-max))))))
|
|
|
|
|
(signal 'search-failed (list regexp "initial node")))
|
|
|
|
|
|
2003-07-07 21:03:32 +00:00
|
|
|
|
;; If no subfiles, give error now.
|
|
|
|
|
(if give-up
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(if (null Info-current-subfile)
|
2006-02-23 21:41:41 +00:00
|
|
|
|
(let ((search-spaces-regexp
|
|
|
|
|
(if (or (not isearch-mode) isearch-regexp)
|
|
|
|
|
Info-search-whitespace-regexp)))
|
2004-11-28 15:42:11 +00:00
|
|
|
|
(if backward
|
|
|
|
|
(re-search-backward regexp)
|
|
|
|
|
(re-search-forward regexp)))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(setq found nil)))
|
|
|
|
|
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(if (and bound (not found))
|
|
|
|
|
(signal 'search-failed (list regexp)))
|
|
|
|
|
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(unless (or found bound)
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
;; Try other subfiles.
|
|
|
|
|
(let ((list ()))
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(with-current-buffer (marker-buffer Info-tag-table-marker)
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n\^_\nIndirect:")
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region (point)
|
|
|
|
|
(progn (search-forward "\n\^_")
|
|
|
|
|
(1- (point))))
|
1997-02-08 18:34:21 +00:00
|
|
|
|
(goto-char (point-min))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
;; Find the subfile we just searched.
|
|
|
|
|
(search-forward (concat "\n" osubfile ": "))
|
|
|
|
|
;; Skip that one.
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(forward-line (if backward 0 1))
|
2005-03-12 02:18:32 +00:00
|
|
|
|
(if backward (forward-char -1))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
;; Make a list of all following subfiles.
|
|
|
|
|
;; Each elt has the form (VIRT-POSITION . SUBFILENAME).
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(while (not (if backward (bobp) (eobp)))
|
|
|
|
|
(if backward
|
|
|
|
|
(re-search-backward "\\(^.*\\): [0-9]+$")
|
|
|
|
|
(re-search-forward "\\(^.*\\): [0-9]+$"))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(goto-char (+ (match-end 1) 2))
|
|
|
|
|
(setq list (cons (cons (+ (point-min)
|
|
|
|
|
(read (current-buffer)))
|
|
|
|
|
(match-string-no-properties 1))
|
|
|
|
|
list))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(goto-char (if backward
|
|
|
|
|
(1- (match-beginning 0))
|
|
|
|
|
(1+ (match-end 0)))))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
;; Put in forward order
|
|
|
|
|
(setq list (nreverse list))))
|
|
|
|
|
(while list
|
|
|
|
|
(message "Searching subfile %s..." (cdr (car list)))
|
|
|
|
|
(Info-read-subfile (car (car list)))
|
2004-11-05 19:06:24 +00:00
|
|
|
|
(when backward
|
|
|
|
|
;; Hide Info file header for backward search
|
|
|
|
|
(narrow-to-region (save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n\^_")
|
|
|
|
|
(1- (point)))
|
|
|
|
|
(point-max))
|
|
|
|
|
(goto-char (point-max)))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(setq list (cdr list))
|
|
|
|
|
(setq give-up nil found nil)
|
|
|
|
|
(while (and (not give-up)
|
2008-04-22 19:57:58 +00:00
|
|
|
|
(or (null found)
|
2008-11-17 00:43:58 +00:00
|
|
|
|
(not (funcall isearch-filter-predicate beg-found found))))
|
2006-02-23 21:41:41 +00:00
|
|
|
|
(let ((search-spaces-regexp
|
|
|
|
|
(if (or (not isearch-mode) isearch-regexp)
|
|
|
|
|
Info-search-whitespace-regexp)))
|
2004-11-28 15:42:11 +00:00
|
|
|
|
(if (if backward
|
|
|
|
|
(re-search-backward regexp nil t)
|
|
|
|
|
(re-search-forward regexp nil t))
|
|
|
|
|
(setq found (point) beg-found (if backward (match-end 0)
|
|
|
|
|
(match-beginning 0)))
|
|
|
|
|
(setq give-up t))))
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(if give-up
|
|
|
|
|
(setq found nil))
|
1999-07-19 22:21:44 +00:00
|
|
|
|
(if found
|
2003-07-07 21:03:32 +00:00
|
|
|
|
(setq list nil)))
|
|
|
|
|
(if found
|
|
|
|
|
(message "")
|
|
|
|
|
(signal 'search-failed (list regexp))))
|
|
|
|
|
(if (not found)
|
|
|
|
|
(progn (Info-read-subfile osubfile)
|
|
|
|
|
(goto-char opoint)
|
|
|
|
|
(Info-select-node)
|
|
|
|
|
(set-window-start (selected-window) ostart)))))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
|
|
|
|
|
(if (and (string= osubfile Info-current-subfile)
|
|
|
|
|
(> found opoint-min)
|
|
|
|
|
(< found opoint-max))
|
|
|
|
|
;; Search landed in the same node
|
|
|
|
|
(goto-char found)
|
|
|
|
|
(widen)
|
|
|
|
|
(goto-char found)
|
|
|
|
|
(save-match-data (Info-select-node)))
|
|
|
|
|
|
2000-06-05 19:22:40 +00:00
|
|
|
|
;; Use string-equal, not equal, to ignore text props.
|
|
|
|
|
(or (and (string-equal onode Info-current-node)
|
|
|
|
|
(equal ofile Info-current-file))
|
2005-03-12 02:18:32 +00:00
|
|
|
|
(and isearch-mode isearch-wrapped
|
|
|
|
|
(eq opoint (if isearch-forward opoint-min opoint-max)))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(setq Info-history (cons (list ofile onode opoint)
|
|
|
|
|
Info-history))))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-search-case-sensitively ()
|
|
|
|
|
"Search for a regexp case-sensitively."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(call-interactively 'Info-search)))
|
|
|
|
|
|
|
|
|
|
(defun Info-search-next ()
|
|
|
|
|
"Search for next regexp from a previous `Info-search' command."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((case-fold-search Info-search-case-fold))
|
|
|
|
|
(if Info-search-history
|
|
|
|
|
(Info-search (car Info-search-history))
|
|
|
|
|
(call-interactively 'Info-search))))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-search-backward (regexp &optional bound noerror count)
|
|
|
|
|
"Search for REGEXP in the reverse direction."
|
|
|
|
|
(interactive (list (read-string
|
|
|
|
|
(if Info-search-history
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(format "Regexp search%s backward (default %s): "
|
|
|
|
|
(if case-fold-search "" " case-sensitively")
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(car Info-search-history))
|
|
|
|
|
(format "Regexp search%s backward: "
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(if case-fold-search "" " case-sensitively")))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
nil 'Info-search-history)))
|
|
|
|
|
(Info-search regexp bound noerror count 'backward))
|
|
|
|
|
|
|
|
|
|
(defun Info-isearch-search ()
|
2005-03-08 21:51:48 +00:00
|
|
|
|
(if Info-isearch-search
|
2005-02-23 17:03:17 +00:00
|
|
|
|
(lambda (string &optional bound noerror count)
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(if isearch-word
|
|
|
|
|
(Info-search (concat "\\b" (replace-regexp-in-string
|
2005-08-22 19:53:46 +00:00
|
|
|
|
"\\W+" "\\W+"
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(replace-regexp-in-string
|
2005-08-22 19:53:46 +00:00
|
|
|
|
"^\\W+\\|\\W+$" "" string)
|
|
|
|
|
nil t)
|
2008-12-19 00:20:48 +00:00
|
|
|
|
;; Lax version of word search
|
|
|
|
|
(if (or isearch-nonincremental
|
|
|
|
|
(eq (length string)
|
|
|
|
|
(length (isearch-string-state
|
|
|
|
|
(car isearch-cmds)))))
|
|
|
|
|
"\\b"))
|
2005-03-15 10:46:00 +00:00
|
|
|
|
bound noerror count
|
|
|
|
|
(unless isearch-forward 'backward))
|
|
|
|
|
(Info-search (if isearch-regexp string (regexp-quote string))
|
|
|
|
|
bound noerror count
|
2008-03-25 14:41:44 +00:00
|
|
|
|
(unless isearch-forward 'backward)))
|
|
|
|
|
(point))
|
2005-02-23 17:03:17 +00:00
|
|
|
|
(let ((isearch-search-fun-function nil))
|
|
|
|
|
(isearch-search-fun))))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-isearch-wrap ()
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(if Info-isearch-search
|
|
|
|
|
(if Info-isearch-initial-node
|
|
|
|
|
(progn
|
|
|
|
|
(if isearch-forward (Info-top-node) (Info-final-node))
|
|
|
|
|
(goto-char (if isearch-forward (point-min) (point-max))))
|
|
|
|
|
(setq Info-isearch-initial-node Info-current-node)
|
|
|
|
|
(setq isearch-wrapped nil))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(goto-char (if isearch-forward (point-min) (point-max)))))
|
|
|
|
|
|
|
|
|
|
(defun Info-isearch-push-state ()
|
|
|
|
|
`(lambda (cmd)
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(Info-isearch-pop-state cmd ',Info-current-file ',Info-current-node)))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-isearch-pop-state (cmd file node)
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(or (and (equal Info-current-file file)
|
|
|
|
|
(equal Info-current-node node))
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(progn (Info-find-node file node) (sit-for 0))))
|
|
|
|
|
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(defun Info-isearch-start ()
|
2008-12-19 00:20:48 +00:00
|
|
|
|
(setq Info-isearch-initial-node
|
|
|
|
|
;; Don't stop at initial node for nonincremental search.
|
|
|
|
|
;; Otherwise this variable is set after first search failure.
|
|
|
|
|
(and isearch-nonincremental Info-current-node)))
|
2008-04-22 19:57:58 +00:00
|
|
|
|
|
2008-12-23 21:03:09 +00:00
|
|
|
|
(defun Info-isearch-filter (beg-found found)
|
|
|
|
|
"Test whether the current search hit is a visible useful text.
|
|
|
|
|
Return non-nil if the text from BEG-FOUND to FOUND is visible
|
|
|
|
|
and is not in the header line or a tag table."
|
2008-04-22 19:57:58 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(let ((backward (< found beg-found)))
|
|
|
|
|
(not
|
|
|
|
|
(or
|
2009-01-14 23:09:45 +00:00
|
|
|
|
(and (not (eq search-invisible t))
|
|
|
|
|
(if backward
|
|
|
|
|
(or (text-property-not-all found beg-found 'invisible nil)
|
|
|
|
|
(text-property-not-all found beg-found 'display nil))
|
|
|
|
|
(or (text-property-not-all beg-found found 'invisible nil)
|
|
|
|
|
(text-property-not-all beg-found found 'display nil))))
|
2008-04-22 19:57:58 +00:00
|
|
|
|
;; Skip node header line
|
|
|
|
|
(and (save-excursion (forward-line -1)
|
|
|
|
|
(looking-at "\^_"))
|
|
|
|
|
(forward-line (if backward -1 1)))
|
|
|
|
|
;; Skip Tag Table node
|
|
|
|
|
(save-excursion
|
|
|
|
|
(and (search-backward "\^_" nil t)
|
|
|
|
|
(looking-at
|
|
|
|
|
"\^_\n\\(Tag Table\\|Local Variables\\)"))))))))
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-extract-pointer (name &optional errorname)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Extract the value of the node-pointer named NAME.
|
|
|
|
|
If there is none, use ERRORNAME in the error message;
|
2003-07-04 23:05:35 +00:00
|
|
|
|
if ERRORNAME is nil, just return nil."
|
|
|
|
|
;; Bind this in case the user sets it to nil.
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(save-excursion
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((bound (point)))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(cond ((re-search-backward
|
|
|
|
|
(concat name ":" (Info-following-node-name-re)) bound t)
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 1))
|
2003-07-04 23:05:35 +00:00
|
|
|
|
((not (eq errorname t))
|
|
|
|
|
(error "Node has no %s"
|
|
|
|
|
(capitalize (or errorname name)))))))))
|
|
|
|
|
|
|
|
|
|
(defun Info-following-node-name-re (&optional allowedchars)
|
|
|
|
|
"Return a regexp matching a node name.
|
2000-06-13 14:46:08 +00:00
|
|
|
|
ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp
|
2003-07-04 23:05:35 +00:00
|
|
|
|
saying which chars may appear in the node name.
|
|
|
|
|
Submatch 1 is the complete node name.
|
|
|
|
|
Submatch 2 if non-nil is the parenthesized file name part of the node name.
|
|
|
|
|
Submatch 3 is the local part of the node name.
|
|
|
|
|
End of submatch 0, 1, and 3 are the same, so you can safely concat."
|
|
|
|
|
(concat "[ \t]*" ;Skip leading space.
|
|
|
|
|
"\\(\\(([^)]+)\\)?" ;Node name can start with a file name.
|
|
|
|
|
"\\([" (or allowedchars "^,\t\n") "]*" ;Any number of allowed chars.
|
|
|
|
|
"[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space.
|
|
|
|
|
"\\|\\)\\)")) ;Allow empty node names.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2003-10-05 13:51:04 +00:00
|
|
|
|
;;; For compatibility; other files have used this name.
|
|
|
|
|
(defun Info-following-node-name ()
|
|
|
|
|
(and (looking-at (Info-following-node-name-re))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 1)))
|
2003-10-05 13:51:04 +00:00
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-next ()
|
|
|
|
|
"Go to the next node of this node."
|
|
|
|
|
(interactive)
|
2005-10-04 14:06:44 +00:00
|
|
|
|
;; In case another window is currently selected
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
|
|
|
|
|
(Info-goto-node (Info-extract-pointer "next"))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-prev ()
|
|
|
|
|
"Go to the previous node of this node."
|
|
|
|
|
(interactive)
|
2005-10-04 14:06:44 +00:00
|
|
|
|
;; In case another window is currently selected
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
|
|
|
|
|
(Info-goto-node (Info-extract-pointer "prev[ious]*" "previous"))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1998-05-03 00:02:10 +00:00
|
|
|
|
(defun Info-up (&optional same-file)
|
|
|
|
|
"Go to the superior node of this node.
|
|
|
|
|
If SAME-FILE is non-nil, do not move to a different Info file."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(interactive)
|
2005-10-04 14:06:44 +00:00
|
|
|
|
;; In case another window is currently selected
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
|
|
|
|
|
(let ((old-node Info-current-node)
|
|
|
|
|
(old-file Info-current-file)
|
|
|
|
|
(node (Info-extract-pointer "up")) p)
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(and same-file
|
2005-10-04 14:06:44 +00:00
|
|
|
|
(string-match "^(" node)
|
|
|
|
|
(error "Up node is in another Info file"))
|
|
|
|
|
(Info-goto-node node)
|
|
|
|
|
(setq p (point))
|
|
|
|
|
(goto-char (point-min))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(if (and (stringp old-file)
|
|
|
|
|
(search-forward "\n* Menu:" nil t)
|
2005-10-04 14:06:44 +00:00
|
|
|
|
(re-search-forward
|
|
|
|
|
(if (string-equal old-node "Top")
|
|
|
|
|
(concat "\n\\*[^:]+: +(" (file-name-nondirectory old-file) ")")
|
|
|
|
|
(concat "\n\\* +\\(" (regexp-quote old-node)
|
|
|
|
|
":\\|[^:]+: +" (regexp-quote old-node) "\\)"))
|
|
|
|
|
nil t))
|
|
|
|
|
(progn (beginning-of-line) (if (looking-at "^\\* ") (forward-char 2)))
|
|
|
|
|
(goto-char p)
|
|
|
|
|
(Info-restore-point Info-history)))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(defun Info-history-back ()
|
|
|
|
|
"Go back in the history to the last node visited."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(or Info-history
|
|
|
|
|
(error "This is the first Info node you looked at"))
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(let ((history-forward
|
|
|
|
|
(cons (list Info-current-file Info-current-node (point))
|
|
|
|
|
Info-history-forward))
|
|
|
|
|
filename nodename opoint)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(setq filename (car (car Info-history)))
|
|
|
|
|
(setq nodename (car (cdr (car Info-history))))
|
|
|
|
|
(setq opoint (car (cdr (cdr (car Info-history)))))
|
|
|
|
|
(setq Info-history (cdr Info-history))
|
|
|
|
|
(Info-find-node filename nodename)
|
|
|
|
|
(setq Info-history (cdr Info-history))
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(setq Info-history-forward history-forward)
|
|
|
|
|
(goto-char opoint)))
|
|
|
|
|
|
|
|
|
|
(defalias 'Info-last 'Info-history-back)
|
|
|
|
|
|
|
|
|
|
(defun Info-history-forward ()
|
|
|
|
|
"Go forward in the history of visited nodes."
|
|
|
|
|
(interactive)
|
|
|
|
|
(or Info-history-forward
|
|
|
|
|
(error "This is the last Info node you looked at"))
|
|
|
|
|
(let ((history-forward (cdr Info-history-forward))
|
|
|
|
|
filename nodename opoint)
|
|
|
|
|
(setq filename (car (car Info-history-forward)))
|
|
|
|
|
(setq nodename (car (cdr (car Info-history-forward))))
|
|
|
|
|
(setq opoint (car (cdr (cdr (car Info-history-forward)))))
|
|
|
|
|
(Info-find-node filename nodename)
|
|
|
|
|
(setq Info-history-forward history-forward)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(goto-char opoint)))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
|
|
|
|
|
(add-to-list 'Info-virtual-files
|
|
|
|
|
'("\\`dir\\'"
|
|
|
|
|
(toc-nodes . Info-directory-toc-nodes)
|
|
|
|
|
(find-file . Info-directory-find-file)
|
|
|
|
|
(find-node . Info-directory-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun Info-directory-toc-nodes (filename)
|
|
|
|
|
"Directory-specific implementation of Info-directory-toc-nodes."
|
|
|
|
|
`(,filename
|
|
|
|
|
("Top" nil nil nil)))
|
|
|
|
|
|
|
|
|
|
(defun Info-directory-find-file (filename &optional noerror)
|
|
|
|
|
"Directory-specific implementation of Info-find-file."
|
|
|
|
|
filename)
|
|
|
|
|
|
|
|
|
|
(defun Info-directory-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"Directory-specific implementation of Info-find-node-2."
|
|
|
|
|
(Info-insert-dir))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2000-04-12 18:28:40 +00:00
|
|
|
|
;;;###autoload
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-directory ()
|
|
|
|
|
"Go to the Info directory node."
|
|
|
|
|
(interactive)
|
|
|
|
|
(Info-find-node "dir" "top"))
|
|
|
|
|
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(add-to-list 'Info-virtual-files
|
|
|
|
|
'("\\`\\*History\\*\\'"
|
|
|
|
|
(toc-nodes . Info-history-toc-nodes)
|
|
|
|
|
(find-file . Info-history-find-file)
|
|
|
|
|
(find-node . Info-history-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun Info-history-toc-nodes (filename)
|
|
|
|
|
"History-specific implementation of Info-history-toc-nodes."
|
|
|
|
|
`(,filename
|
|
|
|
|
("Top" nil nil nil)))
|
|
|
|
|
|
|
|
|
|
(defun Info-history-find-file (filename &optional noerror)
|
|
|
|
|
"History-specific implementation of Info-find-file."
|
|
|
|
|
filename)
|
|
|
|
|
|
|
|
|
|
(defun Info-history-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"History-specific implementation of Info-find-node-2."
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
|
|
|
|
|
(or filename Info-current-file) nodename))
|
|
|
|
|
(insert "Recently Visited Nodes\n")
|
|
|
|
|
(insert "**********************\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(let ((hl (delete '("*History*" "Top") Info-history-list)))
|
|
|
|
|
(while hl
|
|
|
|
|
(let ((file (nth 0 (car hl)))
|
|
|
|
|
(node (nth 1 (car hl))))
|
|
|
|
|
(if (stringp file)
|
|
|
|
|
(insert "* " node ": ("
|
|
|
|
|
(propertize (or (file-name-directory file) "") 'invisible t)
|
|
|
|
|
(file-name-nondirectory file)
|
|
|
|
|
")" node ".\n")))
|
|
|
|
|
(setq hl (cdr hl)))))
|
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defun Info-history ()
|
2004-04-21 22:23:25 +00:00
|
|
|
|
"Go to a node with a menu of visited nodes."
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(interactive)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(Info-find-node "*History*" "Top")
|
|
|
|
|
(Info-next-reference)
|
|
|
|
|
(Info-next-reference))
|
|
|
|
|
|
|
|
|
|
(add-to-list 'Info-virtual-nodes
|
|
|
|
|
'("\\`\\*TOC\\*\\'"
|
|
|
|
|
(find-node . Info-toc-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun Info-toc-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"Toc-specific implementation of Info-find-node-2."
|
|
|
|
|
(let* ((curr-file (substring-no-properties (or filename Info-current-file)))
|
|
|
|
|
(curr-node (substring-no-properties (or nodename Info-current-node)))
|
|
|
|
|
(node-list (Info-toc-nodes curr-file)))
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
curr-file curr-node))
|
|
|
|
|
(insert "Table of Contents\n")
|
|
|
|
|
(insert "*****************\n\n")
|
|
|
|
|
(insert "*Note Top::\n")
|
|
|
|
|
(Info-toc-insert
|
|
|
|
|
(nth 3 (assoc "Top" node-list)) ; get Top nodes
|
|
|
|
|
node-list 0 curr-file)
|
|
|
|
|
(unless (bobp)
|
|
|
|
|
(let ((Info-hide-note-references 'hide)
|
|
|
|
|
(Info-fontify-visited-nodes nil))
|
|
|
|
|
(setq Info-current-file filename Info-current-node "*TOC*")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(narrow-to-region (or (re-search-forward "\n[\^_\f]\n" nil t)
|
|
|
|
|
(point-min))
|
|
|
|
|
(point-max))
|
|
|
|
|
(Info-fontify-node)
|
|
|
|
|
(widen)))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-toc ()
|
2004-06-12 05:54:43 +00:00
|
|
|
|
"Go to a node with table of contents of the current Info file.
|
|
|
|
|
Table of contents is created from the tree structure of menus."
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(interactive)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(Info-find-node Info-current-file "*TOC*")
|
|
|
|
|
(let ((prev-node (nth 1 (car Info-history))) p)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (setq p (search-forward (concat "*Note " prev-node ":") nil t))
|
|
|
|
|
(setq p (- p (length prev-node) 2)))
|
|
|
|
|
(goto-char (or p (point-min)))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(defun Info-toc-insert (nodes node-list level curr-file)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
"Insert table of contents with references to nodes."
|
|
|
|
|
(let ((section "Top"))
|
|
|
|
|
(while nodes
|
|
|
|
|
(let ((node (assoc (car nodes) node-list)))
|
2008-06-15 18:18:16 +00:00
|
|
|
|
(unless (member (nth 2 node) (list nil section))
|
|
|
|
|
(insert (setq section (nth 2 node)) "\n"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(insert (make-string level ?\t))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(insert "*Note " (car nodes) ":: \n")
|
|
|
|
|
(Info-toc-insert (nth 3 node) node-list (1+ level) curr-file)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(setq nodes (cdr nodes))))))
|
|
|
|
|
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(defun Info-toc-build (file)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
"Build table of contents from menus of Info FILE and its subfiles."
|
|
|
|
|
(with-temp-buffer
|
2004-10-05 04:23:55 +00:00
|
|
|
|
(let* ((file (and (stringp file) (Info-find-file file)))
|
|
|
|
|
(default-directory (or (and (stringp file)
|
|
|
|
|
(file-name-directory file))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
default-directory))
|
2004-10-05 04:23:55 +00:00
|
|
|
|
(main-file (and (stringp file) file))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(sections '(("Top" "Top")))
|
|
|
|
|
nodes subfiles)
|
|
|
|
|
(while (or main-file subfiles)
|
2008-06-15 18:18:16 +00:00
|
|
|
|
;; (or main-file (message "Searching subfile %s..." (car subfiles)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(erase-buffer)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(info-insert-file-contents (or main-file (car subfiles)))
|
|
|
|
|
(goto-char (point-min))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(while (and (search-forward "\n\^_\nFile:" nil 'move)
|
|
|
|
|
(search-forward "Node: " nil 'move))
|
2008-06-15 18:18:16 +00:00
|
|
|
|
(let* ((nodename (substring-no-properties (Info-following-node-name)))
|
|
|
|
|
(bound (- (or (save-excursion (search-forward "\n\^_" nil t))
|
|
|
|
|
(point-max)) 2))
|
|
|
|
|
(upnode (and (re-search-forward
|
|
|
|
|
(concat "Up:" (Info-following-node-name-re))
|
|
|
|
|
bound t)
|
|
|
|
|
(match-string-no-properties 1)))
|
|
|
|
|
(section "Top")
|
|
|
|
|
menu-items)
|
|
|
|
|
(when (string-match "(" upnode) (setq upnode nil))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(when (and (not (Info-index-node nodename file))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(re-search-forward "^\\* Menu:" bound t))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq bound (or (and (equal nodename "Top")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(re-search-forward
|
|
|
|
|
"^[ \t-]*The Detailed Node Listing" nil t)))
|
|
|
|
|
bound))
|
|
|
|
|
(while (< (point) bound)
|
|
|
|
|
(cond
|
|
|
|
|
;; Menu item line
|
|
|
|
|
((looking-at "^\\* +[^:]+:")
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(forward-char 2)
|
|
|
|
|
(let ((menu-node-name (substring-no-properties
|
|
|
|
|
(Info-extract-menu-node-name))))
|
|
|
|
|
(setq menu-items (cons menu-node-name menu-items))
|
|
|
|
|
(if (equal nodename "Top")
|
|
|
|
|
(setq sections
|
|
|
|
|
(cons (list menu-node-name section) sections)))))
|
|
|
|
|
;; Other non-empty strings in the Top node are section names
|
|
|
|
|
((and (equal nodename "Top")
|
|
|
|
|
(looking-at "^\\([^ \t\n*=.-][^:\n]*\\)"))
|
|
|
|
|
(setq section (match-string-no-properties 1))))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(beginning-of-line)))
|
2008-06-15 18:18:16 +00:00
|
|
|
|
(setq nodes (cons (list nodename upnode
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(cadr (assoc nodename sections))
|
|
|
|
|
(nreverse menu-items))
|
|
|
|
|
nodes))
|
|
|
|
|
(goto-char bound)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(if main-file
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (search-forward "\n\^_\nIndirect:" nil t)
|
|
|
|
|
(let ((bound (save-excursion (search-forward "\n\^_" nil t))))
|
|
|
|
|
(while (re-search-forward "^\\(.*\\): [0-9]+$" bound t)
|
|
|
|
|
(setq subfiles (cons (match-string-no-properties 1)
|
|
|
|
|
subfiles)))))
|
|
|
|
|
(setq subfiles (nreverse subfiles)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
main-file nil))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(setq subfiles (cdr subfiles))))
|
|
|
|
|
(message "")
|
|
|
|
|
(nreverse nodes))))
|
2008-06-15 18:18:16 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-toc-nodes nil
|
|
|
|
|
"Alist of cached parent-children node information in visited Info files.
|
|
|
|
|
Each element is (FILE (NODE-NAME PARENT SECTION CHILDREN) ...)
|
|
|
|
|
where PARENT is the parent node extracted from the Up pointer,
|
|
|
|
|
SECTION is the section name in the Top node where this node is placed,
|
|
|
|
|
CHILDREN is a list of child nodes extracted from the node menu.")
|
|
|
|
|
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(defun Info-toc-nodes (filename)
|
|
|
|
|
"Return a node list of Info FILENAME with parent-children information.
|
2008-06-15 18:18:16 +00:00
|
|
|
|
This information is cached in the variable `Info-toc-nodes' with the help
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
of the function `Info-toc-build'."
|
|
|
|
|
(cond
|
|
|
|
|
((Info-virtual-call
|
|
|
|
|
(Info-virtual-fun 'toc-nodes (or filename Info-current-file) nil)
|
|
|
|
|
filename))
|
|
|
|
|
(t
|
|
|
|
|
(or filename (setq filename Info-current-file))
|
|
|
|
|
(or (assoc filename Info-toc-nodes)
|
|
|
|
|
;; Skip virtual Info files
|
|
|
|
|
(and (or (not (stringp filename))
|
|
|
|
|
(Info-virtual-file-p filename))
|
|
|
|
|
(push (cons filename nil) Info-toc-nodes))
|
|
|
|
|
;; Scan the entire manual and cache the result in Info-toc-nodes
|
|
|
|
|
(let ((nodes (Info-toc-build filename)))
|
|
|
|
|
(push (cons filename nodes) Info-toc-nodes)
|
|
|
|
|
nodes)
|
|
|
|
|
;; If there is an error, still add nil to the cache
|
|
|
|
|
(push (cons filename nil) Info-toc-nodes))
|
|
|
|
|
(cdr (assoc filename Info-toc-nodes)))))
|
2008-06-15 18:18:16 +00:00
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-follow-reference (footnotename &optional fork)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Follow cross reference named FOOTNOTENAME to the node it refers to.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
FOOTNOTENAME may be an abbreviation of the reference name.
|
|
|
|
|
If FORK is non-nil (interactively with a prefix arg), show the node in
|
2005-08-09 08:43:02 +00:00
|
|
|
|
a new Info buffer. If FORK is a string, it is the name to use for the
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
new buffer."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((completion-ignore-case t)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(case-fold-search t)
|
1994-01-10 22:35:29 +00:00
|
|
|
|
completions default alt-default (start-point (point)) str i bol eol)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(save-excursion
|
1994-01-10 22:35:29 +00:00
|
|
|
|
;; Store end and beginning of line.
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(setq eol (point))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq bol (point))
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(goto-char (point-min))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t)
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(setq str (match-string-no-properties 1))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; See if this one should be the default.
|
|
|
|
|
(and (null default)
|
1993-11-24 00:19:39 +00:00
|
|
|
|
(<= (match-beginning 0) start-point)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(<= start-point (point))
|
|
|
|
|
(setq default t))
|
1994-01-10 22:35:29 +00:00
|
|
|
|
;; See if this one should be the alternate default.
|
|
|
|
|
(and (null alt-default)
|
|
|
|
|
(and (<= bol (match-beginning 0))
|
|
|
|
|
(<= (point) eol))
|
|
|
|
|
(setq alt-default t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(setq i 0)
|
|
|
|
|
(while (setq i (string-match "[ \n\t]+" str i))
|
|
|
|
|
(setq str (concat (substring str 0 i) " "
|
|
|
|
|
(substring str (match-end 0))))
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
;; Record as a completion and perhaps as default.
|
|
|
|
|
(if (eq default t) (setq default str))
|
1994-01-10 22:35:29 +00:00
|
|
|
|
(if (eq alt-default t) (setq alt-default str))
|
1996-12-05 19:53:00 +00:00
|
|
|
|
;; Don't add this string if it's a duplicate.
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(or (assoc-string str completions t)
|
|
|
|
|
(push str completions))))
|
1994-01-10 22:35:29 +00:00
|
|
|
|
;; If no good default was found, try an alternate.
|
|
|
|
|
(or default
|
|
|
|
|
(setq default alt-default))
|
|
|
|
|
;; If only one cross-reference found, then make it default.
|
|
|
|
|
(if (eq (length completions) 1)
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(setq default (car completions)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(if completions
|
1993-06-08 04:41:00 +00:00
|
|
|
|
(let ((input (completing-read (if default
|
2001-10-11 01:19:49 +00:00
|
|
|
|
(concat
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
"Follow reference named (default "
|
|
|
|
|
default "): ")
|
1993-06-08 04:41:00 +00:00
|
|
|
|
"Follow reference named: ")
|
|
|
|
|
completions nil t)))
|
|
|
|
|
(list (if (equal input "")
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
default input) current-prefix-arg))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(error "No cross-references in this node"))))
|
1998-08-16 02:10:25 +00:00
|
|
|
|
|
|
|
|
|
(unless footnotename
|
|
|
|
|
(error "No reference was specified"))
|
|
|
|
|
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(let (target i (str (concat "\\*note " (regexp-quote footnotename)))
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(case-fold-search t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(while (setq i (string-match " " str i))
|
|
|
|
|
(setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i))))
|
|
|
|
|
(setq i (+ i 6)))
|
|
|
|
|
(save-excursion
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
;; Move point to the beginning of reference if point is on reference
|
|
|
|
|
(or (looking-at "\\*note[ \n\t]+")
|
|
|
|
|
(and (looking-back "\\*note[ \n\t]+")
|
|
|
|
|
(goto-char (match-beginning 0)))
|
|
|
|
|
(if (and (save-excursion
|
|
|
|
|
(goto-char (+ (point) 5)) ; skip a possible *note
|
|
|
|
|
(re-search-backward "\\*note[ \n\t]+" nil t)
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(looking-at str))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(<= (point) (match-end 0)))
|
|
|
|
|
(goto-char (match-beginning 0))))
|
|
|
|
|
;; Go to the reference closest to point
|
|
|
|
|
(let ((next-ref (save-excursion (and (re-search-forward str nil t)
|
|
|
|
|
(+ (match-beginning 0) 5))))
|
|
|
|
|
(prev-ref (save-excursion (and (re-search-backward str nil t)
|
|
|
|
|
(+ (match-beginning 0) 5)))))
|
|
|
|
|
(goto-char (cond ((and next-ref prev-ref)
|
|
|
|
|
(if (< (abs (- next-ref (point)))
|
|
|
|
|
(abs (- prev-ref (point))))
|
|
|
|
|
next-ref prev-ref))
|
|
|
|
|
((or next-ref prev-ref))
|
|
|
|
|
((error "No cross-reference named %s" footnotename))))
|
|
|
|
|
(setq target (Info-extract-menu-node-name t))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(while (setq i (string-match "[ \t\n]+" target i))
|
|
|
|
|
(setq target (concat (substring target 0 i) " "
|
|
|
|
|
(substring target (match-end 0))))
|
|
|
|
|
(setq i (+ i 1)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node target fork)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2003-07-16 15:54:25 +00:00
|
|
|
|
(defconst Info-menu-entry-name-re "\\(?:[^:]\\|:[^:,.;() \t\n]\\)*"
|
|
|
|
|
;; We allow newline because this is also used in Info-follow-reference,
|
|
|
|
|
;; where the xref name might be wrapped over two lines.
|
2003-07-04 23:05:35 +00:00
|
|
|
|
"Regexp that matches a menu entry name upto but not including the colon.
|
|
|
|
|
Because of ambiguities, this should be concatenated with something like
|
|
|
|
|
`:' and `Info-following-node-name-re'.")
|
|
|
|
|
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(defun Info-extract-menu-node-name (&optional multi-line index-node)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(skip-chars-forward " \t\n")
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(when (looking-at (concat Info-menu-entry-name-re ":\\(:\\|"
|
|
|
|
|
(Info-following-node-name-re
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(cond
|
|
|
|
|
(index-node "^,\t\n")
|
|
|
|
|
(multi-line "^.,\t")
|
|
|
|
|
(t "^.,\t\n")))
|
|
|
|
|
"\\)"
|
|
|
|
|
(if index-node
|
|
|
|
|
"\\.\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?"
|
|
|
|
|
"")))
|
|
|
|
|
(if index-node
|
|
|
|
|
(setq Info-point-loc
|
|
|
|
|
(if (match-beginning 5)
|
|
|
|
|
(string-to-number (match-string 5))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(match-beginning 0) (1- (match-beginning 1)))))
|
2004-10-28 09:02:04 +00:00
|
|
|
|
;;; Uncomment next line to use names of cross-references in non-index nodes:
|
2004-04-27 06:39:46 +00:00
|
|
|
|
;;; (setq Info-point-loc
|
|
|
|
|
;;; (buffer-substring (match-beginning 0) (1- (match-beginning 1))))
|
|
|
|
|
)
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"[ \n]+" " "
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(or (match-string-no-properties 2)
|
2003-07-04 23:05:35 +00:00
|
|
|
|
;; If the node name is the menu entry name (using `entry::').
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(match-beginning 0) (1- (match-beginning 1)))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1994-06-10 21:00:53 +00:00
|
|
|
|
;; No one calls this.
|
1992-10-27 10:14:08 +00:00
|
|
|
|
;;(defun Info-menu-item-sequence (list)
|
|
|
|
|
;; (while list
|
1994-06-10 21:00:53 +00:00
|
|
|
|
;; (Info-menu (car list))
|
1992-10-27 10:14:08 +00:00
|
|
|
|
;; (setq list (cdr list))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1998-07-15 00:09:43 +00:00
|
|
|
|
(defvar Info-complete-menu-buffer)
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(defvar Info-complete-next-re nil)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(defvar Info-complete-nodes nil)
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(defvar Info-complete-cache nil)
|
1998-07-15 00:09:43 +00:00
|
|
|
|
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(defconst Info-node-spec-re
|
|
|
|
|
(concat (Info-following-node-name-re "^.,:") "[,:.]")
|
2003-06-03 21:44:53 +00:00
|
|
|
|
"Regexp to match the text after a : until the terminating `.'.")
|
|
|
|
|
|
1994-06-10 21:00:53 +00:00
|
|
|
|
(defun Info-complete-menu-item (string predicate action)
|
2001-12-03 04:26:43 +00:00
|
|
|
|
;; This uses two dynamically bound variables:
|
|
|
|
|
;; - `Info-complete-menu-buffer' which contains the buffer in which
|
|
|
|
|
;; is the menu of items we're trying to complete.
|
|
|
|
|
;; - `Info-complete-next-re' which, if non-nil, indicates that we should
|
|
|
|
|
;; also look for menu items in subsequent nodes as long as those
|
|
|
|
|
;; nodes' names match `Info-complete-next-re'. This feature is currently
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
;; not used.
|
|
|
|
|
;; - `Info-complete-nodes' which, if non-nil, indicates that we should
|
|
|
|
|
;; also look for menu items in these nodes. This feature is currently
|
2001-12-03 04:26:43 +00:00
|
|
|
|
;; only used for completion in Info-index.
|
2003-06-06 16:13:31 +00:00
|
|
|
|
|
|
|
|
|
;; Note that `Info-complete-menu-buffer' could be current already,
|
|
|
|
|
;; so we want to save point.
|
2008-04-19 03:33:13 +00:00
|
|
|
|
(with-current-buffer Info-complete-menu-buffer
|
2008-04-22 15:36:53 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((completion-ignore-case t)
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
(orignode Info-current-node)
|
|
|
|
|
nextnode)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n* Menu:")
|
2009-10-19 13:47:10 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq (car-safe action) 'boundaries) nil)
|
|
|
|
|
((eq action 'lambda)
|
|
|
|
|
(re-search-forward
|
|
|
|
|
(concat "\n\\* +" (regexp-quote string) ":") nil t))
|
|
|
|
|
(t
|
2008-04-22 15:36:53 +00:00
|
|
|
|
(let ((pattern (concat "\n\\* +\\("
|
|
|
|
|
(regexp-quote string)
|
2009-10-19 13:47:10 +00:00
|
|
|
|
Info-menu-entry-name-re "\\):"
|
|
|
|
|
Info-node-spec-re))
|
2008-04-22 15:36:53 +00:00
|
|
|
|
completions
|
|
|
|
|
(complete-nodes Info-complete-nodes))
|
|
|
|
|
;; Check the cache.
|
|
|
|
|
(if (and (equal (nth 0 Info-complete-cache) Info-current-file)
|
|
|
|
|
(equal (nth 1 Info-complete-cache) Info-current-node)
|
|
|
|
|
(equal (nth 2 Info-complete-cache) Info-complete-next-re)
|
|
|
|
|
(equal (nth 5 Info-complete-cache) Info-complete-nodes)
|
|
|
|
|
(let ((prev (nth 3 Info-complete-cache)))
|
|
|
|
|
(eq t (compare-strings string 0 (length prev)
|
|
|
|
|
prev 0 nil t))))
|
|
|
|
|
;; We can reuse the previous list.
|
|
|
|
|
(setq completions (nth 4 Info-complete-cache))
|
|
|
|
|
;; The cache can't be used.
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(while (re-search-forward pattern nil t)
|
|
|
|
|
(push (match-string-no-properties 1)
|
|
|
|
|
completions))
|
|
|
|
|
;; Check subsequent nodes if applicable.
|
|
|
|
|
(or (and Info-complete-next-re
|
|
|
|
|
(setq nextnode (Info-extract-pointer "next" t))
|
|
|
|
|
(string-match Info-complete-next-re nextnode))
|
|
|
|
|
(and complete-nodes
|
|
|
|
|
(setq complete-nodes (cdr complete-nodes)
|
|
|
|
|
nextnode (car complete-nodes)))))
|
|
|
|
|
(Info-goto-node nextnode))
|
|
|
|
|
;; Go back to the start node (for the next completion).
|
|
|
|
|
(unless (equal Info-current-node orignode)
|
|
|
|
|
(Info-goto-node orignode))
|
|
|
|
|
;; Update the cache.
|
|
|
|
|
(set (make-local-variable 'Info-complete-cache)
|
2008-04-22 15:49:43 +00:00
|
|
|
|
(list Info-current-file Info-current-node
|
|
|
|
|
Info-complete-next-re string completions
|
|
|
|
|
Info-complete-nodes)))
|
2009-10-19 13:47:10 +00:00
|
|
|
|
(complete-with-action action completions string predicate))))))))
|
1994-06-10 21:00:53 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(defun Info-menu (menu-item &optional fork)
|
2001-09-22 15:10:59 +00:00
|
|
|
|
"Go to the node pointed to by the menu item named (or abbreviated) MENU-ITEM.
|
|
|
|
|
The menu item should one of those listed in the current node's menu.
|
|
|
|
|
Completion is allowed, and the default menu item is the one point is on.
|
2000-10-08 15:44:36 +00:00
|
|
|
|
If FORK is non-nil (interactively with a prefix arg), show the node in
|
2005-08-09 08:43:02 +00:00
|
|
|
|
a new Info buffer. If FORK is a string, it is the name to use for the
|
2000-10-08 15:44:36 +00:00
|
|
|
|
new buffer."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(interactive
|
2009-10-19 13:47:10 +00:00
|
|
|
|
(let (;; If point is within a menu item, use that item as the default
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(default nil)
|
|
|
|
|
(p (point))
|
1995-03-11 04:37:47 +00:00
|
|
|
|
beg
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(case-fold-search t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (not (search-forward "\n* menu:" nil t))
|
|
|
|
|
(error "No menu in this node"))
|
1994-06-10 21:00:53 +00:00
|
|
|
|
(setq beg (point))
|
|
|
|
|
(and (< (point) p)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char p)
|
|
|
|
|
(end-of-line)
|
2003-07-07 14:46:00 +00:00
|
|
|
|
(if (re-search-backward (concat "\n\\* +\\("
|
|
|
|
|
Info-menu-entry-name-re
|
|
|
|
|
"\\):") beg t)
|
1999-11-24 19:53:56 +00:00
|
|
|
|
(setq default (match-string-no-properties 1))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(let ((item nil))
|
|
|
|
|
(while (null item)
|
1994-06-10 21:00:53 +00:00
|
|
|
|
(setq item (let ((completion-ignore-case t)
|
|
|
|
|
(Info-complete-menu-buffer (current-buffer)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(completing-read (if default
|
|
|
|
|
(format "Menu item (default %s): "
|
|
|
|
|
default)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
"Menu item: ")
|
1994-06-10 21:00:53 +00:00
|
|
|
|
'Info-complete-menu-item nil t)))
|
1992-02-07 21:40:34 +00:00
|
|
|
|
;; we rely on the fact that completing-read accepts an input
|
|
|
|
|
;; of "" even when the require-match argument is true and ""
|
|
|
|
|
;; is not a valid possibility
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(if (string= item "")
|
|
|
|
|
(if default
|
|
|
|
|
(setq item default)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
;; ask again
|
|
|
|
|
(setq item nil))))
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(list item current-prefix-arg))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; there is a problem here in that if several menu items have the same
|
|
|
|
|
;; name you can only go to the node of the first with this command.
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(Info-goto-node (Info-extract-menu-item menu-item) (if fork menu-item)))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-extract-menu-item (menu-item)
|
|
|
|
|
(setq menu-item (regexp-quote menu-item))
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(save-excursion
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(or (search-forward "\n* menu:" nil t)
|
|
|
|
|
(error "No menu in this node"))
|
|
|
|
|
(or (re-search-forward (concat "\n\\* +" menu-item ":") nil t)
|
|
|
|
|
(re-search-forward (concat "\n\\* +" menu-item) nil t)
|
|
|
|
|
(error "No such item in menu"))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(forward-char 2)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(Info-extract-menu-node-name nil (Info-index-node))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
;; If COUNT is nil, use the last item in the menu.
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(defun Info-extract-menu-counting (count &optional no-detail)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(save-excursion
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(let ((case-fold-search t)
|
|
|
|
|
(bound (when (and no-detail
|
|
|
|
|
(re-search-forward
|
|
|
|
|
"^[ \t-]*The Detailed Node Listing" nil t))
|
|
|
|
|
(match-beginning 0))))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(goto-char (point-min))
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(or (search-forward "\n* menu:" bound t)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(error "No menu in this node"))
|
|
|
|
|
(if count
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(or (search-forward "\n* " bound t count)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(error "Too few items in menu"))
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(while (search-forward "\n* " bound t)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
nil))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(Info-extract-menu-node-name nil (Info-index-node))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1992-12-09 17:28:25 +00:00
|
|
|
|
(defun Info-nth-menu-item ()
|
|
|
|
|
"Go to the node of the Nth menu item.
|
|
|
|
|
N is the digit argument used to invoke this command."
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(interactive)
|
1992-12-09 17:28:25 +00:00
|
|
|
|
(Info-goto-node
|
|
|
|
|
(Info-extract-menu-counting
|
|
|
|
|
(- (aref (this-command-keys) (1- (length (this-command-keys)))) ?0))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-top-node ()
|
|
|
|
|
"Go to the Top node of this file."
|
|
|
|
|
(interactive)
|
|
|
|
|
(Info-goto-node "Top"))
|
|
|
|
|
|
|
|
|
|
(defun Info-final-node ()
|
|
|
|
|
"Go to the final node in this file."
|
|
|
|
|
(interactive)
|
|
|
|
|
(Info-goto-node "Top")
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let ((Info-history nil)
|
|
|
|
|
(case-fold-search t))
|
2008-10-10 13:47:49 +00:00
|
|
|
|
;; Go to the last node in the menu of Top. But don't delve into
|
|
|
|
|
;; detailed node listings.
|
|
|
|
|
(Info-goto-node (Info-extract-menu-counting nil t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; If the last node in the menu is not last in pointer structure,
|
2008-10-10 13:47:49 +00:00
|
|
|
|
;; move forward (but not down- or upward - see bug#1116) until we
|
|
|
|
|
;; can't go any farther.
|
|
|
|
|
(while (Info-forward-node t t t) nil)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
;; Then keep moving down to last subnode, unless we reach an index.
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(while (and (not (Info-index-node))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(save-excursion (search-forward "\n* Menu:" nil t)))
|
|
|
|
|
(Info-goto-node (Info-extract-menu-counting nil)))))
|
|
|
|
|
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(defun Info-forward-node (&optional not-down not-up no-error)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Go forward one node, considering all nodes as forming one sequence."
|
|
|
|
|
(interactive)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line 1)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
;; three possibilities, in order of priority:
|
|
|
|
|
;; 1. next node is in a menu in this node (but not in an index)
|
|
|
|
|
;; 2. next node is next at same level
|
|
|
|
|
;; 3. next node is up and next
|
|
|
|
|
(cond ((and (not not-down)
|
|
|
|
|
(save-excursion (search-forward "\n* menu:" nil t))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(not (Info-index-node)))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(Info-goto-node (Info-extract-menu-counting 1))
|
|
|
|
|
t)
|
2002-11-03 12:01:33 +00:00
|
|
|
|
((save-excursion (search-backward "next:" nil t))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(Info-next)
|
|
|
|
|
t)
|
2008-10-10 13:47:49 +00:00
|
|
|
|
((and (not not-up)
|
|
|
|
|
(save-excursion (search-backward "up:" nil t))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
;; Use string-equal, not equal, to ignore text props.
|
|
|
|
|
(not (string-equal (downcase (Info-extract-pointer "up"))
|
|
|
|
|
"top")))
|
|
|
|
|
(let ((old-node Info-current-node))
|
|
|
|
|
(Info-up)
|
|
|
|
|
(let (Info-history success)
|
|
|
|
|
(unwind-protect
|
2008-10-10 13:47:49 +00:00
|
|
|
|
(setq success (Info-forward-node t nil no-error))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(or success (Info-goto-node old-node))))))
|
|
|
|
|
(no-error nil)
|
|
|
|
|
(t (error "No pointer forward from this node")))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-backward-node ()
|
|
|
|
|
"Go backward one node, considering all nodes as forming one sequence."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((prevnode (Info-extract-pointer "prev[ious]*" t))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(upnode (Info-extract-pointer "up" t))
|
|
|
|
|
(case-fold-search t))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(cond ((and upnode (string-match "(" upnode))
|
|
|
|
|
(error "First node in file"))
|
|
|
|
|
((and upnode (or (null prevnode)
|
1995-04-24 15:31:19 +00:00
|
|
|
|
;; Use string-equal, not equal,
|
|
|
|
|
;; to ignore text properties.
|
|
|
|
|
(string-equal (downcase prevnode)
|
|
|
|
|
(downcase upnode))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(Info-up))
|
|
|
|
|
(prevnode
|
|
|
|
|
;; If we move back at the same level,
|
|
|
|
|
;; go down to find the last subnode*.
|
|
|
|
|
(Info-prev)
|
|
|
|
|
(let (Info-history)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(while (and (not (Info-index-node))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(save-excursion (search-forward "\n* Menu:" nil t)))
|
|
|
|
|
(Info-goto-node (Info-extract-menu-counting nil)))))
|
|
|
|
|
(t
|
|
|
|
|
(error "No pointer backward from this node")))))
|
|
|
|
|
|
|
|
|
|
(defun Info-exit ()
|
|
|
|
|
"Exit Info by selecting some other buffer."
|
|
|
|
|
(interactive)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(if Info-standalone
|
|
|
|
|
(save-buffers-kill-emacs)
|
1998-06-02 06:55:39 +00:00
|
|
|
|
(quit-window)))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(defun Info-next-menu-item ()
|
2002-10-08 04:57:27 +00:00
|
|
|
|
"Go to the node of the next menu item."
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(interactive)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
;; Bind this in case the user sets it to nil.
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(node
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-line -1)
|
|
|
|
|
(search-forward "\n* menu:" nil t)
|
|
|
|
|
(and (search-forward "\n* " nil t)
|
|
|
|
|
(Info-extract-menu-node-name)))))
|
1998-10-22 01:35:03 +00:00
|
|
|
|
(if node (Info-goto-node node)
|
|
|
|
|
(error "No more items in menu"))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-last-menu-item ()
|
2002-10-08 04:57:27 +00:00
|
|
|
|
"Go to the node of the previous menu item."
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-line 1)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
;; Bind this in case the user sets it to nil.
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(beg (save-excursion
|
|
|
|
|
(and (search-backward "\n* menu:" nil t)
|
|
|
|
|
(point)))))
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(or (and beg (search-backward "\n* " beg t))
|
|
|
|
|
(error "No previous items in menu")))
|
|
|
|
|
(Info-goto-node (save-excursion
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(Info-extract-menu-node-name)))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(defmacro Info-no-error (&rest body)
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(list 'condition-case nil (cons 'progn (append body '(t))) '(error nil)))
|
|
|
|
|
|
|
|
|
|
(defun Info-next-preorder ()
|
1994-06-23 14:24:38 +00:00
|
|
|
|
"Go to the next subnode or the next node, or go up a level."
|
|
|
|
|
(interactive)
|
|
|
|
|
(cond ((Info-no-error (Info-next-menu-item)))
|
|
|
|
|
((Info-no-error (Info-next)))
|
1998-05-03 00:02:10 +00:00
|
|
|
|
((Info-no-error (Info-up t))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
;; Since we have already gone thru all the items in this menu,
|
|
|
|
|
;; go up to the end of this node.
|
1996-06-30 08:12:17 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
;; Since logically we are done with the node with that menu,
|
2008-05-11 20:32:33 +00:00
|
|
|
|
;; move on from it. But don't add intermediate nodes
|
|
|
|
|
;; to the history on recursive calls.
|
|
|
|
|
(let (Info-history)
|
|
|
|
|
(Info-next-preorder)))
|
1994-06-23 14:24:38 +00:00
|
|
|
|
(t
|
|
|
|
|
(error "No more nodes"))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-last-preorder ()
|
|
|
|
|
"Go to the last node, popping up a level if there is none."
|
|
|
|
|
(interactive)
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(cond ((Info-no-error
|
|
|
|
|
(Info-last-menu-item)
|
|
|
|
|
;; If we go down a menu item, go to the end of the node
|
|
|
|
|
;; so we can scroll back through it.
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(goto-char (point-max)))
|
1996-06-30 08:12:17 +00:00
|
|
|
|
;; Keep going down, as long as there are nested menu nodes.
|
|
|
|
|
(while (Info-no-error
|
|
|
|
|
(Info-last-menu-item)
|
|
|
|
|
;; If we go down a menu item, go to the end of the node
|
|
|
|
|
;; so we can scroll back through it.
|
|
|
|
|
(goto-char (point-max))))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(recenter -1))
|
2000-12-12 07:15:52 +00:00
|
|
|
|
((and (Info-no-error (Info-extract-pointer "prev"))
|
|
|
|
|
(not (equal (Info-extract-pointer "up")
|
1998-05-03 00:02:10 +00:00
|
|
|
|
(Info-extract-pointer "prev"))))
|
|
|
|
|
(Info-no-error (Info-prev))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(goto-char (point-max))
|
1996-06-30 08:12:17 +00:00
|
|
|
|
(while (Info-no-error
|
|
|
|
|
(Info-last-menu-item)
|
|
|
|
|
;; If we go down a menu item, go to the end of the node
|
|
|
|
|
;; so we can scroll back through it.
|
|
|
|
|
(goto-char (point-max))))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(recenter -1))
|
1998-05-03 00:02:10 +00:00
|
|
|
|
((Info-no-error (Info-up t))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(goto-char (point-min))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(or (search-forward "\n* Menu:" nil t)
|
|
|
|
|
(goto-char (point-max)))))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(t (error "No previous nodes"))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-scroll-up ()
|
1994-10-02 08:36:08 +00:00
|
|
|
|
"Scroll one screenful forward in Info, considering all nodes as one sequence.
|
1996-11-02 07:39:07 +00:00
|
|
|
|
Once you scroll far enough in a node that its menu appears on the screen
|
2000-12-04 16:38:22 +00:00
|
|
|
|
but after point, the next scroll moves into its first subnode, unless
|
|
|
|
|
`Info-scroll-prefer-subnodes' is nil.
|
1996-11-02 07:39:07 +00:00
|
|
|
|
|
2000-12-04 16:38:22 +00:00
|
|
|
|
When you scroll past the end of a node, that goes to the next node if
|
|
|
|
|
`Info-scroll-prefer-subnodes' is non-nil and to the first subnode otherwise;
|
|
|
|
|
if this node has no successor, it moves to the parent node's successor,
|
|
|
|
|
and so on. If `Info-scroll-prefer-subnodes' is non-nil and point is inside
|
|
|
|
|
the menu of a node, it moves to subnode indicated by the following menu
|
|
|
|
|
item. (That case won't normally result from this command, but can happen
|
|
|
|
|
in other ways.)"
|
1996-11-02 07:39:07 +00:00
|
|
|
|
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(interactive)
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(if (or (< (window-start) (point-min))
|
|
|
|
|
(> (window-start) (point-max)))
|
|
|
|
|
(set-window-start (selected-window) (point)))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(virtual-end (save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2000-12-04 16:38:22 +00:00
|
|
|
|
(if (and Info-scroll-prefer-subnodes
|
|
|
|
|
(search-forward "\n* Menu:" nil t))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(point)
|
|
|
|
|
(point-max)))))
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(if (or (< virtual-end (window-start))
|
|
|
|
|
(pos-visible-in-window-p virtual-end))
|
2000-12-04 16:38:22 +00:00
|
|
|
|
(cond
|
|
|
|
|
(Info-scroll-prefer-subnodes (Info-next-preorder))
|
|
|
|
|
((Info-no-error (Info-goto-node (Info-extract-menu-counting 1))))
|
|
|
|
|
(t (Info-next-preorder)))
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(scroll-up))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
2007-04-23 15:21:47 +00:00
|
|
|
|
(defun Info-mouse-scroll-up (e)
|
|
|
|
|
"Scroll one screenful forward in Info, using the mouse.
|
|
|
|
|
See `Info-scroll-up'."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(save-selected-window
|
|
|
|
|
(if (eventp e)
|
|
|
|
|
(select-window (posn-window (event-start e))))
|
|
|
|
|
(Info-scroll-up)))
|
|
|
|
|
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(defun Info-scroll-down ()
|
1994-10-02 08:36:08 +00:00
|
|
|
|
"Scroll one screenful back in Info, considering all nodes as one sequence.
|
2000-12-12 07:15:52 +00:00
|
|
|
|
If point is within the menu of a node, and `Info-scroll-prefer-subnodes'
|
|
|
|
|
is non-nil, this goes to its last subnode. When you scroll past the
|
|
|
|
|
beginning of a node, that goes to the previous node or back up to the
|
|
|
|
|
parent node."
|
1992-08-04 16:49:42 +00:00
|
|
|
|
(interactive)
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(if (or (< (window-start) (point-min))
|
|
|
|
|
(> (window-start) (point-max)))
|
|
|
|
|
(set-window-start (selected-window) (point)))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(current-point (point))
|
2000-12-12 07:15:52 +00:00
|
|
|
|
(virtual-end
|
|
|
|
|
(and Info-scroll-prefer-subnodes
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq current-point (point))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n* Menu:"
|
|
|
|
|
current-point
|
|
|
|
|
t)))))
|
2002-10-08 04:57:27 +00:00
|
|
|
|
(if (or virtual-end
|
2001-03-20 14:22:50 +00:00
|
|
|
|
(pos-visible-in-window-p (point-min) nil t))
|
1994-08-09 01:41:08 +00:00
|
|
|
|
(Info-last-preorder)
|
|
|
|
|
(scroll-down))))
|
1992-08-04 16:49:42 +00:00
|
|
|
|
|
2007-04-23 15:21:47 +00:00
|
|
|
|
(defun Info-mouse-scroll-down (e)
|
|
|
|
|
"Scroll one screenful backward in Info, using the mouse.
|
|
|
|
|
See `Info-scroll-down'."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(save-selected-window
|
|
|
|
|
(if (eventp e)
|
|
|
|
|
(select-window (posn-window (event-start e))))
|
|
|
|
|
(Info-scroll-down)))
|
|
|
|
|
|
1996-04-21 01:47:02 +00:00
|
|
|
|
(defun Info-next-reference (&optional recur)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
"Move cursor to the next cross-reference or menu item in the node."
|
|
|
|
|
(interactive)
|
2008-02-11 03:21:08 +00:00
|
|
|
|
(let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(old-pt (point))
|
|
|
|
|
(case-fold-search t))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(or (eobp) (forward-char 1))
|
|
|
|
|
(or (re-search-forward pat nil t)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(or (re-search-forward pat nil t)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char old-pt)
|
|
|
|
|
(error "No cross references in this node")))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(goto-char (or (match-beginning 1) (match-beginning 0)))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(if (looking-at "\\* Menu:")
|
1996-04-21 01:47:02 +00:00
|
|
|
|
(if recur
|
|
|
|
|
(error "No cross references in this node")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(Info-next-reference t))
|
|
|
|
|
(if (looking-at "^\\* ")
|
|
|
|
|
(forward-char 2)))))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
|
1996-04-21 01:47:02 +00:00
|
|
|
|
(defun Info-prev-reference (&optional recur)
|
1993-08-02 04:22:12 +00:00
|
|
|
|
"Move cursor to the previous cross-reference or menu item in the node."
|
|
|
|
|
(interactive)
|
2008-02-11 03:21:08 +00:00
|
|
|
|
(let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(old-pt (point))
|
|
|
|
|
(case-fold-search t))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(or (re-search-backward pat nil t)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(or (re-search-backward pat nil t)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char old-pt)
|
|
|
|
|
(error "No cross references in this node")))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(goto-char (or (match-beginning 1) (match-beginning 0)))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(if (looking-at "\\* Menu:")
|
1996-04-21 01:47:02 +00:00
|
|
|
|
(if recur
|
|
|
|
|
(error "No cross references in this node")
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(Info-prev-reference t))
|
|
|
|
|
(if (looking-at "^\\* ")
|
|
|
|
|
(forward-char 2)))))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-index-nodes nil
|
|
|
|
|
"Alist of cached index node names of visited Info files.
|
|
|
|
|
Each element has the form (INFO-FILE INDEX-NODE-NAMES-LIST).")
|
|
|
|
|
|
|
|
|
|
(defun Info-index-nodes (&optional file)
|
|
|
|
|
"Return a list of names of all index nodes in Info FILE.
|
|
|
|
|
If FILE is omitted, it defaults to the current Info file.
|
2004-05-25 20:59:31 +00:00
|
|
|
|
First look in a list of cached index node names. Then scan Info
|
|
|
|
|
file and its subfiles for nodes with the index cookie. Then try
|
|
|
|
|
to find index nodes starting from the first node in the top level
|
|
|
|
|
menu whose name contains the word \"Index\", plus any immediately
|
|
|
|
|
following nodes whose names also contain the word \"Index\"."
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(or file (setq file Info-current-file))
|
|
|
|
|
(or (assoc file Info-index-nodes)
|
|
|
|
|
;; Skip virtual Info files
|
2008-06-15 18:18:16 +00:00
|
|
|
|
(and (or (not (stringp file))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(Info-virtual-file-p file))
|
2004-05-25 20:59:31 +00:00
|
|
|
|
(setq Info-index-nodes (cons (cons file nil) Info-index-nodes)))
|
2008-10-18 23:45:05 +00:00
|
|
|
|
(if (Info-file-supports-index-cookies file)
|
2005-11-01 09:45:38 +00:00
|
|
|
|
;; Find nodes with index cookie
|
|
|
|
|
(let* ((default-directory (or (and (stringp file)
|
|
|
|
|
(file-name-directory
|
|
|
|
|
(setq file (Info-find-file file))))
|
|
|
|
|
default-directory))
|
|
|
|
|
Info-history Info-history-list Info-fontify-maximum-menu-size
|
2009-10-19 13:47:10 +00:00
|
|
|
|
(main-file file) subfiles nodes)
|
2005-11-01 09:45:38 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(while (or main-file subfiles)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(info-insert-file-contents (or main-file (car subfiles)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\0\b[index\0\b]" nil 'move)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(re-search-backward "^\^_")
|
|
|
|
|
(search-forward "Node: ")
|
|
|
|
|
(setq nodes (cons (Info-following-node-name) nodes))))
|
|
|
|
|
(if main-file
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (search-forward "\n\^_\nIndirect:" nil t)
|
|
|
|
|
(let ((bound (save-excursion (search-forward "\n\^_" nil t))))
|
|
|
|
|
(while (re-search-forward "^\\(.*\\): [0-9]+$" bound t)
|
|
|
|
|
(setq subfiles (cons (match-string-no-properties 1)
|
|
|
|
|
subfiles)))))
|
|
|
|
|
(setq subfiles (nreverse subfiles)
|
|
|
|
|
main-file nil))
|
|
|
|
|
(setq subfiles (cdr subfiles)))))
|
|
|
|
|
(error nil))
|
|
|
|
|
(if nodes
|
|
|
|
|
(setq nodes (nreverse nodes)
|
|
|
|
|
Info-index-nodes (cons (cons file nodes) Info-index-nodes)))
|
|
|
|
|
nodes)
|
|
|
|
|
;; Else find nodes with the word "Index" in the node name
|
|
|
|
|
(let ((case-fold-search t)
|
2008-10-18 23:45:05 +00:00
|
|
|
|
Info-history Info-history-list Info-fontify-maximum-menu-size Info-point-loc
|
2005-11-01 09:45:38 +00:00
|
|
|
|
nodes node)
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(Info-mode)
|
|
|
|
|
(Info-find-node file "Top")
|
|
|
|
|
(when (and (search-forward "\n* menu:" nil t)
|
|
|
|
|
(re-search-forward "\n\\* \\(.*\\<Index\\>\\)" nil t))
|
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
|
(setq nodes (list (Info-extract-menu-node-name)))
|
|
|
|
|
(Info-goto-node (car nodes))
|
|
|
|
|
(while (and (setq node (Info-extract-pointer "next" t))
|
|
|
|
|
(string-match "\\<Index\\>" node))
|
2009-10-19 13:47:10 +00:00
|
|
|
|
(push node nodes)
|
2005-11-01 09:45:38 +00:00
|
|
|
|
(Info-goto-node node))))
|
|
|
|
|
(error nil))
|
|
|
|
|
(if nodes
|
|
|
|
|
(setq nodes (nreverse nodes)
|
|
|
|
|
Info-index-nodes (cons (cons file nodes) Info-index-nodes)))
|
|
|
|
|
nodes))
|
2004-05-25 20:59:31 +00:00
|
|
|
|
;; If file has no index nodes, still add it to the cache
|
|
|
|
|
(setq Info-index-nodes (cons (cons file nil) Info-index-nodes)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(cdr (assoc file Info-index-nodes)))
|
|
|
|
|
|
|
|
|
|
(defun Info-index-node (&optional node file)
|
|
|
|
|
"Return non-nil value if NODE is an index node.
|
|
|
|
|
If NODE is nil, check the current Info node.
|
|
|
|
|
If FILE is nil, check the current Info file."
|
2008-10-18 23:45:05 +00:00
|
|
|
|
(or file (setq file Info-current-file))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(if (and (or (and node (not (equal node Info-current-node)))
|
|
|
|
|
(assoc file Info-index-nodes))
|
|
|
|
|
(not Info-current-node-virtual))
|
2004-05-25 20:59:31 +00:00
|
|
|
|
(member (or node Info-current-node) (Info-index-nodes file))
|
|
|
|
|
;; Don't search all index nodes if request is only for the current node
|
|
|
|
|
;; and file is not in the cache of index nodes
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(if (Info-file-supports-index-cookies file)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (+ (or (save-excursion
|
|
|
|
|
(search-backward "\n\^_" nil t))
|
|
|
|
|
(point-min)) 2))
|
|
|
|
|
(search-forward "\0\b[index\0\b]"
|
|
|
|
|
(or (save-excursion
|
|
|
|
|
(search-forward "\n\^_" nil t))
|
|
|
|
|
(point-max)) t))
|
2005-11-01 09:45:38 +00:00
|
|
|
|
(string-match "\\<Index\\>" (or node Info-current-node ""))))))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(defun Info-goto-index ()
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
"Go to the first index node."
|
|
|
|
|
(let ((node (car (Info-index-nodes))))
|
|
|
|
|
(or node (error "No index"))
|
|
|
|
|
(Info-goto-node node)))
|
2001-11-29 23:20:49 +00:00
|
|
|
|
|
2003-05-28 11:20:42 +00:00
|
|
|
|
;;;###autoload
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(defun Info-index (topic)
|
2006-02-04 12:12:39 +00:00
|
|
|
|
"Look up a string TOPIC in the index for this manual and go to that entry.
|
1993-04-23 02:20:55 +00:00
|
|
|
|
If there are no exact matches to the specified topic, this chooses
|
|
|
|
|
the first match which is a case-insensitive substring of a topic.
|
2004-04-21 22:23:25 +00:00
|
|
|
|
Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
|
2006-02-04 12:12:39 +00:00
|
|
|
|
Give an empty topic name to go to the Index node itself."
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
2006-09-07 20:45:19 +00:00
|
|
|
|
(let ((completion-ignore-case t)
|
|
|
|
|
(Info-complete-menu-buffer (clone-buffer))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(Info-complete-nodes (Info-index-nodes))
|
|
|
|
|
(Info-history-list nil))
|
2002-07-01 07:48:12 +00:00
|
|
|
|
(if (equal Info-current-file "dir")
|
|
|
|
|
(error "The Info directory node has no index; use m to select a manual"))
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(with-current-buffer Info-complete-menu-buffer
|
|
|
|
|
(Info-goto-index)
|
|
|
|
|
(completing-read "Index topic: " 'Info-complete-menu-item))
|
|
|
|
|
(kill-buffer Info-complete-menu-buffer)))))
|
2002-07-01 07:48:12 +00:00
|
|
|
|
(if (equal Info-current-file "dir")
|
|
|
|
|
(error "The Info directory node has no index; use m to select a manual"))
|
2006-12-07 16:05:56 +00:00
|
|
|
|
;; Strip leading colon in topic; index format does not allow them.
|
|
|
|
|
(if (and (stringp topic)
|
|
|
|
|
(> (length topic) 0)
|
|
|
|
|
(= (aref topic 0) ?:))
|
|
|
|
|
(setq topic (substring topic 1)))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(let ((orignode Info-current-node)
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]*\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?"
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(regexp-quote topic)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
node (nodes (Info-index-nodes))
|
|
|
|
|
(ohist-list Info-history-list)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(case-fold-search t))
|
2001-11-29 23:46:01 +00:00
|
|
|
|
(Info-goto-index)
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(or (equal topic "")
|
|
|
|
|
(let ((matches nil)
|
|
|
|
|
(exact nil)
|
2001-11-29 23:46:01 +00:00
|
|
|
|
;; We bind Info-history to nil for internal node-switches so
|
|
|
|
|
;; that we don't put junk in the history. In the first
|
|
|
|
|
;; Info-goto-index call, above, we do update the history
|
|
|
|
|
;; because that is what the user's previous node choice into it.
|
1995-02-15 08:36:09 +00:00
|
|
|
|
(Info-history nil)
|
1993-04-23 02:20:55 +00:00
|
|
|
|
found)
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward pattern nil t)
|
2000-09-27 21:55:54 +00:00
|
|
|
|
(push (list (match-string-no-properties 1)
|
|
|
|
|
(match-string-no-properties 2)
|
|
|
|
|
Info-current-node
|
2002-10-08 04:57:27 +00:00
|
|
|
|
(string-to-number (concat "0"
|
|
|
|
|
(match-string 3))))
|
2000-09-27 21:55:54 +00:00
|
|
|
|
matches))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(setq nodes (cdr nodes) node (car nodes)))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(Info-goto-node node))
|
|
|
|
|
(or matches
|
|
|
|
|
(progn
|
1996-02-25 18:31:16 +00:00
|
|
|
|
(Info-goto-node orignode)
|
1996-02-12 20:57:39 +00:00
|
|
|
|
(error "No `%s' in index" topic)))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
;; Here it is a feature that assoc is case-sensitive.
|
|
|
|
|
(while (setq found (assoc topic matches))
|
|
|
|
|
(setq exact (cons found exact)
|
|
|
|
|
matches (delq found matches)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(setq Info-history-list ohist-list)
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(setq Info-index-alternatives (nconc exact (nreverse matches)))
|
|
|
|
|
(Info-index-next 0)))))
|
|
|
|
|
|
|
|
|
|
(defun Info-index-next (num)
|
2004-04-21 22:23:25 +00:00
|
|
|
|
"Go to the next matching index item from the last \\<Info-mode-map>\\[Info-index] command."
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(interactive "p")
|
|
|
|
|
(or Info-index-alternatives
|
1996-12-30 20:44:24 +00:00
|
|
|
|
(error "No previous `i' command"))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(while (< num 0)
|
|
|
|
|
(setq num (+ num (length Info-index-alternatives))))
|
|
|
|
|
(while (> num 0)
|
|
|
|
|
(setq Info-index-alternatives
|
|
|
|
|
(nconc (cdr Info-index-alternatives)
|
|
|
|
|
(list (car Info-index-alternatives)))
|
|
|
|
|
num (1- num)))
|
|
|
|
|
(Info-goto-node (nth 1 (car Info-index-alternatives)))
|
|
|
|
|
(if (> (nth 3 (car Info-index-alternatives)) 0)
|
2010-03-03 19:23:20 +00:00
|
|
|
|
;; Forward 2 lines less because `Info-find-node-2' initially
|
|
|
|
|
;; puts point to the 2nd line.
|
2010-03-02 21:15:46 +00:00
|
|
|
|
(forward-line (- (nth 3 (car Info-index-alternatives)) 2))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(forward-line 3) ; don't search in headers
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(let ((name (car (car Info-index-alternatives))))
|
1996-02-12 20:57:39 +00:00
|
|
|
|
(Info-find-index-name name)))
|
|
|
|
|
(message "Found `%s' in %s. %s"
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(car (car Info-index-alternatives))
|
|
|
|
|
(nth 2 (car Info-index-alternatives))
|
|
|
|
|
(if (cdr Info-index-alternatives)
|
2006-05-26 20:09:58 +00:00
|
|
|
|
(format "(%s total; use `%s' for next)"
|
|
|
|
|
(length Info-index-alternatives)
|
|
|
|
|
(key-description (where-is-internal
|
|
|
|
|
'Info-index-next overriding-local-map
|
|
|
|
|
t)))
|
1993-04-23 02:20:55 +00:00
|
|
|
|
"(Only match)")))
|
|
|
|
|
|
1996-02-12 20:57:39 +00:00
|
|
|
|
(defun Info-find-index-name (name)
|
|
|
|
|
"Move point to the place within the current node where NAME is defined."
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(if (or (re-search-forward (format
|
|
|
|
|
"[a-zA-Z]+: %s\\( \\|$\\)"
|
|
|
|
|
(regexp-quote name)) nil t)
|
2002-07-25 18:20:51 +00:00
|
|
|
|
;; Find a function definition with a return type.
|
|
|
|
|
(re-search-forward (format
|
2002-07-29 01:48:52 +00:00
|
|
|
|
"[a-zA-Z]+: [a-zA-Z0-9_ *&]+ %s\\( \\|$\\)"
|
2002-07-25 18:20:51 +00:00
|
|
|
|
(regexp-quote name)) nil t)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(search-forward (format "`%s'" name) nil t)
|
|
|
|
|
(and (string-match "\\`.*\\( (.*)\\)\\'" name)
|
|
|
|
|
(search-forward
|
|
|
|
|
(format "`%s'" (substring name 0 (match-beginning 1)))
|
|
|
|
|
nil t))
|
2003-09-28 09:17:29 +00:00
|
|
|
|
(search-forward name nil t)
|
|
|
|
|
;; Try again without the " <1>" makeinfo can append
|
|
|
|
|
(and (string-match "\\`\\(.*\\) <[0-9]+>\\'" name)
|
|
|
|
|
(Info-find-index-name (match-string 1 name))))
|
|
|
|
|
(progn (beginning-of-line) t) ;; non-nil for recursive call
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(goto-char (point-min)))))
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
|
|
|
|
|
(add-to-list 'Info-virtual-nodes
|
|
|
|
|
'("\\`\\*Index.*\\*\\'"
|
|
|
|
|
(find-node . Info-virtual-index-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defvar Info-virtual-index-nodes nil
|
|
|
|
|
"Alist of cached matched index search nodes.
|
|
|
|
|
Each element is ((FILENAME . TOPIC) MATCHES) where
|
|
|
|
|
FILENAME is the file name of the manual,
|
|
|
|
|
TOPIC is the search string given as an argument to `Info-virtual-index',
|
|
|
|
|
MATCHES is a list of index matches found by `Info-index'.")
|
|
|
|
|
|
|
|
|
|
(defun Info-virtual-index-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"Index-specific implementation of Info-find-node-2."
|
|
|
|
|
;; Generate Index-like menu of matches
|
|
|
|
|
(if (string-match "^\\*Index for `\\(.+\\)'\\*$" nodename)
|
|
|
|
|
;; Generate Index-like menu of matches
|
|
|
|
|
(let* ((topic (match-string 1 nodename))
|
|
|
|
|
(matches (cdr (assoc (cons (or filename Info-current-file) topic)
|
|
|
|
|
Info-virtual-index-nodes))))
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: *Index*\n\n"
|
|
|
|
|
(or filename Info-current-file) nodename))
|
|
|
|
|
(insert "Info Virtual Index\n")
|
|
|
|
|
(insert "******************\n\n")
|
|
|
|
|
(insert "Index entries that match `" topic "':\n\n")
|
|
|
|
|
(insert "\0\b[index\0\b]\n")
|
|
|
|
|
(if (null matches)
|
|
|
|
|
(insert "No matches found.\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(dolist (entry matches)
|
|
|
|
|
(insert (format "* %-38s %s.%s\n"
|
|
|
|
|
(format "%s [%s]:" (nth 0 entry) (nth 2 entry))
|
|
|
|
|
(nth 1 entry)
|
|
|
|
|
(if (nth 3 entry)
|
|
|
|
|
(format " (line %s)" (nth 3 entry))
|
|
|
|
|
""))))))
|
|
|
|
|
;; Else, Generate a list of previous search results
|
|
|
|
|
(let ((nodes (reverse Info-virtual-index-nodes)))
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
(or filename Info-current-file) nodename))
|
|
|
|
|
(insert "Info Virtual Index\n")
|
|
|
|
|
(insert "******************\n\n")
|
|
|
|
|
(insert "This is a list of search results produced by\n"
|
|
|
|
|
"`Info-virtual-index' for the current manual.\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(dolist (nodeinfo nodes)
|
|
|
|
|
(when (equal (car (nth 0 nodeinfo)) (or filename Info-current-file))
|
|
|
|
|
(insert
|
|
|
|
|
(format "* %-20s %s.\n"
|
|
|
|
|
(format "*Index for `%s'*::" (cdr (nth 0 nodeinfo)))
|
|
|
|
|
(cdr (nth 0 nodeinfo)))))))))
|
|
|
|
|
|
|
|
|
|
(defun Info-virtual-index (topic)
|
|
|
|
|
"Show a node with all lines in the index containing a string TOPIC.
|
|
|
|
|
Like `Info-index' but displays a node with index search results.
|
|
|
|
|
Give an empty topic name to go to the node with links to previous
|
|
|
|
|
search results."
|
|
|
|
|
;; `interactive' is a copy from `Info-index'
|
|
|
|
|
(interactive
|
|
|
|
|
(list
|
|
|
|
|
(let ((completion-ignore-case t)
|
|
|
|
|
(Info-complete-menu-buffer (clone-buffer))
|
|
|
|
|
(Info-complete-nodes (Info-index-nodes))
|
|
|
|
|
(Info-history-list nil))
|
|
|
|
|
(if (equal Info-current-file "dir")
|
|
|
|
|
(error "The Info directory node has no index; use m to select a manual"))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(with-current-buffer Info-complete-menu-buffer
|
|
|
|
|
(Info-goto-index)
|
|
|
|
|
(completing-read "Index topic: " 'Info-complete-menu-item))
|
|
|
|
|
(kill-buffer Info-complete-menu-buffer)))))
|
|
|
|
|
(if (equal topic "")
|
|
|
|
|
(Info-find-node Info-current-file "*Index*")
|
|
|
|
|
(unless (assoc (cons Info-current-file topic) Info-virtual-index-nodes)
|
|
|
|
|
(let ((orignode Info-current-node)
|
|
|
|
|
(ohist-list Info-history-list)
|
|
|
|
|
nodename)
|
|
|
|
|
;; Reuse `Info-index' to set `Info-index-alternatives'.
|
|
|
|
|
(Info-index topic)
|
|
|
|
|
(push (cons (cons Info-current-file topic) Info-index-alternatives)
|
|
|
|
|
Info-virtual-index-nodes)
|
|
|
|
|
;; Clean up unneccessary side-effects of `Info-index'.
|
|
|
|
|
(setq Info-history-list ohist-list)
|
|
|
|
|
(Info-goto-node orignode)
|
|
|
|
|
(message "")))
|
|
|
|
|
(Info-find-node Info-current-file (format "*Index for `%s'*" topic))))
|
|
|
|
|
|
|
|
|
|
(add-to-list 'Info-virtual-files
|
|
|
|
|
'("\\`\\*Apropos\\*\\'"
|
|
|
|
|
(toc-nodes . Info-apropos-toc-nodes)
|
|
|
|
|
(find-file . Info-apropos-find-file)
|
|
|
|
|
(find-node . Info-apropos-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defvar Info-apropos-file "*Apropos*"
|
|
|
|
|
"Info file name of the virtual manual for matches of `info-apropos'.")
|
|
|
|
|
|
|
|
|
|
(defvar Info-apropos-nodes nil
|
|
|
|
|
"Alist of cached apropos matched nodes.
|
|
|
|
|
Each element is (NODENAME STRING MATCHES) where
|
|
|
|
|
NODENAME is the name of the node that holds the search result,
|
|
|
|
|
STRING is the search string given as an argument to `info-apropos',
|
|
|
|
|
MATCHES is a list of index matches found by `Info-apropos-matches'.")
|
|
|
|
|
|
|
|
|
|
(defun Info-apropos-toc-nodes (filename)
|
|
|
|
|
"Apropos-specific implementation of Info-apropos-toc-nodes."
|
|
|
|
|
(let ((nodes (mapcar 'car (reverse Info-apropos-nodes))))
|
|
|
|
|
`(,filename
|
|
|
|
|
("Top" nil nil ,nodes)
|
|
|
|
|
,@(mapcar (lambda (node) `(,node "Top" nil nil)) nodes))))
|
|
|
|
|
|
|
|
|
|
(defun Info-apropos-find-file (filename &optional noerror)
|
|
|
|
|
"Apropos-specific implementation of Info-find-file."
|
|
|
|
|
filename)
|
|
|
|
|
|
|
|
|
|
(defun Info-apropos-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"Apropos-specific implementation of Info-find-node-2."
|
|
|
|
|
(if (equal nodename "Top")
|
|
|
|
|
;; Generate Top menu
|
|
|
|
|
(let ((nodes (reverse Info-apropos-nodes)))
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
|
|
|
|
|
Info-apropos-file nodename))
|
|
|
|
|
(insert "Apropos Index\n")
|
|
|
|
|
(insert "*************\n\n")
|
|
|
|
|
(insert "This is a list of search results produced by `info-apropos'.\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(dolist (nodeinfo nodes)
|
|
|
|
|
(insert (format "* %-20s %s.\n"
|
|
|
|
|
(format "%s::" (nth 0 nodeinfo))
|
|
|
|
|
(nth 1 nodeinfo)))))
|
|
|
|
|
;; Else, Generate Index-like menu of matches
|
|
|
|
|
(let* ((nodeinfo (assoc nodename Info-apropos-nodes))
|
|
|
|
|
(matches (nth 2 nodeinfo)))
|
|
|
|
|
(when matches
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
Info-apropos-file nodename))
|
|
|
|
|
(insert "Apropos Index\n")
|
|
|
|
|
(insert "*************\n\n")
|
|
|
|
|
(insert "Index entries that match `" (nth 1 nodeinfo) "':\n\n")
|
|
|
|
|
(insert "\0\b[index\0\b]\n")
|
|
|
|
|
(if (eq matches t)
|
|
|
|
|
(insert "No matches found.\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(dolist (entry matches)
|
|
|
|
|
(insert (format "* %-38s (%s)%s.%s\n"
|
|
|
|
|
(format "%s [%s]:" (nth 1 entry) (nth 0 entry))
|
|
|
|
|
(nth 0 entry)
|
|
|
|
|
(nth 2 entry)
|
|
|
|
|
(if (nth 3 entry)
|
|
|
|
|
(format " (line %s)" (nth 3 entry))
|
|
|
|
|
"")))))))))
|
|
|
|
|
|
|
|
|
|
(defun Info-apropos-matches (string)
|
|
|
|
|
"Collect STRING matches from all known Info files on your system.
|
|
|
|
|
Return a list of matches where each element is in the format
|
|
|
|
|
\((FILENAME INDEXTEXT NODENAME LINENUMBER))."
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(interactive "sIndex apropos: ")
|
|
|
|
|
(unless (string= string "")
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(let ((pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]+\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?"
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(regexp-quote string)))
|
|
|
|
|
(ohist Info-history)
|
2004-04-14 15:58:30 +00:00
|
|
|
|
(ohist-list Info-history-list)
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(current-node Info-current-node)
|
|
|
|
|
(current-file Info-current-file)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
manuals matches node nodes)
|
|
|
|
|
(let ((Info-fontify-maximum-menu-size nil))
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(Info-directory)
|
2006-05-20 20:07:20 +00:00
|
|
|
|
;; current-node and current-file are nil when they invoke info-apropos
|
|
|
|
|
;; as the first Info command, i.e. info-apropos loads info.el. In that
|
|
|
|
|
;; case, we use (DIR)Top instead, to avoid signalling an error after
|
|
|
|
|
;; the search is complete.
|
|
|
|
|
(when (null current-node)
|
|
|
|
|
(setq current-file Info-current-file)
|
|
|
|
|
(setq current-node Info-current-node))
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(message "Searching indices...")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(re-search-forward "\\* Menu: *\n" nil t)
|
2004-04-09 14:32:49 +00:00
|
|
|
|
(while (re-search-forward "\\*.*: *(\\([^)]+\\))" nil t)
|
2006-05-20 20:16:59 +00:00
|
|
|
|
;; add-to-list makes sure we don't have duplicates in `manuals',
|
|
|
|
|
;; so that the following dolist loop runs faster.
|
|
|
|
|
(add-to-list 'manuals (match-string 1)))
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(dolist (manual (nreverse manuals))
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(message "Searching %s" manual)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(condition-case err
|
|
|
|
|
(if (setq nodes (Info-index-nodes (Info-find-file manual)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(Info-find-node manual (car nodes))
|
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward pattern nil t)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(setq matches
|
|
|
|
|
(cons (list manual
|
|
|
|
|
(match-string-no-properties 1)
|
|
|
|
|
(match-string-no-properties 2)
|
|
|
|
|
(match-string-no-properties 3))
|
|
|
|
|
matches)))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(setq nodes (cdr nodes) node (car nodes)))
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(Info-goto-node node))))
|
|
|
|
|
(error
|
|
|
|
|
(message "%s" (if (eq (car-safe err) 'error)
|
|
|
|
|
(nth 1 err) err))
|
|
|
|
|
(sit-for 1 t)))))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(Info-find-node current-file current-node)
|
2004-04-14 15:58:30 +00:00
|
|
|
|
(setq Info-history ohist
|
|
|
|
|
Info-history-list ohist-list)
|
2004-04-05 12:40:56 +00:00
|
|
|
|
(message "Searching indices...done")
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(or (nreverse matches) t))))
|
2004-04-05 12:40:56 +00:00
|
|
|
|
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun info-apropos (string)
|
|
|
|
|
"Grovel indices of all known Info files on your system for STRING.
|
|
|
|
|
Build a menu of the possible matches."
|
|
|
|
|
(interactive "sIndex apropos: ")
|
|
|
|
|
(if (equal string "")
|
|
|
|
|
(Info-find-node Info-apropos-file "Top")
|
|
|
|
|
(let* ((nodes Info-apropos-nodes) nodename)
|
|
|
|
|
(while (and nodes (not (equal string (nth 1 (car nodes)))))
|
|
|
|
|
(setq nodes (cdr nodes)))
|
|
|
|
|
(if nodes
|
|
|
|
|
(Info-find-node Info-apropos-file (car (car nodes)))
|
|
|
|
|
(setq nodename (format "Index for `%s'" string))
|
|
|
|
|
(push (list nodename string (Info-apropos-matches string))
|
|
|
|
|
Info-apropos-nodes)
|
|
|
|
|
(Info-find-node Info-apropos-file nodename)))))
|
|
|
|
|
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(add-to-list 'Info-virtual-files
|
|
|
|
|
'("\\`\\*Finder.*\\*\\'"
|
|
|
|
|
(find-file . Info-finder-find-file)
|
|
|
|
|
(find-node . Info-finder-find-node)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defvar Info-finder-file "*Finder*"
|
|
|
|
|
"Info file name of the virtual Info keyword finder manual.")
|
|
|
|
|
|
|
|
|
|
(defun Info-finder-find-file (filename &optional noerror)
|
|
|
|
|
"Finder-specific implementation of Info-find-file."
|
|
|
|
|
filename)
|
|
|
|
|
|
|
|
|
|
(defvar finder-known-keywords)
|
|
|
|
|
(defvar finder-package-info)
|
|
|
|
|
(declare-function find-library-name "find-func" (library))
|
2010-03-14 21:28:52 +00:00
|
|
|
|
(declare-function finder-unknown-keywords "finder" ())
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(declare-function lm-commentary "lisp-mnt" (&optional file))
|
|
|
|
|
|
|
|
|
|
(defun Info-finder-find-node (filename nodename &optional no-going-back)
|
|
|
|
|
"Finder-specific implementation of Info-find-node-2."
|
|
|
|
|
(cond
|
|
|
|
|
((equal nodename "Top")
|
|
|
|
|
;; Display Top menu with descriptions of the keywords
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
|
|
|
|
|
Info-finder-file nodename))
|
|
|
|
|
(insert "Finder Keywords\n")
|
|
|
|
|
(insert "***************\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(mapc
|
|
|
|
|
(lambda (assoc)
|
|
|
|
|
(let ((keyword (car assoc)))
|
|
|
|
|
(insert (format "* %-14s %s.\n"
|
|
|
|
|
(concat (symbol-name keyword) "::")
|
|
|
|
|
(cdr assoc)))))
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(append '((all . "All package info")
|
|
|
|
|
(unknown . "unknown keywords"))
|
2010-03-14 21:28:52 +00:00
|
|
|
|
finder-known-keywords)))
|
|
|
|
|
((equal nodename "unknown")
|
|
|
|
|
;; Display unknown keywords
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
Info-finder-file nodename))
|
|
|
|
|
(insert "Finder Unknown Keywords\n")
|
|
|
|
|
(insert "***********************\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
|
|
|
|
(mapc
|
|
|
|
|
(lambda (assoc)
|
|
|
|
|
(insert (format "* %-14s %s.\n"
|
|
|
|
|
(concat (symbol-name (car assoc)) "::")
|
|
|
|
|
(cdr assoc))))
|
|
|
|
|
(finder-unknown-keywords)))
|
2010-03-23 07:11:50 +00:00
|
|
|
|
((equal nodename "all")
|
|
|
|
|
;; Display all package info.
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
Info-finder-file nodename))
|
|
|
|
|
(insert "Finder Package Info\n")
|
|
|
|
|
(insert "*******************\n\n")
|
|
|
|
|
(mapc (lambda (package)
|
|
|
|
|
(insert (format "%s - %s\n"
|
|
|
|
|
(format "*Note %s::" (nth 0 package))
|
|
|
|
|
(nth 1 package)))
|
|
|
|
|
(insert "Keywords: "
|
|
|
|
|
(mapconcat (lambda (keyword)
|
|
|
|
|
(format "*Note %s::" (symbol-name keyword)))
|
|
|
|
|
(nth 2 package) ", ")
|
|
|
|
|
"\n\n"))
|
|
|
|
|
finder-package-info))
|
2009-07-18 21:01:49 +00:00
|
|
|
|
((string-match-p "\\.el\\'" nodename)
|
|
|
|
|
;; Display commentary section
|
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
Info-finder-file nodename))
|
|
|
|
|
(insert "Finder Commentary\n")
|
|
|
|
|
(insert "*****************\n\n")
|
|
|
|
|
(insert
|
|
|
|
|
"Commentary section of the package `" nodename "':\n\n")
|
|
|
|
|
(let ((str (lm-commentary (find-library-name nodename))))
|
|
|
|
|
(if (null str)
|
|
|
|
|
(insert "Can't find any Commentary section\n\n")
|
|
|
|
|
(insert
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert str)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(delete-blank-lines)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(delete-blank-lines)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^;+ ?" nil t)
|
|
|
|
|
(replace-match "" nil nil))
|
|
|
|
|
(buffer-string))))))
|
|
|
|
|
(t
|
|
|
|
|
;; Display packages that match the keyword
|
2010-03-23 07:11:50 +00:00
|
|
|
|
;; or the list of keywords separated by comma.
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(insert (format "\n\^_\nFile: %s, Node: %s, Up: Top\n\n"
|
|
|
|
|
Info-finder-file nodename))
|
|
|
|
|
(insert "Finder Packages\n")
|
|
|
|
|
(insert "***************\n\n")
|
|
|
|
|
(insert
|
|
|
|
|
"The following packages match the keyword `" nodename "':\n\n")
|
|
|
|
|
(insert "* Menu:\n\n")
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(let ((keywords
|
|
|
|
|
(mapcar 'intern (if (string-match-p "," nodename)
|
|
|
|
|
(split-string nodename ",[ \t\n]*" t)
|
|
|
|
|
(list nodename)))))
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(mapc
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(lambda (package)
|
|
|
|
|
(unless (memq nil (mapcar (lambda (k) (memq k (nth 2 package)))
|
|
|
|
|
keywords))
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(insert (format "* %-16s %s.\n"
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(concat (nth 0 package) "::")
|
|
|
|
|
(nth 1 package)))))
|
2009-07-18 21:01:49 +00:00
|
|
|
|
finder-package-info)))))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(defun info-finder (&optional keywords)
|
|
|
|
|
"Display descriptions of the keywords in the Finder virtual manual.
|
|
|
|
|
In interactive use, a prefix argument directs this command to read
|
|
|
|
|
a list of keywords separated by comma. After that, it displays a node
|
|
|
|
|
with a list packages that contain all specified keywords."
|
|
|
|
|
(interactive
|
|
|
|
|
(when current-prefix-arg
|
|
|
|
|
(require 'finder)
|
|
|
|
|
(list
|
|
|
|
|
(completing-read-multiple
|
|
|
|
|
"Keywords (separated by comma): "
|
|
|
|
|
(mapcar 'symbol-name (mapcar 'car (append finder-known-keywords
|
|
|
|
|
(finder-unknown-keywords))))
|
|
|
|
|
nil t))))
|
2009-07-18 21:01:49 +00:00
|
|
|
|
(require 'finder)
|
2010-03-23 07:11:50 +00:00
|
|
|
|
(if keywords
|
|
|
|
|
(Info-find-node Info-finder-file (mapconcat 'identity keywords ", "))
|
|
|
|
|
(Info-find-node Info-finder-file "Top")))
|
|
|
|
|
|
2009-07-18 21:01:49 +00:00
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(defun Info-undefined ()
|
|
|
|
|
"Make command be undefined in Info."
|
|
|
|
|
(interactive)
|
|
|
|
|
(ding))
|
|
|
|
|
|
|
|
|
|
(defun Info-help ()
|
|
|
|
|
"Enter the Info tutorial."
|
|
|
|
|
(interactive)
|
|
|
|
|
(delete-other-windows)
|
|
|
|
|
(Info-find-node "info"
|
|
|
|
|
(if (< (window-height) 23)
|
|
|
|
|
"Help-Small-Screen"
|
|
|
|
|
"Help")))
|
|
|
|
|
|
|
|
|
|
(defun Info-summary ()
|
|
|
|
|
"Display a brief summary of all Info commands."
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(switch-to-buffer "*Help*")
|
1998-02-17 03:56:42 +00:00
|
|
|
|
(setq buffer-read-only nil)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert (documentation 'Info-mode))
|
1994-11-09 05:49:52 +00:00
|
|
|
|
(help-mode)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let (ch flag)
|
|
|
|
|
(while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
|
|
|
|
|
(message (if flag "Type Space to see more"
|
|
|
|
|
"Type Space to return to Info"))
|
2005-07-04 02:12:31 +00:00
|
|
|
|
(if (not (eq ?\s (setq ch (read-event))))
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(progn (setq unread-command-events (list ch)) nil)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
flag))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(scroll-up)))
|
|
|
|
|
(bury-buffer "*Help*")))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-get-token (pos start all &optional errorstring)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Return the token around POS.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
POS must be somewhere inside the token
|
|
|
|
|
START is a regular expression which will match the
|
|
|
|
|
beginning of the tokens delimited string
|
|
|
|
|
ALL is a regular expression with a single
|
1996-01-04 23:42:04 +00:00
|
|
|
|
parenthesized subpattern which is the token to be
|
2000-06-13 14:46:08 +00:00
|
|
|
|
returned. E.g. '{\(.*\)}' would return any string
|
1991-07-13 07:49:50 +00:00
|
|
|
|
enclosed in braces around POS.
|
2000-06-13 14:46:08 +00:00
|
|
|
|
ERRORSTRING optional fourth argument, controls action on no match
|
1991-07-13 07:49:50 +00:00
|
|
|
|
nil: return nil
|
|
|
|
|
t: beep
|
|
|
|
|
a string: signal an error, using that string."
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
;; First look for a match for START that goes across POS.
|
|
|
|
|
(while (and (not (bobp)) (> (point) (- pos (length start)))
|
|
|
|
|
(not (looking-at start)))
|
|
|
|
|
(forward-char -1))
|
|
|
|
|
;; If we did not find one, search back for START
|
|
|
|
|
;; (this finds only matches that end at or before POS).
|
|
|
|
|
(or (looking-at start)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(re-search-backward start (max (point-min) (- pos 200)) 'yes)))
|
|
|
|
|
(let (found)
|
|
|
|
|
(while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes)
|
|
|
|
|
(not (setq found (and (<= (match-beginning 0) pos)
|
|
|
|
|
(> (match-end 0) pos))))))
|
|
|
|
|
(if (and found (<= (match-beginning 0) pos)
|
|
|
|
|
(> (match-end 0) pos))
|
1999-11-24 19:53:56 +00:00
|
|
|
|
(match-string-no-properties 1)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(cond ((null errorstring)
|
|
|
|
|
nil)
|
|
|
|
|
((eq errorstring t)
|
|
|
|
|
(beep)
|
|
|
|
|
nil)
|
|
|
|
|
(t
|
|
|
|
|
(error "No %s around position %d" errorstring pos))))))))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
1994-04-21 16:51:53 +00:00
|
|
|
|
(defun Info-mouse-follow-nearest-node (click)
|
1992-10-02 23:52:26 +00:00
|
|
|
|
"\\<Info-mode-map>Follow a node reference near point.
|
|
|
|
|
Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
|
1994-04-21 16:51:53 +00:00
|
|
|
|
At end of the node's text, moves to the next node, or up if none."
|
1992-10-02 23:52:26 +00:00
|
|
|
|
(interactive "e")
|
2000-10-15 16:46:09 +00:00
|
|
|
|
(mouse-set-point click)
|
2008-09-10 02:31:58 +00:00
|
|
|
|
(and (not (Info-follow-nearest-node))
|
1994-04-21 16:51:53 +00:00
|
|
|
|
(save-excursion (forward-line 1) (eobp))
|
1995-06-09 01:26:00 +00:00
|
|
|
|
(Info-next-preorder)))
|
1994-04-21 16:51:53 +00:00
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defun Info-follow-nearest-node (&optional fork)
|
2003-02-10 11:41:09 +00:00
|
|
|
|
"Follow a node reference near point.
|
|
|
|
|
If point is on a reference, follow that reference. Otherwise,
|
2006-04-03 17:35:59 +00:00
|
|
|
|
if point is in a menu item description, follow that menu item.
|
|
|
|
|
|
2006-04-08 10:11:18 +00:00
|
|
|
|
If FORK is non-nil (interactively with a prefix arg), show the node in
|
2006-04-03 17:35:59 +00:00
|
|
|
|
a new Info buffer.
|
2006-04-08 10:11:18 +00:00
|
|
|
|
If FORK is a string, it is the name to use for the new buffer."
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(or (Info-try-follow-nearest-node fork)
|
2003-02-10 11:41:09 +00:00
|
|
|
|
(when (save-excursion
|
|
|
|
|
(search-backward "\n* menu:" nil t))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(while (not (or (bobp) (looking-at "[^ \t]\\|[ \t]*$")))
|
|
|
|
|
(beginning-of-line 0))
|
|
|
|
|
(when (looking-at "\\* +\\([^\t\n]*\\):")
|
|
|
|
|
(Info-goto-node
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-extract-menu-item (match-string-no-properties 1)) fork)
|
2003-02-10 11:41:09 +00:00
|
|
|
|
t)))
|
2008-09-17 06:52:00 +00:00
|
|
|
|
(and (eq this-command 'Info-mouse-follow-nearest-node)
|
|
|
|
|
;; Don't raise an error when mouse-1 is bound to this - it's
|
|
|
|
|
;; often used to simply select the window or frame.
|
|
|
|
|
(eq 'mouse-1 (event-basic-type last-input-event)))
|
2003-02-10 11:41:09 +00:00
|
|
|
|
(error "Point neither on reference nor in menu item description")))
|
1994-04-21 16:51:53 +00:00
|
|
|
|
|
|
|
|
|
;; Common subroutine.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(defun Info-try-follow-nearest-node (&optional fork)
|
2006-07-12 16:04:46 +00:00
|
|
|
|
"Follow a node reference near point. Return non-nil if successful.
|
2008-09-10 02:33:29 +00:00
|
|
|
|
If FORK is non-nil, it is passed to `Info-goto-node'."
|
2002-11-03 12:01:33 +00:00
|
|
|
|
(let (node)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(cond
|
2009-09-22 08:44:16 +00:00
|
|
|
|
((setq node (Info-get-token (point) "[hf]t?tps?://"
|
|
|
|
|
"\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)"))
|
|
|
|
|
(browse-url node)
|
|
|
|
|
(setq node t))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
((setq node (Info-get-token (point) "\\*note[ \n\t]+"
|
|
|
|
|
"\\*note[ \n\t]+\\([^:]*\\):\\(:\\|[ \n\t]*(\\)?"))
|
|
|
|
|
(Info-follow-reference node fork))
|
2003-01-25 02:45:12 +00:00
|
|
|
|
;; menu item: node name
|
1998-04-18 01:57:45 +00:00
|
|
|
|
((setq node (Info-get-token (point) "\\* +" "\\* +\\([^:]*\\)::"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node node fork))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
;; menu item: node name or index entry
|
2003-01-25 02:45:12 +00:00
|
|
|
|
((Info-get-token (point) "\\* +" "\\* +\\(.*\\): ")
|
1998-08-14 08:46:22 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(forward-char 2)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(setq node (Info-extract-menu-node-name nil (Info-index-node)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node node fork))
|
1993-05-26 18:57:54 +00:00
|
|
|
|
((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node node fork))
|
1993-05-26 18:57:54 +00:00
|
|
|
|
((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node node fork))
|
1993-05-26 18:57:54 +00:00
|
|
|
|
((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node "Top" fork))
|
1993-05-26 18:57:54 +00:00
|
|
|
|
((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(Info-goto-node node fork)))
|
1994-04-21 16:51:53 +00:00
|
|
|
|
node))
|
2010-04-05 22:15:04 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-mouse-follow-link (click)
|
|
|
|
|
"Follow a link where you click."
|
|
|
|
|
(interactive "e")
|
|
|
|
|
(let* ((position (event-start click))
|
|
|
|
|
(posn-string (and position (posn-string position)))
|
|
|
|
|
(string (car-safe posn-string))
|
|
|
|
|
(string-pos (cdr-safe posn-string))
|
|
|
|
|
(link-args (and string string-pos
|
|
|
|
|
(get-text-property string-pos 'link-args string))))
|
|
|
|
|
(when link-args
|
|
|
|
|
(Info-goto-node link-args))))
|
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(defvar Info-mode-map
|
|
|
|
|
(let ((map (make-keymap)))
|
|
|
|
|
(suppress-keymap map)
|
|
|
|
|
(define-key map "." 'beginning-of-buffer)
|
|
|
|
|
(define-key map " " 'Info-scroll-up)
|
|
|
|
|
(define-key map "\C-m" 'Info-follow-nearest-node)
|
|
|
|
|
(define-key map "\t" 'Info-next-reference)
|
|
|
|
|
(define-key map "\e\t" 'Info-prev-reference)
|
|
|
|
|
(define-key map [(shift tab)] 'Info-prev-reference)
|
|
|
|
|
(define-key map [backtab] 'Info-prev-reference)
|
|
|
|
|
(define-key map "1" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "2" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "3" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "4" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "5" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "6" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "7" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "8" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "9" 'Info-nth-menu-item)
|
|
|
|
|
(define-key map "0" 'undefined)
|
|
|
|
|
(define-key map "?" 'Info-summary)
|
|
|
|
|
(define-key map "]" 'Info-forward-node)
|
|
|
|
|
(define-key map "[" 'Info-backward-node)
|
|
|
|
|
(define-key map "<" 'Info-top-node)
|
|
|
|
|
(define-key map ">" 'Info-final-node)
|
|
|
|
|
(define-key map "b" 'beginning-of-buffer)
|
|
|
|
|
(define-key map "d" 'Info-directory)
|
|
|
|
|
(define-key map "e" 'Info-edit)
|
|
|
|
|
(define-key map "f" 'Info-follow-reference)
|
|
|
|
|
(define-key map "g" 'Info-goto-node)
|
|
|
|
|
(define-key map "h" 'Info-help)
|
|
|
|
|
(define-key map "i" 'Info-index)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(define-key map "I" 'Info-virtual-index)
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(define-key map "l" 'Info-history-back)
|
|
|
|
|
(define-key map "L" 'Info-history)
|
|
|
|
|
(define-key map "m" 'Info-menu)
|
|
|
|
|
(define-key map "n" 'Info-next)
|
|
|
|
|
(define-key map "p" 'Info-prev)
|
|
|
|
|
(define-key map "q" 'Info-exit)
|
|
|
|
|
(define-key map "r" 'Info-history-forward)
|
|
|
|
|
(define-key map "s" 'Info-search)
|
|
|
|
|
(define-key map "S" 'Info-search-case-sensitively)
|
|
|
|
|
(define-key map "\M-n" 'clone-buffer)
|
|
|
|
|
(define-key map "t" 'Info-top-node)
|
|
|
|
|
(define-key map "T" 'Info-toc)
|
|
|
|
|
(define-key map "u" 'Info-up)
|
|
|
|
|
;; `w' for consistency with `dired-copy-filename-as-kill'.
|
|
|
|
|
(define-key map "w" 'Info-copy-current-node-name)
|
|
|
|
|
(define-key map "c" 'Info-copy-current-node-name)
|
|
|
|
|
;; `^' for consistency with `dired-up-directory'.
|
|
|
|
|
(define-key map "^" 'Info-up)
|
|
|
|
|
(define-key map "," 'Info-index-next)
|
|
|
|
|
(define-key map "\177" 'Info-scroll-down)
|
|
|
|
|
(define-key map [mouse-2] 'Info-mouse-follow-nearest-node)
|
|
|
|
|
(define-key map [follow-link] 'mouse-face)
|
|
|
|
|
map)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Keymap containing Info commands.")
|
2008-06-13 20:34:26 +00:00
|
|
|
|
|
1996-09-01 20:43:10 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-check-pointer (item)
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Non-nil if ITEM is present in this node."
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(Info-extract-pointer item)
|
|
|
|
|
(error nil)))
|
|
|
|
|
|
2000-07-14 14:39:34 +00:00
|
|
|
|
(easy-menu-define
|
|
|
|
|
Info-mode-menu Info-mode-map
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Menu for Info files."
|
2000-07-14 14:39:34 +00:00
|
|
|
|
'("Info"
|
|
|
|
|
["Up" Info-up :active (Info-check-pointer "up")
|
|
|
|
|
:help "Go up in the Info tree"]
|
|
|
|
|
["Next" Info-next :active (Info-check-pointer "next")
|
|
|
|
|
:help "Go to the next node"]
|
|
|
|
|
["Previous" Info-prev :active (Info-check-pointer "prev[ious]*")
|
|
|
|
|
:help "Go to the previous node"]
|
|
|
|
|
["Backward" Info-backward-node
|
|
|
|
|
:help "Go backward one node, considering all as a sequence"]
|
|
|
|
|
["Forward" Info-forward-node
|
|
|
|
|
:help "Go forward one node, considering all as a sequence"]
|
2000-10-08 15:44:36 +00:00
|
|
|
|
["Beginning" beginning-of-buffer
|
|
|
|
|
:help "Go to beginning of this node"]
|
2000-07-14 14:39:34 +00:00
|
|
|
|
["Top" Info-top-node
|
|
|
|
|
:help "Go to top node of file"]
|
|
|
|
|
["Final Node" Info-final-node
|
|
|
|
|
:help "Go to final node in this file"]
|
|
|
|
|
("Menu Item" ["You should never see this" report-emacs-bug t])
|
|
|
|
|
("Reference" ["You should never see this" report-emacs-bug t])
|
|
|
|
|
["Search..." Info-search
|
|
|
|
|
:help "Search for regular expression in this Info file"]
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
["Search Next" Info-search-next
|
|
|
|
|
:help "Search for another occurrence of regular expression"]
|
2000-10-15 16:46:09 +00:00
|
|
|
|
["Go to Node..." Info-goto-node
|
2000-07-14 14:39:34 +00:00
|
|
|
|
:help "Go to a named node"]
|
2005-01-11 21:57:46 +00:00
|
|
|
|
["Back in history" Info-history-back :active Info-history
|
|
|
|
|
:help "Go back in history to the last node you were at"]
|
|
|
|
|
["Forward in history" Info-history-forward :active Info-history-forward
|
|
|
|
|
:help "Go forward in history"]
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
["History" Info-history :active Info-history-list
|
2004-06-12 05:54:43 +00:00
|
|
|
|
:help "Go to menu of visited nodes"]
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
["Table of Contents" Info-toc
|
2004-06-12 05:54:43 +00:00
|
|
|
|
:help "Go to table of contents"]
|
2005-03-28 01:24:10 +00:00
|
|
|
|
("Index"
|
|
|
|
|
["Lookup a String..." Info-index
|
2000-07-14 14:39:34 +00:00
|
|
|
|
:help "Look for a string in the index items"]
|
2005-03-28 01:24:10 +00:00
|
|
|
|
["Next Matching Item" Info-index-next :active Info-index-alternatives
|
2004-04-05 12:40:56 +00:00
|
|
|
|
:help "Look for another occurrence of previous item"]
|
2009-12-05 19:49:47 +00:00
|
|
|
|
["Lookup a string and display index of results..." Info-virtual-index
|
|
|
|
|
:help "Look for a string in the index items and display node with results"]
|
2005-03-28 01:24:10 +00:00
|
|
|
|
["Lookup a string in all indices..." info-apropos
|
2004-04-05 12:40:56 +00:00
|
|
|
|
:help "Look for a string in the indices of all manuals"])
|
2001-02-15 05:00:37 +00:00
|
|
|
|
["Copy Node Name" Info-copy-current-node-name
|
|
|
|
|
:help "Copy the name of the current node into the kill ring"]
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
["Clone Info buffer" clone-buffer
|
|
|
|
|
:help "Create a twin copy of the current Info buffer."]
|
2000-10-11 18:23:46 +00:00
|
|
|
|
["Exit" Info-exit :help "Stop reading Info"]))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
|
2000-10-08 15:44:36 +00:00
|
|
|
|
|
|
|
|
|
(defvar info-tool-bar-map
|
2008-10-11 19:57:25 +00:00
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-history-back "left-arrow" map Info-mode-map
|
|
|
|
|
:rtl "right-arrow")
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-history-forward "right-arrow" map Info-mode-map
|
|
|
|
|
:rtl "left-arrow")
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-prev "prev-node" map Info-mode-map
|
|
|
|
|
:rtl "next-node")
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-next "next-node" map Info-mode-map
|
|
|
|
|
:rtl "prev-node")
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-up "up-node" map Info-mode-map)
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-top-node "home" map Info-mode-map)
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-goto-node "jump-to" map Info-mode-map)
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-index "index" map Info-mode-map)
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-search "search" map Info-mode-map)
|
|
|
|
|
(tool-bar-local-item-from-menu 'Info-exit "exit" map Info-mode-map)
|
|
|
|
|
map))
|
2000-10-08 15:44:36 +00:00
|
|
|
|
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(defvar Info-menu-last-node nil)
|
|
|
|
|
;; Last node the menu was created for.
|
1998-03-17 06:29:50 +00:00
|
|
|
|
;; Value is a list, (FILE-NAME NODE-NAME).
|
1996-09-01 20:43:10 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-menu-update ()
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Update the Info menu for the current node."
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(if (or (not (eq major-mode 'Info-mode))
|
1998-03-17 06:29:50 +00:00
|
|
|
|
(equal (list Info-current-file Info-current-node)
|
|
|
|
|
Info-menu-last-node))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
()
|
|
|
|
|
;; Update menu menu.
|
|
|
|
|
(let* ((Info-complete-menu-buffer (current-buffer))
|
|
|
|
|
(items (nreverse (condition-case nil
|
2001-11-29 23:20:49 +00:00
|
|
|
|
(Info-complete-menu-item "" nil t)
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(error nil))))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
entries current
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(number 0))
|
|
|
|
|
(while (and items (< number 9))
|
|
|
|
|
(setq current (car items)
|
|
|
|
|
items (cdr items)
|
|
|
|
|
number (1+ number))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
(setq entries (cons `[,current
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(Info-menu ,current)
|
|
|
|
|
:keys ,(format "%d" number)]
|
|
|
|
|
entries)))
|
|
|
|
|
(if items
|
|
|
|
|
(setq entries (cons ["Other..." Info-menu t] entries)))
|
|
|
|
|
(or entries
|
2001-04-17 20:31:29 +00:00
|
|
|
|
(setq entries (list ["No menu" nil nil] nil :active)))
|
2000-07-14 14:39:34 +00:00
|
|
|
|
(easy-menu-change '("Info") "Menu Item" (nreverse entries)))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
;; Update reference menu. Code stolen from `Info-follow-reference'.
|
|
|
|
|
(let ((items nil)
|
2000-05-16 16:24:25 +00:00
|
|
|
|
str i entries current
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(number 0)
|
|
|
|
|
(case-fold-search t))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(while (re-search-forward "\\*note[ \n\t]+\\([^:]*\\):" nil t)
|
2003-07-04 23:05:35 +00:00
|
|
|
|
(setq str (match-string 1))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(setq i 0)
|
|
|
|
|
(while (setq i (string-match "[ \n\t]+" str i))
|
|
|
|
|
(setq str (concat (substring str 0 i) " "
|
|
|
|
|
(substring str (match-end 0))))
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq items
|
|
|
|
|
(cons str items))))
|
|
|
|
|
(while (and items (< number 9))
|
|
|
|
|
(setq current (car items)
|
|
|
|
|
items (cdr items)
|
|
|
|
|
number (1+ number))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
(setq entries (cons `[,current
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(Info-follow-reference ,current)
|
|
|
|
|
t]
|
|
|
|
|
entries)))
|
|
|
|
|
(if items
|
|
|
|
|
(setq entries (cons ["Other..." Info-follow-reference t]
|
|
|
|
|
entries)))
|
|
|
|
|
(or entries
|
2001-04-17 20:31:29 +00:00
|
|
|
|
(setq entries (list ["No references" nil nil] nil :active)))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(easy-menu-change '("Info") "Reference" (nreverse entries)))
|
|
|
|
|
;; Update last seen node.
|
1998-03-17 06:29:50 +00:00
|
|
|
|
(setq Info-menu-last-node (list Info-current-file Info-current-node)))
|
1996-09-01 20:43:10 +00:00
|
|
|
|
;; Try to avoid entering infinite beep mode in case of errors.
|
|
|
|
|
(error (ding))))
|
|
|
|
|
|
2001-02-15 05:00:37 +00:00
|
|
|
|
|
2004-05-25 20:59:31 +00:00
|
|
|
|
(defun Info-copy-current-node-name (&optional arg)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Put the name of the current Info node into the kill ring.
|
|
|
|
|
The name of the Info file is prepended to the node name in parentheses.
|
2004-05-25 20:59:31 +00:00
|
|
|
|
With a zero prefix arg, put the name inside a function call to `info'."
|
|
|
|
|
(interactive "P")
|
2001-02-15 05:00:37 +00:00
|
|
|
|
(unless Info-current-node
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(error "No current Info node"))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(let ((node (if (stringp Info-current-file)
|
2007-11-04 12:01:35 +00:00
|
|
|
|
(concat "(" (file-name-nondirectory Info-current-file) ") "
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
Info-current-node))))
|
2004-05-25 20:59:31 +00:00
|
|
|
|
(if (zerop (prefix-numeric-value arg))
|
|
|
|
|
(setq node (concat "(info \"" node "\")")))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(unless (stringp Info-current-file)
|
|
|
|
|
(setq node (format "(Info-find-node '%S '%S)"
|
|
|
|
|
Info-current-file Info-current-node)))
|
2004-05-25 20:59:31 +00:00
|
|
|
|
(kill-new node)
|
|
|
|
|
(message "%s" node)))
|
2001-02-15 05:00:37 +00:00
|
|
|
|
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
;; Info mode is suitable only for specially formatted data.
|
2000-09-21 04:43:28 +00:00
|
|
|
|
(put 'Info-mode 'mode-class 'special)
|
2001-11-13 02:12:04 +00:00
|
|
|
|
(put 'Info-mode 'no-clone-indirect t)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2005-07-03 16:11:30 +00:00
|
|
|
|
(defvar tool-bar-map)
|
2008-03-07 05:44:37 +00:00
|
|
|
|
(defvar bookmark-make-record-function)
|
2005-07-03 16:11:30 +00:00
|
|
|
|
|
2005-08-10 19:39:51 +00:00
|
|
|
|
;; Autoload cookie needed by desktop.el
|
|
|
|
|
;;;###autoload
|
2010-04-15 01:12:20 +00:00
|
|
|
|
(define-derived-mode Info-mode nil "Info"
|
2000-06-13 14:46:08 +00:00
|
|
|
|
"Info mode provides commands for browsing through the Info documentation tree.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
Documentation in Info is divided into \"nodes\", each of which discusses
|
|
|
|
|
one topic and contains references to other nodes which discuss related
|
|
|
|
|
topics. Info has commands to follow the references and show you other nodes.
|
|
|
|
|
|
2000-06-13 14:46:08 +00:00
|
|
|
|
\\<Info-mode-map>\
|
1991-07-13 07:49:50 +00:00
|
|
|
|
\\[Info-help] Invoke the Info tutorial.
|
1998-04-28 18:13:00 +00:00
|
|
|
|
\\[Info-exit] Quit Info: reselect previously selected buffer.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
Selecting other nodes:
|
1994-08-18 01:08:03 +00:00
|
|
|
|
\\[Info-mouse-follow-nearest-node]
|
|
|
|
|
Follow a node reference you click on.
|
|
|
|
|
This works with menu items, cross references, and
|
|
|
|
|
the \"next\", \"previous\" and \"up\", depending on where you click.
|
1998-04-28 18:13:00 +00:00
|
|
|
|
\\[Info-follow-nearest-node] Follow a node reference near point, like \\[Info-mouse-follow-nearest-node].
|
1991-07-13 07:49:50 +00:00
|
|
|
|
\\[Info-next] Move to the \"next\" node of this node.
|
1993-05-26 18:57:54 +00:00
|
|
|
|
\\[Info-prev] Move to the \"previous\" node of this node.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
\\[Info-up] Move \"up\" from this node.
|
|
|
|
|
\\[Info-menu] Pick menu item specified by name (or abbreviation).
|
2001-12-29 18:02:49 +00:00
|
|
|
|
Picking a menu item causes another node to be selected.
|
1992-02-07 21:40:34 +00:00
|
|
|
|
\\[Info-directory] Go to the Info directory node.
|
2005-10-11 05:47:55 +00:00
|
|
|
|
\\[Info-top-node] Go to the Top node of this file.
|
|
|
|
|
\\[Info-final-node] Go to the final node in this file.
|
|
|
|
|
\\[Info-backward-node] Go backward one node, considering all nodes as forming one sequence.
|
|
|
|
|
\\[Info-forward-node] Go forward one node, considering all nodes as forming one sequence.
|
|
|
|
|
\\[Info-next-reference] Move cursor to next cross-reference or menu item.
|
|
|
|
|
\\[Info-prev-reference] Move cursor to previous cross-reference or menu item.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
\\[Info-follow-reference] Follow a cross reference. Reads name of reference.
|
2005-01-11 21:57:46 +00:00
|
|
|
|
\\[Info-history-back] Move back in history to the last node you were at.
|
|
|
|
|
\\[Info-history-forward] Move forward in history to the node you returned from after using \\[Info-history-back].
|
2004-06-12 05:54:43 +00:00
|
|
|
|
\\[Info-history] Go to menu of visited nodes.
|
|
|
|
|
\\[Info-toc] Go to table of contents of the current Info file.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
Moving within a node:
|
1997-12-22 22:28:11 +00:00
|
|
|
|
\\[Info-scroll-up] Normally, scroll forward a full screen.
|
2001-12-29 18:02:49 +00:00
|
|
|
|
Once you scroll far enough in a node that its menu appears on the
|
|
|
|
|
screen but after point, the next scroll moves into its first
|
|
|
|
|
subnode. When after all menu items (or if there is no menu),
|
|
|
|
|
move up to the parent node.
|
1997-12-22 22:28:11 +00:00
|
|
|
|
\\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
|
2001-12-29 18:02:49 +00:00
|
|
|
|
already visible, try to go to the previous menu entry, or up
|
|
|
|
|
if there is none.
|
2000-05-16 16:24:25 +00:00
|
|
|
|
\\[beginning-of-buffer] Go to beginning of node.
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
Advanced commands:
|
|
|
|
|
\\[Info-search] Search through this Info file for specified regexp,
|
2001-12-29 18:02:49 +00:00
|
|
|
|
and select the node in which the next occurrence is found.
|
2004-06-12 05:54:43 +00:00
|
|
|
|
\\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively.
|
2008-07-30 17:17:13 +00:00
|
|
|
|
\\[isearch-forward], \\[isearch-forward-regexp] Use Isearch to search through multiple Info nodes.
|
2006-02-12 20:29:57 +00:00
|
|
|
|
\\[Info-index] Search for a topic in this manual's Index and go to index entry.
|
2005-10-11 05:47:55 +00:00
|
|
|
|
\\[Info-index-next] (comma) Move to the next match from a previous \\<Info-mode-map>\\[Info-index] command.
|
2009-12-05 19:49:47 +00:00
|
|
|
|
\\[Info-virtual-index] Look for a string and display the index node with results.
|
2005-10-11 05:47:55 +00:00
|
|
|
|
\\[info-apropos] Look for a string in the indices of all manuals.
|
|
|
|
|
\\[Info-goto-node] Move to node specified by name.
|
|
|
|
|
You may include a filename as well, as (FILENAME)NODENAME.
|
|
|
|
|
1 .. 9 Pick first ... ninth item in node's menu.
|
|
|
|
|
Every third `*' is highlighted to help pick the right number.
|
|
|
|
|
\\[Info-copy-current-node-name] Put name of current Info node in the kill ring.
|
|
|
|
|
\\[clone-buffer] Select a new cloned Info buffer in another window.
|
|
|
|
|
\\[universal-argument] \\[info] Move to new Info file with completion.
|
|
|
|
|
\\[universal-argument] N \\[info] Select Info buffer with prefix number in the name *info*<N>."
|
2010-04-15 01:12:20 +00:00
|
|
|
|
:syntax-table text-mode-syntax-table
|
|
|
|
|
:abbrev-table text-mode-abbrev-table
|
1996-12-12 23:00:31 +00:00
|
|
|
|
(setq tab-width 8)
|
1996-09-01 20:43:10 +00:00
|
|
|
|
(add-hook 'activate-menubar-hook 'Info-menu-update nil t)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(setq case-fold-search t)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(make-local-variable 'Info-current-file)
|
|
|
|
|
(make-local-variable 'Info-current-subfile)
|
|
|
|
|
(make-local-variable 'Info-current-node)
|
2010-04-15 01:12:20 +00:00
|
|
|
|
(set (make-local-variable 'Info-tag-table-marker) (make-marker))
|
|
|
|
|
(set (make-local-variable 'Info-tag-table-buffer) nil)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(make-local-variable 'Info-history)
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(make-local-variable 'Info-history-forward)
|
1993-04-23 02:20:55 +00:00
|
|
|
|
(make-local-variable 'Info-index-alternatives)
|
2008-10-20 02:23:01 +00:00
|
|
|
|
(if Info-use-header-line ; do not override global header lines
|
|
|
|
|
(setq header-line-format
|
|
|
|
|
'(:eval (get-text-property (point-min) 'header-line))))
|
2000-10-08 15:44:36 +00:00
|
|
|
|
(set (make-local-variable 'tool-bar-map) info-tool-bar-map)
|
1997-07-30 18:15:19 +00:00
|
|
|
|
;; This is for the sake of the invisible text we use handling titles.
|
2010-04-15 01:12:20 +00:00
|
|
|
|
(set (make-local-variable 'line-move-ignore-invisible) t)
|
|
|
|
|
(set (make-local-variable 'desktop-save-buffer)
|
|
|
|
|
'Info-desktop-buffer-misc-data)
|
|
|
|
|
(set (make-local-variable 'widen-automatically) nil)
|
2005-04-07 15:16:39 +00:00
|
|
|
|
(add-hook 'kill-buffer-hook 'Info-kill-buffer nil t)
|
2007-12-15 22:34:37 +00:00
|
|
|
|
(add-hook 'clone-buffer-hook 'Info-clone-buffer nil t)
|
2002-09-10 16:44:37 +00:00
|
|
|
|
(add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
|
2005-03-15 10:46:00 +00:00
|
|
|
|
(add-hook 'isearch-mode-hook 'Info-isearch-start nil t)
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(set (make-local-variable 'isearch-search-fun-function)
|
|
|
|
|
'Info-isearch-search)
|
|
|
|
|
(set (make-local-variable 'isearch-wrap-function)
|
|
|
|
|
'Info-isearch-wrap)
|
|
|
|
|
(set (make-local-variable 'isearch-push-state-function)
|
|
|
|
|
'Info-isearch-push-state)
|
2008-11-17 00:43:58 +00:00
|
|
|
|
(set (make-local-variable 'isearch-filter-predicate)
|
2008-12-23 21:03:09 +00:00
|
|
|
|
'Info-isearch-filter)
|
2004-09-01 19:29:28 +00:00
|
|
|
|
(set (make-local-variable 'search-whitespace-regexp)
|
|
|
|
|
Info-search-whitespace-regexp)
|
2007-11-04 12:01:35 +00:00
|
|
|
|
(set (make-local-variable 'revert-buffer-function)
|
|
|
|
|
'Info-revert-buffer-function)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(Info-set-mode-line)
|
2008-03-07 05:44:37 +00:00
|
|
|
|
(set (make-local-variable 'bookmark-make-record-function)
|
2010-04-15 01:12:20 +00:00
|
|
|
|
'Info-bookmark-make-record))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
2005-04-07 15:16:39 +00:00
|
|
|
|
;; When an Info buffer is killed, make sure the associated tags buffer
|
|
|
|
|
;; is killed too.
|
|
|
|
|
(defun Info-kill-buffer ()
|
|
|
|
|
(and (eq major-mode 'Info-mode)
|
|
|
|
|
Info-tag-table-buffer
|
|
|
|
|
(kill-buffer Info-tag-table-buffer)))
|
|
|
|
|
|
2007-12-15 22:34:37 +00:00
|
|
|
|
;; Placed on `clone-buffer-hook'.
|
|
|
|
|
(defun Info-clone-buffer ()
|
1999-10-13 14:48:57 +00:00
|
|
|
|
(when (bufferp Info-tag-table-buffer)
|
|
|
|
|
(setq Info-tag-table-buffer
|
2001-07-02 19:20:25 +00:00
|
|
|
|
(with-current-buffer Info-tag-table-buffer (clone-buffer))))
|
|
|
|
|
(let ((m Info-tag-table-marker))
|
|
|
|
|
(when (markerp m)
|
2001-06-28 21:17:27 +00:00
|
|
|
|
(setq Info-tag-table-marker
|
2001-07-02 19:20:25 +00:00
|
|
|
|
(if (and (marker-position m) (bufferp Info-tag-table-buffer))
|
2001-06-28 21:17:27 +00:00
|
|
|
|
(with-current-buffer Info-tag-table-buffer
|
|
|
|
|
(copy-marker (marker-position m)))
|
|
|
|
|
(make-marker))))))
|
1999-10-13 14:48:57 +00:00
|
|
|
|
|
2000-10-08 15:44:36 +00:00
|
|
|
|
(defvar Info-edit-map (let ((map (make-sparse-keymap)))
|
|
|
|
|
(set-keymap-parent map text-mode-map)
|
|
|
|
|
(define-key map "\C-c\C-c" 'Info-cease-edit)
|
|
|
|
|
map)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
"Local keymap used within `e' command of Info.")
|
|
|
|
|
|
|
|
|
|
;; Info-edit mode is suitable only for specially formatted data.
|
2000-09-21 04:43:28 +00:00
|
|
|
|
(put 'Info-edit-mode 'mode-class 'special)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-edit-mode ()
|
|
|
|
|
"Major mode for editing the contents of an Info node.
|
1992-10-25 21:14:16 +00:00
|
|
|
|
Like text mode with the addition of `Info-cease-edit'
|
1991-07-13 07:49:50 +00:00
|
|
|
|
which returns to Info mode for browsing.
|
|
|
|
|
\\{Info-edit-map}"
|
|
|
|
|
(use-local-map Info-edit-map)
|
|
|
|
|
(setq major-mode 'Info-edit-mode)
|
|
|
|
|
(setq mode-name "Info Edit")
|
|
|
|
|
(kill-local-variable 'mode-line-buffer-identification)
|
|
|
|
|
(setq buffer-read-only nil)
|
1995-04-25 22:28:58 +00:00
|
|
|
|
(force-mode-line-update)
|
1994-09-16 23:31:10 +00:00
|
|
|
|
(buffer-enable-undo (current-buffer))
|
2005-05-26 13:01:03 +00:00
|
|
|
|
(run-mode-hooks 'Info-edit-mode-hook))
|
1994-09-16 23:31:10 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-edit ()
|
|
|
|
|
"Edit the contents of this Info node.
|
|
|
|
|
Allowed only if variable `Info-enable-edit' is non-nil."
|
|
|
|
|
(interactive)
|
|
|
|
|
(or Info-enable-edit
|
2005-08-09 08:43:02 +00:00
|
|
|
|
(error "Editing Info nodes is not enabled"))
|
1994-09-16 23:31:10 +00:00
|
|
|
|
(Info-edit-mode)
|
1996-01-25 00:54:59 +00:00
|
|
|
|
(message "%s" (substitute-command-keys
|
2000-06-05 19:22:40 +00:00
|
|
|
|
"Editing: Type \\<Info-edit-map>\\[Info-cease-edit] to return to info")))
|
1991-07-13 07:49:50 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-cease-edit ()
|
|
|
|
|
"Finish editing Info node; switch back to Info proper."
|
|
|
|
|
(interactive)
|
|
|
|
|
;; Do this first, so nothing has changed if user C-g's at query.
|
|
|
|
|
(and (buffer-modified-p)
|
|
|
|
|
(y-or-n-p "Save the file? ")
|
|
|
|
|
(save-buffer))
|
|
|
|
|
(use-local-map Info-mode-map)
|
|
|
|
|
(setq major-mode 'Info-mode)
|
|
|
|
|
(setq mode-name "Info")
|
|
|
|
|
(Info-set-mode-line)
|
|
|
|
|
(setq buffer-read-only t)
|
1995-04-25 22:28:58 +00:00
|
|
|
|
(force-mode-line-update)
|
1991-07-13 07:49:50 +00:00
|
|
|
|
(and (marker-position Info-tag-table-marker)
|
|
|
|
|
(buffer-modified-p)
|
|
|
|
|
(message "Tags may have changed. Use Info-tagify if necessary")))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
|
1995-08-19 05:03:12 +00:00
|
|
|
|
(defvar Info-file-list-for-emacs
|
2004-10-28 09:02:04 +00:00
|
|
|
|
'("ediff" "eudc" "forms" "gnus" "info" ("Info" . "info") ("mh" . "mh-e")
|
2001-09-20 15:31:28 +00:00
|
|
|
|
"sc" "message" ("dired" . "dired-x") "viper" "vip" "idlwave"
|
|
|
|
|
("c" . "ccmode") ("c++" . "ccmode") ("objc" . "ccmode")
|
|
|
|
|
("java" . "ccmode") ("idl" . "ccmode") ("pike" . "ccmode")
|
2000-08-10 12:56:50 +00:00
|
|
|
|
("skeleton" . "autotype") ("auto-insert" . "autotype")
|
|
|
|
|
("copyright" . "autotype") ("executable" . "autotype")
|
|
|
|
|
("time-stamp" . "autotype") ("quickurl" . "autotype")
|
|
|
|
|
("tempo" . "autotype") ("hippie-expand" . "autotype")
|
2001-11-09 10:33:27 +00:00
|
|
|
|
("cvs" . "pcl-cvs") ("ada" . "ada-mode") "calc"
|
|
|
|
|
("calcAlg" . "calc") ("calcDigit" . "calc") ("calcVar" . "calc")
|
2001-09-20 15:31:28 +00:00
|
|
|
|
"ebrowse" "eshell" "cl" "reftex" "speedbar" "widget" "woman"
|
|
|
|
|
("mail-header" . "emacs-mime") ("mail-content" . "emacs-mime")
|
|
|
|
|
("mail-encode" . "emacs-mime") ("mail-decode" . "emacs-mime")
|
|
|
|
|
("rfc2045" . "emacs-mime")
|
|
|
|
|
("rfc2231" . "emacs-mime") ("rfc2047" . "emacs-mime")
|
|
|
|
|
("rfc2045" . "emacs-mime") ("rfc1843" . "emacs-mime")
|
|
|
|
|
("ietf-drums" . "emacs-mime") ("quoted-printable" . "emacs-mime")
|
|
|
|
|
("binhex" . "emacs-mime") ("uudecode" . "emacs-mime")
|
|
|
|
|
("mailcap" . "emacs-mime") ("mm" . "emacs-mime")
|
|
|
|
|
("mml" . "emacs-mime"))
|
1995-08-19 05:03:12 +00:00
|
|
|
|
"List of Info files that describe Emacs commands.
|
|
|
|
|
An element can be a file name, or a list of the form (PREFIX . FILE)
|
|
|
|
|
where PREFIX is a name prefix and FILE is the file to look in.
|
|
|
|
|
If the element is just a file name, the file name also serves as the prefix.")
|
|
|
|
|
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(defun Info-find-emacs-command-nodes (command)
|
1995-08-19 05:03:12 +00:00
|
|
|
|
"Return a list of locations documenting COMMAND.
|
1995-08-19 16:54:27 +00:00
|
|
|
|
The `info-file' property of COMMAND says which Info manual to search.
|
|
|
|
|
If COMMAND has no property, the variable `Info-file-list-for-emacs'
|
|
|
|
|
defines heuristics for which Info manual to try.
|
2000-06-13 14:46:08 +00:00
|
|
|
|
The locations are of the format used in `Info-history', i.e.
|
2004-10-28 09:02:04 +00:00
|
|
|
|
\(FILENAME NODENAME BUFFERPOS\), where BUFFERPOS is the line number
|
|
|
|
|
in the first element of the returned list (which is treated specially in
|
|
|
|
|
`Info-goto-emacs-command-node'), and 0 for the rest elements of a list."
|
|
|
|
|
(let ((where '()) line-number
|
1998-04-18 01:57:45 +00:00
|
|
|
|
(cmd-desc (concat "^\\* +" (regexp-quote (symbol-name command))
|
2004-10-24 18:36:28 +00:00
|
|
|
|
"\\( <[0-9]+>\\)?:\\s *\\(.*\\)\\."
|
2004-10-28 09:02:04 +00:00
|
|
|
|
"\\(?:[ \t\n]+(line +\\([0-9]+\\))\\)?"))
|
1995-08-19 05:03:12 +00:00
|
|
|
|
(info-file "emacs")) ;default
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; Determine which Info file this command is documented in.
|
1995-08-19 05:03:12 +00:00
|
|
|
|
(if (get command 'info-file)
|
|
|
|
|
(setq info-file (get command 'info-file))
|
|
|
|
|
;; If it doesn't say explicitly, test its name against
|
|
|
|
|
;; various prefixes that we know.
|
|
|
|
|
(let ((file-list Info-file-list-for-emacs))
|
|
|
|
|
(while file-list
|
|
|
|
|
(let* ((elt (car file-list))
|
|
|
|
|
(name (if (consp elt)
|
|
|
|
|
(car elt)
|
|
|
|
|
elt))
|
|
|
|
|
(file (if (consp elt) (cdr elt) elt))
|
2004-10-13 02:09:57 +00:00
|
|
|
|
(case-fold-search nil)
|
1995-08-19 16:54:27 +00:00
|
|
|
|
(regexp (concat "\\`" (regexp-quote name)
|
1995-08-19 05:03:12 +00:00
|
|
|
|
"\\(\\'\\|-\\)")))
|
|
|
|
|
(if (string-match regexp (symbol-name command))
|
|
|
|
|
(setq info-file file file-list nil))
|
|
|
|
|
(setq file-list (cdr file-list))))))
|
2000-08-11 13:10:55 +00:00
|
|
|
|
(Info-find-node info-file "Top")
|
|
|
|
|
;; Bind Info-history to nil, to prevent the index nodes from
|
|
|
|
|
;; getting into the node history.
|
|
|
|
|
(let ((Info-history nil)
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(Info-history-list nil)
|
|
|
|
|
node (nodes (Info-index-nodes)))
|
|
|
|
|
(Info-goto-node (car nodes))
|
2000-08-11 13:10:55 +00:00
|
|
|
|
(while
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward cmd-desc nil t)
|
|
|
|
|
(setq where
|
|
|
|
|
(cons (list Info-current-file
|
|
|
|
|
(match-string-no-properties 2)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
0)
|
2004-10-28 09:02:04 +00:00
|
|
|
|
where))
|
|
|
|
|
(setq line-number (and (match-beginning 3)
|
|
|
|
|
(string-to-number (match-string 3)))))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(and (setq nodes (cdr nodes) node (car nodes))))
|
2000-08-11 13:10:55 +00:00
|
|
|
|
(Info-goto-node node)))
|
2004-10-28 09:02:04 +00:00
|
|
|
|
(if (and line-number where)
|
|
|
|
|
(cons (list (nth 0 (car where)) (nth 1 (car where)) line-number)
|
|
|
|
|
(cdr where))
|
|
|
|
|
where)))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
|
2009-11-11 05:49:09 +00:00
|
|
|
|
;;;###autoload (put 'Info-goto-emacs-command-node 'info-file (purecopy "emacs"))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun Info-goto-emacs-command-node (command)
|
1993-08-06 20:29:23 +00:00
|
|
|
|
"Go to the Info node in the Emacs manual for command COMMAND.
|
2001-01-07 09:56:59 +00:00
|
|
|
|
The command is found by looking up in Emacs manual's indices
|
1995-08-19 16:54:27 +00:00
|
|
|
|
or in another manual found via COMMAND's `info-file' property or
|
2003-12-23 20:25:22 +00:00
|
|
|
|
the variable `Info-file-list-for-emacs'.
|
|
|
|
|
COMMAND must be a symbol or string."
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(interactive "CFind documentation for command: ")
|
2003-04-05 18:01:14 +00:00
|
|
|
|
;; If command is given as a string, convert it to a symbol.
|
|
|
|
|
(if (stringp command)
|
2003-12-23 20:25:22 +00:00
|
|
|
|
(setq command (intern command)))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(or (commandp command)
|
|
|
|
|
(signal 'wrong-type-argument (list 'commandp command)))
|
|
|
|
|
(let ((where (Info-find-emacs-command-nodes command)))
|
|
|
|
|
(if where
|
|
|
|
|
(let ((num-matches (length where)))
|
|
|
|
|
;; Get Info running, and pop to it in another window.
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(info))
|
2004-04-21 22:23:25 +00:00
|
|
|
|
(or (eq major-mode 'Info-mode) (pop-to-buffer "*info*"))
|
2000-08-11 13:10:55 +00:00
|
|
|
|
;; Bind Info-history to nil, to prevent the last Index node
|
|
|
|
|
;; visited by Info-find-emacs-command-nodes from being
|
|
|
|
|
;; pushed onto the history.
|
2004-10-28 09:02:04 +00:00
|
|
|
|
(let ((Info-history nil) (Info-history-list nil)
|
|
|
|
|
(line-number (nth 2 (car where))))
|
|
|
|
|
(Info-find-node (nth 0 (car where)) (nth 1 (car where)))
|
|
|
|
|
(if (and (integerp line-number) (> line-number 0))
|
|
|
|
|
(forward-line (1- line-number))))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(if (> num-matches 1)
|
|
|
|
|
(progn
|
2000-08-11 13:10:55 +00:00
|
|
|
|
;; (car where) will be pushed onto Info-history
|
|
|
|
|
;; when/if they go to another node. Put the other
|
|
|
|
|
;; nodes that were found on the history.
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(setq Info-history (nconc (cdr where) Info-history))
|
1996-01-25 00:54:59 +00:00
|
|
|
|
(message "Found %d other entr%s. Use %s to see %s."
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(1- num-matches)
|
|
|
|
|
(if (> num-matches 2) "ies" "y")
|
2005-01-11 21:57:46 +00:00
|
|
|
|
(substitute-command-keys "\\[Info-history-back]")
|
1994-02-24 03:25:46 +00:00
|
|
|
|
(if (> num-matches 2) "them" "it")))))
|
1996-01-25 06:05:40 +00:00
|
|
|
|
(error "Couldn't find documentation for %s" command))))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
|
2009-11-11 05:49:09 +00:00
|
|
|
|
;;;###autoload (put 'Info-goto-emacs-key-command-node 'info-file (purecopy "emacs"))
|
1991-07-28 00:21:00 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun Info-goto-emacs-key-command-node (key)
|
2001-01-07 09:56:59 +00:00
|
|
|
|
"Go to the node in the Emacs manual which describes the command bound to KEY.
|
|
|
|
|
KEY is a string.
|
2000-06-13 14:46:08 +00:00
|
|
|
|
Interactively, if the binding is `execute-extended-command', a command is read.
|
2001-01-07 09:56:59 +00:00
|
|
|
|
The command is found by looking up in Emacs manual's indices
|
1995-08-19 16:54:27 +00:00
|
|
|
|
or in another manual found via COMMAND's `info-file' property or
|
|
|
|
|
the variable `Info-file-list-for-emacs'."
|
2000-07-24 15:20:37 +00:00
|
|
|
|
(interactive "kFind documentation for key: ")
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(let ((command (key-binding key)))
|
|
|
|
|
(cond ((null command)
|
1992-10-27 10:14:08 +00:00
|
|
|
|
(message "%s is undefined" (key-description key)))
|
2009-10-02 03:48:36 +00:00
|
|
|
|
((and (called-interactively-p 'interactive)
|
1991-07-28 00:21:00 +00:00
|
|
|
|
(eq command 'execute-extended-command))
|
|
|
|
|
(Info-goto-emacs-command-node
|
|
|
|
|
(read-command "Find documentation for command: ")))
|
|
|
|
|
(t
|
|
|
|
|
(Info-goto-emacs-command-node command)))))
|
1993-08-02 04:22:12 +00:00
|
|
|
|
|
2002-06-12 15:50:25 +00:00
|
|
|
|
(defvar Info-next-link-keymap
|
|
|
|
|
(let ((keymap (make-sparse-keymap)))
|
|
|
|
|
(define-key keymap [header-line mouse-1] 'Info-next)
|
|
|
|
|
(define-key keymap [header-line mouse-2] 'Info-next)
|
|
|
|
|
(define-key keymap [header-line down-mouse-1] 'ignore)
|
|
|
|
|
(define-key keymap [mouse-2] 'Info-next)
|
2005-01-08 20:06:23 +00:00
|
|
|
|
(define-key keymap [follow-link] 'mouse-face)
|
2002-06-12 15:50:25 +00:00
|
|
|
|
keymap)
|
|
|
|
|
"Keymap to put on the Next link in the text or the header line.")
|
|
|
|
|
|
|
|
|
|
(defvar Info-prev-link-keymap
|
|
|
|
|
(let ((keymap (make-sparse-keymap)))
|
|
|
|
|
(define-key keymap [header-line mouse-1] 'Info-prev)
|
|
|
|
|
(define-key keymap [header-line mouse-2] 'Info-prev)
|
|
|
|
|
(define-key keymap [header-line down-mouse-1] 'ignore)
|
|
|
|
|
(define-key keymap [mouse-2] 'Info-prev)
|
2005-01-08 20:06:23 +00:00
|
|
|
|
(define-key keymap [follow-link] 'mouse-face)
|
2002-06-12 15:50:25 +00:00
|
|
|
|
keymap)
|
|
|
|
|
"Keymap to put on the Prev link in the text or the header line.")
|
|
|
|
|
|
|
|
|
|
(defvar Info-up-link-keymap
|
|
|
|
|
(let ((keymap (make-sparse-keymap)))
|
|
|
|
|
(define-key keymap [header-line mouse-1] 'Info-up)
|
|
|
|
|
(define-key keymap [header-line mouse-2] 'Info-up)
|
|
|
|
|
(define-key keymap [header-line down-mouse-1] 'ignore)
|
|
|
|
|
(define-key keymap [mouse-2] 'Info-up)
|
2005-01-08 20:06:23 +00:00
|
|
|
|
(define-key keymap [follow-link] 'mouse-face)
|
2002-06-12 15:50:25 +00:00
|
|
|
|
keymap)
|
|
|
|
|
"Keymap to put on the Up link in the text or the header line.")
|
|
|
|
|
|
2010-04-05 22:15:04 +00:00
|
|
|
|
(defvar Info-link-keymap
|
|
|
|
|
(let ((keymap (make-sparse-keymap)))
|
|
|
|
|
(define-key keymap [header-line mouse-1] 'Info-mouse-follow-link)
|
|
|
|
|
(define-key keymap [header-line mouse-2] 'Info-mouse-follow-link)
|
|
|
|
|
(define-key keymap [header-line down-mouse-1] 'ignore)
|
|
|
|
|
(define-key keymap [mouse-2] 'Info-mouse-follow-link)
|
|
|
|
|
(define-key keymap [follow-link] 'mouse-face)
|
|
|
|
|
keymap)
|
|
|
|
|
"Keymap to put on the link in the text or the header line.")
|
|
|
|
|
|
|
|
|
|
(defun Info-breadcrumbs ()
|
2008-06-15 18:18:16 +00:00
|
|
|
|
(let ((nodes (Info-toc-nodes Info-current-file))
|
|
|
|
|
(node Info-current-node)
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(crumbs ())
|
2010-04-05 22:15:04 +00:00
|
|
|
|
(depth Info-breadcrumbs-depth)
|
|
|
|
|
line)
|
2008-06-15 18:18:16 +00:00
|
|
|
|
|
|
|
|
|
;; Get ancestors from the cached parent-children node info
|
|
|
|
|
(while (and (not (equal "Top" node)) (> depth 0))
|
|
|
|
|
(setq node (nth 1 (assoc node nodes)))
|
|
|
|
|
(if node (push node crumbs))
|
|
|
|
|
(setq depth (1- depth)))
|
|
|
|
|
|
|
|
|
|
;; Add bottom node.
|
|
|
|
|
(when Info-use-header-line
|
|
|
|
|
;; Let it disappear if crumbs is nil.
|
|
|
|
|
(nconc crumbs (list Info-current-node)))
|
|
|
|
|
(when (or Info-use-header-line crumbs)
|
|
|
|
|
;; Add top node (and continuation if needed).
|
|
|
|
|
(setq crumbs
|
|
|
|
|
(cons "Top" (if (member (pop crumbs) '(nil "Top"))
|
|
|
|
|
crumbs (cons nil crumbs))))
|
|
|
|
|
;; Eliminate duplicate.
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(dolist (node crumbs)
|
|
|
|
|
(let ((text
|
|
|
|
|
(if (not (equal node "Top")) node
|
|
|
|
|
(format "(%s)Top"
|
|
|
|
|
(if (stringp Info-current-file)
|
|
|
|
|
(file-name-nondirectory Info-current-file)
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
;; Some legacy code can still use a symbol.
|
2008-06-15 18:18:16 +00:00
|
|
|
|
Info-current-file)))))
|
2010-04-05 22:15:04 +00:00
|
|
|
|
(setq line (concat
|
|
|
|
|
line
|
|
|
|
|
(if (null line) "" " > ")
|
|
|
|
|
(cond
|
|
|
|
|
((null node) "...")
|
|
|
|
|
((equal node Info-current-node)
|
|
|
|
|
;; No point linking to ourselves.
|
|
|
|
|
(propertize text 'font-lock-face 'info-header-node))
|
|
|
|
|
(t
|
|
|
|
|
(propertize text
|
|
|
|
|
'mouse-face 'highlight
|
|
|
|
|
'font-lock-face 'info-header-xref
|
|
|
|
|
'help-echo "mouse-2: Go to node"
|
|
|
|
|
'keymap Info-link-keymap
|
|
|
|
|
'link-args text)))))))
|
|
|
|
|
(setq line (concat line "\n")))
|
|
|
|
|
;; (font-lock-append-text-property 0 (length line)
|
|
|
|
|
;; 'font-lock-face 'header-line line)
|
|
|
|
|
line))
|
2008-06-13 20:34:26 +00:00
|
|
|
|
|
1993-08-02 04:22:12 +00:00
|
|
|
|
(defun Info-fontify-node ()
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
"Fontify the node."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((inhibit-read-only t)
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
paragraph-markers
|
|
|
|
|
(not-fontified-p ; the node hasn't already been fontified
|
2008-03-08 00:11:29 +00:00
|
|
|
|
(not (let ((where (next-single-property-change (point-min)
|
2006-03-14 12:14:57 +00:00
|
|
|
|
'font-lock-face)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(and where (not (= where (point-max)))))))
|
|
|
|
|
(fontify-visited-p ; visited nodes need to be re-fontified
|
|
|
|
|
(and Info-fontify-visited-nodes
|
|
|
|
|
;; Don't take time to refontify visited nodes in huge nodes
|
2007-02-10 11:10:49 +00:00
|
|
|
|
Info-fontify-maximum-menu-size
|
2004-10-18 07:31:43 +00:00
|
|
|
|
(< (- (point-max) (point-min)) Info-fontify-maximum-menu-size)))
|
|
|
|
|
rbeg rend)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
;; Fontify header line
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (and not-fontified-p (looking-at "^\\(File: [^,: \t]+,?[ \t]+\\)?"))
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(while (looking-at "[ \t]*\\([^:, \t\n]+\\):[ \t]+\\([^:,\t\n]+\\),?")
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(let* ((nbeg (match-beginning 2))
|
|
|
|
|
(nend (match-end 2))
|
|
|
|
|
(tbeg (match-beginning 1))
|
|
|
|
|
(tag (match-string 1)))
|
2005-11-01 09:56:07 +00:00
|
|
|
|
(if (string-equal (downcase tag) "node")
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(put-text-property nbeg nend 'font-lock-face 'info-header-node)
|
|
|
|
|
(put-text-property nbeg nend 'font-lock-face 'info-header-xref)
|
|
|
|
|
(put-text-property tbeg nend 'mouse-face 'highlight)
|
|
|
|
|
(put-text-property tbeg nend
|
|
|
|
|
'help-echo
|
2005-01-08 20:06:23 +00:00
|
|
|
|
(concat "mouse-2: Go to node "
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(buffer-substring nbeg nend)))
|
|
|
|
|
;; Always set up the text property keymap.
|
|
|
|
|
;; It will either be used in the buffer
|
|
|
|
|
;; or copied in the header line.
|
2005-11-01 09:56:07 +00:00
|
|
|
|
(put-text-property
|
|
|
|
|
tbeg nend 'keymap
|
|
|
|
|
(cond
|
|
|
|
|
((string-equal (downcase tag) "prev") Info-prev-link-keymap)
|
|
|
|
|
((string-equal (downcase tag) "next") Info-next-link-keymap)
|
|
|
|
|
((string-equal (downcase tag) "up" ) Info-up-link-keymap))))))
|
2008-09-04 08:17:57 +00:00
|
|
|
|
|
2010-04-05 22:15:04 +00:00
|
|
|
|
;; (when (> Info-breadcrumbs-depth 0)
|
|
|
|
|
;; (insert (Info-breadcrumbs)))
|
2008-09-04 08:17:57 +00:00
|
|
|
|
|
2008-06-13 20:34:26 +00:00
|
|
|
|
;; Treat header line.
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(when Info-use-header-line
|
|
|
|
|
(goto-char (point-min))
|
2005-10-12 19:47:24 +00:00
|
|
|
|
(let* ((header-end (line-end-position))
|
|
|
|
|
(header
|
|
|
|
|
;; If we find neither Next: nor Prev: link, show the entire
|
|
|
|
|
;; node header. Otherwise, don't show the File: and Node:
|
|
|
|
|
;; parts, to avoid wasting precious space on information that
|
|
|
|
|
;; is available in the mode line.
|
|
|
|
|
(if (re-search-forward
|
|
|
|
|
"\\(next\\|up\\|prev[ious]*\\): "
|
|
|
|
|
header-end t)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
|
(buffer-substring (point) header-end))
|
|
|
|
|
(if (re-search-forward "node:[ \t]*[^ \t]+[ \t]*"
|
|
|
|
|
header-end t)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(concat "No next, prev or up links -- "
|
2005-10-12 19:47:24 +00:00
|
|
|
|
(buffer-substring (point) header-end))
|
|
|
|
|
(buffer-substring (point) header-end)))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(put-text-property (point-min) (1+ (point-min))
|
2005-08-22 19:53:46 +00:00
|
|
|
|
'header-line
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"%"
|
|
|
|
|
;; Preserve text properties on duplicated `%'.
|
|
|
|
|
(lambda (s) (concat s s)) header))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
;; Hide the part of the first line
|
|
|
|
|
;; that is in the header, if it is just part.
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(cond
|
|
|
|
|
((> Info-breadcrumbs-depth 0)
|
2010-04-05 22:15:04 +00:00
|
|
|
|
(let ((ov (make-overlay (point-min) (1+ header-end))))
|
|
|
|
|
(overlay-put ov 'invisible t)
|
|
|
|
|
(overlay-put ov 'after-string (Info-breadcrumbs))
|
|
|
|
|
(overlay-put ov 'evaporate t)))
|
2008-06-13 20:34:26 +00:00
|
|
|
|
((not (bobp))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
;; Hide the punctuation at the end, too.
|
|
|
|
|
(skip-chars-backward " \t,")
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(put-text-property (point) header-end 'invisible t))))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
;; Fontify titles
|
|
|
|
|
(goto-char (point-min))
|
2005-10-12 19:47:24 +00:00
|
|
|
|
(when (and font-lock-mode not-fontified-p)
|
|
|
|
|
(while (and (re-search-forward "\n\\([^ \t\n].+\\)\n\\(\\*\\*+\\|==+\\|--+\\|\\.\\.+\\)$"
|
|
|
|
|
nil t)
|
|
|
|
|
;; Only consider it as an underlined title if the ASCII
|
|
|
|
|
;; underline has the same size as the text. A typical
|
|
|
|
|
;; counter example is when a continuation "..." is alone
|
|
|
|
|
;; on a line.
|
2005-11-01 10:04:19 +00:00
|
|
|
|
(= (string-width (match-string 1))
|
|
|
|
|
(string-width (match-string 2))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(let* ((c (preceding-char))
|
|
|
|
|
(face
|
2005-06-10 08:58:53 +00:00
|
|
|
|
(cond ((= c ?*) 'info-title-1)
|
|
|
|
|
((= c ?=) 'info-title-2)
|
|
|
|
|
((= c ?-) 'info-title-3)
|
|
|
|
|
(t 'info-title-4))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(put-text-property (match-beginning 1) (match-end 1)
|
|
|
|
|
'font-lock-face face))
|
|
|
|
|
;; This is a serious problem for trying to handle multiple
|
|
|
|
|
;; frame types at once. We want this text to be invisible
|
|
|
|
|
;; on frames that can display the font above.
|
2008-07-27 18:24:48 +00:00
|
|
|
|
(when (memq (framep (selected-frame)) '(x pc w32 ns))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(add-text-properties (1- (match-beginning 2)) (match-end 2)
|
|
|
|
|
'(invisible t front-sticky nil rear-nonsticky t)))))
|
|
|
|
|
|
|
|
|
|
;; Fontify cross references
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (or not-fontified-p fontify-visited-p)
|
|
|
|
|
(while (re-search-forward "\\(\\*Note[ \n\t]+\\)\\([^:]*\\)\\(:[ \t]*\\([^.,:(]*\\)\\(\\(([^)]*)\\)[^.,:]*\\)?[,:]?\n?\\)" nil t)
|
|
|
|
|
(let ((start (match-beginning 0))
|
|
|
|
|
(next (point))
|
|
|
|
|
other-tag)
|
|
|
|
|
(when not-fontified-p
|
|
|
|
|
(when Info-hide-note-references
|
2008-06-13 20:34:26 +00:00
|
|
|
|
(when (and (not (eq Info-hide-note-references 'hide))
|
|
|
|
|
(> (line-number-at-pos) 4)) ; Skip breadcrumbs
|
2004-09-02 16:36:18 +00:00
|
|
|
|
;; *Note is often used where *note should have been
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(skip-syntax-backward " ")
|
2005-10-26 16:39:23 +00:00
|
|
|
|
(when (memq (char-before) '(?\( ?\[ ?\{))
|
|
|
|
|
;; Check whether the paren is preceded by
|
|
|
|
|
;; an end of sentence
|
|
|
|
|
(skip-syntax-backward " ("))
|
2004-09-02 16:36:18 +00:00
|
|
|
|
(setq other-tag
|
2005-11-03 21:38:35 +00:00
|
|
|
|
(cond ((save-match-data (looking-back "\\<see"))
|
|
|
|
|
"")
|
2006-08-08 17:45:42 +00:00
|
|
|
|
((save-match-data (looking-back "\\<in"))
|
|
|
|
|
"")
|
2005-11-03 21:38:35 +00:00
|
|
|
|
((memq (char-before) '(nil ?\. ?! ??))
|
2004-09-02 16:36:18 +00:00
|
|
|
|
"See ")
|
2005-10-26 16:39:23 +00:00
|
|
|
|
((save-match-data
|
|
|
|
|
(save-excursion
|
|
|
|
|
(search-forward "\n\n" start t)))
|
|
|
|
|
"See ")
|
|
|
|
|
(t "see "))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(goto-char next)
|
|
|
|
|
(add-text-properties
|
|
|
|
|
(match-beginning 1)
|
|
|
|
|
(or (save-match-data
|
|
|
|
|
;; Don't hide \n after *Note
|
|
|
|
|
(let ((start1 (match-beginning 1)))
|
|
|
|
|
(if (string-match "\n" (match-string 1))
|
|
|
|
|
(+ start1 (match-beginning 0)))))
|
|
|
|
|
(match-end 1))
|
2004-09-02 16:36:18 +00:00
|
|
|
|
(if other-tag
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
`(display ,other-tag front-sticky nil rear-nonsticky t)
|
|
|
|
|
'(invisible t front-sticky nil rear-nonsticky t))))
|
|
|
|
|
(add-text-properties
|
|
|
|
|
(match-beginning 2) (match-end 2)
|
|
|
|
|
(list
|
|
|
|
|
'help-echo (if (or (match-end 5)
|
|
|
|
|
(not (equal (match-string 4) "")))
|
|
|
|
|
(concat "mouse-2: go to " (or (match-string 5)
|
|
|
|
|
(match-string 4)))
|
|
|
|
|
"mouse-2: go to this node")
|
|
|
|
|
'mouse-face 'highlight)))
|
|
|
|
|
(when (or not-fontified-p fontify-visited-p)
|
2004-10-18 07:31:43 +00:00
|
|
|
|
(setq rbeg (match-beginning 2)
|
|
|
|
|
rend (match-end 2))
|
|
|
|
|
(put-text-property
|
|
|
|
|
rbeg rend
|
|
|
|
|
'font-lock-face
|
|
|
|
|
;; Display visited nodes in a different face
|
|
|
|
|
(if (and Info-fontify-visited-nodes
|
|
|
|
|
(save-match-data
|
|
|
|
|
(let* ((node (replace-regexp-in-string
|
|
|
|
|
"^[ \t]+" ""
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"[ \t\n]+" " "
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(or (match-string-no-properties 5)
|
2004-10-18 07:31:43 +00:00
|
|
|
|
(and (not (equal (match-string 4) ""))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 4))
|
|
|
|
|
(match-string-no-properties 2)))))
|
2005-12-04 04:31:59 +00:00
|
|
|
|
(external-link-p
|
|
|
|
|
(string-match "(\\([^)]+\\))\\([^)]*\\)" node))
|
|
|
|
|
(file (if external-link-p
|
|
|
|
|
(file-name-nondirectory
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 1 node))
|
2005-12-04 04:31:59 +00:00
|
|
|
|
Info-current-file))
|
2004-10-18 07:31:43 +00:00
|
|
|
|
(hl Info-history-list)
|
|
|
|
|
res)
|
2005-12-04 04:31:59 +00:00
|
|
|
|
(if external-link-p
|
|
|
|
|
(setq node (if (equal (match-string 2 node) "")
|
2004-10-18 07:31:43 +00:00
|
|
|
|
"Top"
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 2 node))))
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(while hl
|
|
|
|
|
(if (and (string-equal node (nth 1 (car hl)))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(equal file
|
|
|
|
|
(if (and external-link-p
|
|
|
|
|
(stringp (caar hl)))
|
|
|
|
|
(file-name-nondirectory
|
|
|
|
|
(caar hl))
|
|
|
|
|
(caar hl))))
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(setq res (car hl) hl nil)
|
|
|
|
|
(setq hl (cdr hl))))
|
2004-10-18 07:31:43 +00:00
|
|
|
|
res))) 'info-xref-visited 'info-xref))
|
|
|
|
|
;; For multiline ref, unfontify newline and surrounding whitespace
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char rbeg)
|
|
|
|
|
(save-match-data
|
|
|
|
|
(while (re-search-forward "\\s-*\n\\s-*" rend t nil)
|
|
|
|
|
(remove-text-properties (match-beginning 0)
|
|
|
|
|
(match-end 0)
|
|
|
|
|
'(font-lock-face t))))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(when not-fontified-p
|
|
|
|
|
(when (memq Info-hide-note-references '(t hide))
|
|
|
|
|
(add-text-properties (match-beginning 3) (match-end 3)
|
|
|
|
|
'(invisible t front-sticky nil rear-nonsticky t))
|
|
|
|
|
;; Unhide the file name of the external reference in parens
|
2004-04-21 22:23:25 +00:00
|
|
|
|
(if (and (match-string 6) (not (eq Info-hide-note-references 'hide)))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(remove-text-properties (match-beginning 6) (match-end 6)
|
|
|
|
|
'(invisible t front-sticky nil rear-nonsticky t)))
|
|
|
|
|
;; Unhide newline because hidden newlines cause too long lines
|
|
|
|
|
(save-match-data
|
2004-04-21 22:23:25 +00:00
|
|
|
|
(let ((beg3 (match-beginning 3))
|
|
|
|
|
(end3 (match-end 3)))
|
|
|
|
|
(if (and (string-match "\n[ \t]*" (match-string 3))
|
|
|
|
|
(not (save-match-data
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (1+ end3))
|
|
|
|
|
(looking-at "[.)]*$")))))
|
|
|
|
|
(remove-text-properties (+ beg3 (match-beginning 0))
|
|
|
|
|
(+ beg3 (match-end 0))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
'(invisible t front-sticky nil rear-nonsticky t))))))
|
|
|
|
|
(when (and Info-refill-paragraphs Info-hide-note-references)
|
|
|
|
|
(push (set-marker (make-marker) start)
|
|
|
|
|
paragraph-markers))))))
|
|
|
|
|
|
|
|
|
|
;; Refill paragraphs (experimental feature)
|
|
|
|
|
(when (and not-fontified-p
|
|
|
|
|
Info-refill-paragraphs
|
|
|
|
|
paragraph-markers)
|
|
|
|
|
(let ((fill-nobreak-invisible t)
|
|
|
|
|
(fill-individual-varying-indent nil)
|
|
|
|
|
(paragraph-start "\f\\|[ \t]*[-*]\\|[ \t]*$")
|
|
|
|
|
(paragraph-separate ".*\\.[ \t]*\n[ \t]\\|[ \t]*[-*]\\|[ \t\f]*$")
|
|
|
|
|
(adaptive-fill-mode nil))
|
|
|
|
|
(goto-char (point-max))
|
2005-10-16 14:12:03 +00:00
|
|
|
|
(dolist (m paragraph-markers)
|
|
|
|
|
(when (< m (point))
|
|
|
|
|
(goto-char m)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(let ((beg (point)))
|
|
|
|
|
(when (zerop (forward-paragraph))
|
|
|
|
|
(fill-individual-paragraphs beg (point) nil nil)
|
|
|
|
|
(goto-char beg))))
|
|
|
|
|
(set-marker m nil))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
;; Fontify menu items
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (and (or not-fontified-p fontify-visited-p)
|
|
|
|
|
(search-forward "\n* Menu:" nil t)
|
|
|
|
|
;; Don't take time to annotate huge menus
|
2007-02-10 11:10:49 +00:00
|
|
|
|
Info-fontify-maximum-menu-size
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(< (- (point-max) (point)) Info-fontify-maximum-menu-size))
|
|
|
|
|
(let ((n 0)
|
|
|
|
|
cont)
|
|
|
|
|
(while (re-search-forward
|
2005-04-10 23:31:17 +00:00
|
|
|
|
(concat "^\\* Menu:\\|\\(?:^\\* +\\(" Info-menu-entry-name-re "\\)\\(:"
|
|
|
|
|
Info-node-spec-re "\\([ \t]*\\)\\)\\)")
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
nil t)
|
2005-04-10 23:31:17 +00:00
|
|
|
|
(when (match-beginning 1)
|
|
|
|
|
(when not-fontified-p
|
|
|
|
|
(setq n (1+ n))
|
|
|
|
|
(if (and (<= n 9) (zerop (% n 3))) ; visual aids to help with 1-9 keys
|
|
|
|
|
(put-text-property (match-beginning 0)
|
|
|
|
|
(1+ (match-beginning 0))
|
2005-08-09 08:43:02 +00:00
|
|
|
|
'font-lock-face 'info-menu-star)))
|
2005-04-10 23:31:17 +00:00
|
|
|
|
(when not-fontified-p
|
|
|
|
|
(add-text-properties
|
|
|
|
|
(match-beginning 1) (match-end 1)
|
|
|
|
|
(list
|
|
|
|
|
'help-echo (if (and (match-end 3)
|
|
|
|
|
(not (equal (match-string 3) "")))
|
|
|
|
|
(concat "mouse-2: go to " (match-string 3))
|
|
|
|
|
"mouse-2: go to this node")
|
|
|
|
|
'mouse-face 'highlight)))
|
|
|
|
|
(when (or not-fontified-p fontify-visited-p)
|
2005-10-16 14:12:03 +00:00
|
|
|
|
(put-text-property
|
2005-04-10 23:31:17 +00:00
|
|
|
|
(match-beginning 1) (match-end 1)
|
2005-10-16 14:12:03 +00:00
|
|
|
|
'font-lock-face
|
|
|
|
|
;; Display visited menu items in a different face
|
|
|
|
|
(if (and Info-fontify-visited-nodes
|
|
|
|
|
(save-match-data
|
2005-12-04 04:31:59 +00:00
|
|
|
|
(let* ((node (if (equal (match-string 3) "")
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 1)
|
|
|
|
|
(match-string-no-properties 3)))
|
2005-12-04 04:31:59 +00:00
|
|
|
|
(external-link-p
|
|
|
|
|
(string-match "(\\([^)]+\\))\\([^)]*\\)" node))
|
|
|
|
|
(file (if external-link-p
|
|
|
|
|
(file-name-nondirectory
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 1 node))
|
2005-12-04 04:31:59 +00:00
|
|
|
|
Info-current-file))
|
|
|
|
|
(hl Info-history-list)
|
|
|
|
|
res)
|
|
|
|
|
(if external-link-p
|
|
|
|
|
(setq node (if (equal (match-string 2 node) "")
|
2005-10-16 14:12:03 +00:00
|
|
|
|
"Top"
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(match-string-no-properties 2 node))))
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(while hl
|
|
|
|
|
(if (and (string-equal node (nth 1 (car hl)))
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(equal file
|
|
|
|
|
(if (and external-link-p
|
|
|
|
|
(stringp (caar hl)))
|
|
|
|
|
(file-name-nondirectory
|
|
|
|
|
(caar hl))
|
|
|
|
|
(caar hl))))
|
2005-11-25 16:35:34 +00:00
|
|
|
|
(setq res (car hl) hl nil)
|
|
|
|
|
(setq hl (cdr hl))))
|
2005-10-16 14:12:03 +00:00
|
|
|
|
res))) 'info-xref-visited 'info-xref)))
|
2007-01-09 21:18:56 +00:00
|
|
|
|
(when (and not-fontified-p
|
|
|
|
|
(memq Info-hide-note-references '(t hide))
|
|
|
|
|
(not (Info-index-node)))
|
2005-04-10 23:31:17 +00:00
|
|
|
|
(put-text-property (match-beginning 2) (1- (match-end 6))
|
|
|
|
|
'invisible t)
|
|
|
|
|
;; Unhide the file name in parens
|
|
|
|
|
(if (and (match-end 4) (not (eq (char-after (match-end 4)) ?.)))
|
|
|
|
|
(remove-text-properties (match-beginning 4) (match-end 4)
|
|
|
|
|
'(invisible t)))
|
|
|
|
|
;; We need a stretchable space like :align-to but with
|
|
|
|
|
;; a minimum value.
|
|
|
|
|
(put-text-property (1- (match-end 6)) (match-end 6) 'display
|
|
|
|
|
(if (>= 22 (- (match-end 1)
|
|
|
|
|
(match-beginning 0)))
|
|
|
|
|
'(space :align-to 24)
|
|
|
|
|
'(space :width 2)))
|
|
|
|
|
(setq cont (looking-at "."))
|
|
|
|
|
(while (and (= (forward-line 1) 0)
|
|
|
|
|
(looking-at "\\([ \t]+\\)[^*\n]"))
|
|
|
|
|
(put-text-property (match-beginning 1) (1- (match-end 1))
|
|
|
|
|
'invisible t)
|
|
|
|
|
(put-text-property (1- (match-end 1)) (match-end 1)
|
|
|
|
|
'display
|
|
|
|
|
(if cont
|
|
|
|
|
'(space :align-to 26)
|
|
|
|
|
'(space :align-to 24)))
|
|
|
|
|
(setq cont t)))))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
;; Fontify menu headers
|
|
|
|
|
;; Add the face `info-menu-header' to any header before a menu entry
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (and not-fontified-p (re-search-forward "^\\* Menu:" nil t))
|
|
|
|
|
(put-text-property (match-beginning 0) (match-end 0)
|
|
|
|
|
'font-lock-face 'info-menu-header)
|
|
|
|
|
(while (re-search-forward "\n\n\\([^*\n ].*\\)\n\n?[*]" nil t)
|
|
|
|
|
(put-text-property (match-beginning 1) (match-end 1)
|
|
|
|
|
'font-lock-face 'info-menu-header)))
|
|
|
|
|
|
2004-04-27 06:39:46 +00:00
|
|
|
|
;; Hide index line numbers
|
|
|
|
|
(goto-char (point-min))
|
(Info-index-nodes): New var and fun.
(Info-goto-index, Info-index, info-apropos)
(Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
(Info-index): Fix docstring. Store and restore Info-history-list.
(Info-complete-nodes): New var.
(Info-complete-menu-item): Use it.
(Info-index-node): New fun.
(Info-final-node, Info-forward-node, Info-backward-node)
(Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
Use Info-index-node.
(Info-extract-menu-item, Info-extract-menu-counting): Set second
arg of `Info-extract-menu-node-name' to non-nil for index nodes.
(Info-find-node-2): If a node with period in its name not found,
try to find a node without the name part after period.
(Info-select-node): Call Info-fontify-node only if
Info-fontify-maximum-menu-size is not nil.
(info-apropos): Set Info-fontify-maximum-menu-size to nil.
(Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
Preserve Info-history-list.
(Info-toc): Set Info-current-file.
(Info-build-toc): Move point to the beginning of the buffer.
Add main-file variable.
(Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
Use backslashed representation of the control character ^_.
2004-05-23 20:53:42 +00:00
|
|
|
|
(when (and not-fontified-p (Info-index-node))
|
2004-04-27 06:39:46 +00:00
|
|
|
|
(while (re-search-forward "[ \t\n]*(line +[0-9]+)" nil t)
|
|
|
|
|
(put-text-property (match-beginning 0) (match-end 0)
|
|
|
|
|
'invisible t)))
|
|
|
|
|
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
;; Fontify http and ftp references
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when not-fontified-p
|
2007-05-19 04:46:32 +00:00
|
|
|
|
(while (re-search-forward "\\(https?\\|ftp\\)://[^ \t\n\"`({<>})']+"
|
|
|
|
|
nil t)
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
(add-text-properties (match-beginning 0) (match-end 0)
|
|
|
|
|
'(font-lock-face info-xref
|
2008-06-13 20:34:26 +00:00
|
|
|
|
mouse-face highlight
|
|
|
|
|
help-echo "mouse-2: go to this URL"))))
|
(Info-history): Doc fix.
(Info-history-list): New var.
(info-xref): Change magenta4 to blue, remove bold for dark and
light backgrounds, change bold to underline for non-color classes.
(info-xref-visited): New face.
(Info-fontify-visited-nodes): New custom.
(Info-hide-note-references): Add new value `hide'. Doc fix.
(Info-reference-name): New var.
(Info-selection-hook): New custom.
(Info-edit-mode-hook): New var.
(Info-find-file): New fun.
(Info-find-node): Move part of code to Info-find-file.
(Info-find-node-2): Add anchors to Info-history-list. Move point
to the place with the reference name if name is defined.
(Info-select-node): Add current node to Info-history-list.
(Info-goto-node): Switch to *info* from *info-history* *info-toc*.
(Info-search-whitespace-regexp): New custom.
(Info-search-case-fold): New var.
(Info-search): Add "case-sensitively" to the prompt. Use
Info-search-whitespace-regexp. Set Info-search-case-fold.
(Info-search-case-sensitively, Info-search-next): New fun.
(Info-up): Move point to the menu item of the current node.
(Info-history): New fun. Add *info-history* to same-window-buffer-names.
(Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
(Info-insert-toc): New fun.
(Info-build-toc): New fun.
(Info-follow-reference): Add new arg `fork'. Doc fix.
Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
with the same name prefer the reference closest to point.
(Info-next-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-prev-reference): Replace * by + in the *Note regexp.
Add regexp for http:// and ftp://. Skip the *Note prefix.
(Info-follow-nearest-node): Add new arg `fork'.
(Info-try-follow-nearest-node): Add new arg `fork'.
Call browse-url for http:// and ftp:// references.
Set Info-reference-name for index entries.
(Info-mode-menu): Add menu items for Info-search-case-sensitively,
Info-search-next, Info-history, Info-toc, clone-buffer.
(Info-menu-update): Replace * by + in the *Note regexp.
(Info-mode): Add documentation for Info-history, Info-toc,
Info-search-case-sensitively, Info-search-next, clone-buffer.
(Info-fontify-menu-headers): Remove fun. Move code to
Info-fontify-node.
(Info-fontify-node): Add docstring. Add local vars
fontify-visited-p and not-fontified-p. If not-fontified-p is t
then fontify header line, titles, menu headers, http and ftp
references, refill paragraphs. If not-fontified-p is t or
fontify-visited-p is t then fontify cross references, menu items.
Fontify menu headers. Fontify http and ftp references. Change
regexp for cross references to require whitespace after *Note, add
matching groups for file and node names. Remove hack for quote.
Use display property for Info-hide-note-references=t. Use fifth
or fourth match for help-echo. Display visited nodes in a
different face. Unhide file names of external references. Unhide
newlines. Display visited menu items in a different face.
2004-04-08 03:44:34 +00:00
|
|
|
|
|
|
|
|
|
(set-buffer-modified-p nil))))
|
1997-02-08 18:34:21 +00:00
|
|
|
|
|
1998-01-22 23:50:25 +00:00
|
|
|
|
;;; Speedbar support:
|
|
|
|
|
;; These functions permit speedbar to display the "tags" in the
|
2005-08-09 08:43:02 +00:00
|
|
|
|
;; current Info node.
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(eval-when-compile (require 'speedbar))
|
1998-01-22 23:50:25 +00:00
|
|
|
|
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(defvar Info-speedbar-key-map nil
|
|
|
|
|
"Keymap used when in the info display mode.")
|
1998-01-22 23:50:25 +00:00
|
|
|
|
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(defun Info-install-speedbar-variables ()
|
|
|
|
|
"Install those variables used by speedbar to enhance Info."
|
|
|
|
|
(if Info-speedbar-key-map
|
|
|
|
|
nil
|
|
|
|
|
(setq Info-speedbar-key-map (speedbar-make-specialized-keymap))
|
|
|
|
|
|
|
|
|
|
;; Basic tree features
|
|
|
|
|
(define-key Info-speedbar-key-map "e" 'speedbar-edit-line)
|
|
|
|
|
(define-key Info-speedbar-key-map "\C-m" 'speedbar-edit-line)
|
|
|
|
|
(define-key Info-speedbar-key-map "+" 'speedbar-expand-line)
|
|
|
|
|
(define-key Info-speedbar-key-map "-" 'speedbar-contract-line)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(speedbar-add-expansion-list '("Info" Info-speedbar-menu-items
|
|
|
|
|
Info-speedbar-key-map
|
|
|
|
|
Info-speedbar-hierarchy-buttons)))
|
1998-01-22 23:50:25 +00:00
|
|
|
|
|
|
|
|
|
(defvar Info-speedbar-menu-items
|
1998-07-10 16:46:59 +00:00
|
|
|
|
'(["Browse Node" speedbar-edit-line t]
|
|
|
|
|
["Expand Node" speedbar-expand-line
|
|
|
|
|
(save-excursion (beginning-of-line)
|
|
|
|
|
(looking-at "[0-9]+: *.\\+. "))]
|
|
|
|
|
["Contract Node" speedbar-contract-line
|
|
|
|
|
(save-excursion (beginning-of-line)
|
|
|
|
|
(looking-at "[0-9]+: *.-. "))]
|
|
|
|
|
)
|
1998-01-22 23:50:25 +00:00
|
|
|
|
"Additional menu-items to add to speedbar frame.")
|
|
|
|
|
|
1998-07-10 16:46:59 +00:00
|
|
|
|
;; Make sure our special speedbar major mode is loaded
|
|
|
|
|
(if (featurep 'speedbar)
|
|
|
|
|
(Info-install-speedbar-variables)
|
|
|
|
|
(add-hook 'speedbar-load-hook 'Info-install-speedbar-variables))
|
|
|
|
|
|
|
|
|
|
;;; Info hierarchy display method
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun Info-speedbar-browser ()
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Initialize speedbar to display an Info node browser.
|
1998-07-10 16:46:59 +00:00
|
|
|
|
This will add a speedbar major display mode."
|
|
|
|
|
(interactive)
|
|
|
|
|
(require 'speedbar)
|
|
|
|
|
;; Make sure that speedbar is active
|
|
|
|
|
(speedbar-frame-mode 1)
|
|
|
|
|
;; Now, throw us into Info mode on speedbar.
|
|
|
|
|
(speedbar-change-initial-expansion-list "Info")
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(defun Info-speedbar-hierarchy-buttons (directory depth &optional node)
|
|
|
|
|
"Display an Info directory hierarchy in speedbar.
|
|
|
|
|
DIRECTORY is the current directory in the attached frame.
|
|
|
|
|
DEPTH is the current indentation depth.
|
|
|
|
|
NODE is an optional argument that is used to represent the
|
|
|
|
|
specific node to expand."
|
|
|
|
|
(if (and (not node)
|
|
|
|
|
(save-excursion (goto-char (point-min))
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(looking-at "Info Nodes:"))))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
;; Update our "current node" maybe?
|
|
|
|
|
nil
|
|
|
|
|
;; We cannot use the generic list code, that depends on all leaves
|
|
|
|
|
;; being known at creation time.
|
|
|
|
|
(if (not node)
|
|
|
|
|
(speedbar-with-writable (insert "Info Nodes:\n")))
|
2005-10-02 03:11:03 +00:00
|
|
|
|
(let ((completions nil))
|
|
|
|
|
(speedbar-select-attached-frame)
|
1998-08-03 17:54:35 +00:00
|
|
|
|
(save-window-excursion
|
|
|
|
|
(setq completions
|
|
|
|
|
(Info-speedbar-fetch-file-nodes (or node '"(dir)top"))))
|
2005-10-04 14:06:44 +00:00
|
|
|
|
(select-frame (speedbar-current-frame))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(if completions
|
|
|
|
|
(speedbar-with-writable
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(dolist (completion completions)
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(speedbar-make-tag-line 'bracket ?+ 'Info-speedbar-expand-node
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(cdr completion)
|
|
|
|
|
(car completion)
|
1998-07-10 16:46:59 +00:00
|
|
|
|
'Info-speedbar-goto-node
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(cdr completion)
|
|
|
|
|
'info-xref depth))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
t)
|
|
|
|
|
nil))))
|
2000-05-16 16:24:25 +00:00
|
|
|
|
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(defun Info-speedbar-goto-node (text node indent)
|
2000-10-15 16:46:09 +00:00
|
|
|
|
"When user clicks on TEXT, go to an info NODE.
|
1998-07-10 16:46:59 +00:00
|
|
|
|
The INDENT level is ignored."
|
2005-10-02 03:11:03 +00:00
|
|
|
|
(speedbar-select-attached-frame)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(let* ((buff (or (get-buffer "*info*")
|
|
|
|
|
(progn (info) (get-buffer "*info*"))))
|
|
|
|
|
(bwin (get-buffer-window buff 0)))
|
|
|
|
|
(if bwin
|
|
|
|
|
(progn
|
|
|
|
|
(select-window bwin)
|
|
|
|
|
(raise-frame (window-frame bwin)))
|
|
|
|
|
(if speedbar-power-click
|
|
|
|
|
(let ((pop-up-frames t)) (select-window (display-buffer buff)))
|
2005-10-02 03:11:03 +00:00
|
|
|
|
(speedbar-select-attached-frame)
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(switch-to-buffer buff)))
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" node))
|
|
|
|
|
(error "Invalid node %s" node)
|
|
|
|
|
(Info-find-node (match-string 1 node) (match-string 2 node))
|
2000-06-05 19:22:40 +00:00
|
|
|
|
;; If we do a find-node, and we were in info mode, restore
|
|
|
|
|
;; the old default method. Once we are in info mode, it makes
|
|
|
|
|
;; sense to return to whatever method the user was using before.
|
|
|
|
|
(if (string= speedbar-initial-expansion-list-name "Info")
|
|
|
|
|
(speedbar-change-initial-expansion-list
|
|
|
|
|
speedbar-previously-used-expansion-list-name)))))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-speedbar-expand-node (text token indent)
|
|
|
|
|
"Expand the node the user clicked on.
|
|
|
|
|
TEXT is the text of the button we clicked on, a + or - item.
|
|
|
|
|
TOKEN is data related to this node (NAME . FILE).
|
|
|
|
|
INDENT is the current indentation depth."
|
|
|
|
|
(cond ((string-match "+" text) ;we have to expand this file
|
|
|
|
|
(speedbar-change-expand-button-char ?-)
|
|
|
|
|
(if (speedbar-with-writable
|
2000-06-05 19:22:40 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line) (forward-char 1)
|
|
|
|
|
(Info-speedbar-hierarchy-buttons nil (1+ indent) token)))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(speedbar-change-expand-button-char ?-)
|
|
|
|
|
(speedbar-change-expand-button-char ??)))
|
|
|
|
|
((string-match "-" text) ;we have to contract this node
|
|
|
|
|
(speedbar-change-expand-button-char ?+)
|
|
|
|
|
(speedbar-delete-subblock indent))
|
|
|
|
|
(t (error "Ooops... not sure what to do")))
|
|
|
|
|
(speedbar-center-buffer-smartly))
|
|
|
|
|
|
|
|
|
|
(defun Info-speedbar-fetch-file-nodes (nodespec)
|
|
|
|
|
"Fetch the subnodes from the info NODESPEC.
|
2005-07-04 09:36:02 +00:00
|
|
|
|
NODESPEC is a string of the form: (file)node."
|
2008-04-19 03:33:13 +00:00
|
|
|
|
;; Set up a buffer we can use to fake-out Info.
|
|
|
|
|
(with-current-buffer (get-buffer-create " *info-browse-tmp*")
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(if (not (equal major-mode 'Info-mode))
|
|
|
|
|
(Info-mode))
|
|
|
|
|
;; Get the node into this buffer
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(if (not (string-match "^(\\([^)]+\\))\\([^.]+\\)$" nodespec))
|
|
|
|
|
(error "Invalid node specification %s" nodespec)
|
|
|
|
|
(Info-find-node (match-string 1 nodespec) (match-string 2 nodespec)))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
;; Scan the created buffer
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((completions nil)
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(case-fold-search t)
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(thisfile (progn (string-match "^(\\([^)]+\\))" nodespec)
|
|
|
|
|
(match-string 1 nodespec))))
|
|
|
|
|
;; Always skip the first one...
|
|
|
|
|
(re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
|
|
|
|
|
(while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
|
|
|
|
|
(let ((name (match-string 1)))
|
2003-06-03 19:54:42 +00:00
|
|
|
|
(push (cons name
|
|
|
|
|
(if (looking-at " *\\(([^)]+)[^.\n]+\\)\\.")
|
|
|
|
|
(match-string 1)
|
|
|
|
|
(if (looking-at " *\\(([^)]+)\\)\\.")
|
|
|
|
|
(concat (match-string 1) "Top")
|
|
|
|
|
(concat "(" thisfile ")"
|
|
|
|
|
(if (looking-at " \\([^.]+\\).")
|
|
|
|
|
(match-string 1)
|
|
|
|
|
name)))))
|
|
|
|
|
completions)))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(nreverse completions))))
|
|
|
|
|
|
|
|
|
|
;;; Info mode node listing
|
2005-10-02 03:11:03 +00:00
|
|
|
|
;; This is called by `speedbar-add-localized-speedbar-support'
|
1998-01-22 23:50:25 +00:00
|
|
|
|
(defun Info-speedbar-buttons (buffer)
|
|
|
|
|
"Create a speedbar display to help navigation in an Info file.
|
|
|
|
|
BUFFER is the buffer speedbar is requesting buttons for."
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(if (save-excursion (goto-char (point-min))
|
1998-08-08 21:27:22 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(not (looking-at "Info Nodes:"))))
|
1998-07-10 16:46:59 +00:00
|
|
|
|
(erase-buffer))
|
2005-10-02 03:11:03 +00:00
|
|
|
|
(Info-speedbar-hierarchy-buttons nil 0))
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
2005-03-16 07:32:43 +00:00
|
|
|
|
(dolist (mess '("^First node in file$"
|
|
|
|
|
"^No `.*' in index$"
|
|
|
|
|
"^No cross-reference named"
|
|
|
|
|
"^No cross.references in this node$"
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"^No current Info node$"
|
2000-04-12 18:28:40 +00:00
|
|
|
|
"^No menu in this node$"
|
2005-03-16 07:32:43 +00:00
|
|
|
|
"^No more items in menu$"
|
|
|
|
|
"^No more nodes$"
|
|
|
|
|
"^No pointer \\(?:forward\\|backward\\) from this node$"
|
|
|
|
|
"^No previous `i' command$"
|
|
|
|
|
"^No previous items in menu$"
|
|
|
|
|
"^No previous nodes$"
|
|
|
|
|
"^No such item in menu$"
|
|
|
|
|
"^No such node or anchor"
|
|
|
|
|
"^Node has no"
|
|
|
|
|
"^Point neither on reference nor in menu item description$"
|
|
|
|
|
"^This is the \\(?:first\\|last\\) Info node you looked at$"
|
|
|
|
|
search-failed))
|
2000-04-12 18:28:40 +00:00
|
|
|
|
(add-to-list 'debug-ignored-errors mess))
|
|
|
|
|
|
2004-04-21 20:51:06 +00:00
|
|
|
|
;;;; Desktop support
|
|
|
|
|
|
|
|
|
|
(defun Info-desktop-buffer-misc-data (desktop-dirname)
|
|
|
|
|
"Auxiliary information to be saved in desktop file."
|
Virtual Info files and nodes.
(Info-virtual-files, Info-virtual-nodes): New variables.
(Info-current-node-virtual): New variable.
(Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
New functions.
(Info-file-supports-index-cookies): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-find-file): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
(Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
instead of ad-hoc processing of "dir" and (apropos history toc).
Reread a file when moving from a virtual node.
(add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
(Info-directory-toc-nodes, Info-directory-find-file)
(Info-directory-find-node): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
(Info-history): Move part of code to
`Info-history-find-node'.
(Info-history-toc-nodes, Info-history-find-file)
(Info-history-find-node): New functions.
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
(Info-toc): Move part of code to `Info-toc-find-node'.
(Info-toc-find-node): New function.
(Info-toc-insert): Renamed from `Info-insert-toc'. Don't insert
the current Info file name to references because now the node
"*TOC*" belongs to the same Info manual.
(Info-toc-build): Renamed from `Info-build-toc'.
(Info-toc-nodes): Rename input argument `file' to `filename'.
Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
instead of ad-hoc processing of ("dir" apropos history toc).
(Info-index-nodes): Use Info-virtual-file-p
to check for a virtual file instead of checking a fixed list
of node names.
(Info-index-node): Add check for `Info-current-node-virtual'.
Raise `save-match-data' higher up the tree to contain
`search-forward' too (bug fix).
(add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
(Info-virtual-index-nodes): New variable.
(Info-virtual-index-find-node, Info-virtual-index): New functions.
(add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
(Info-apropos-file, Info-apropos-nodes): New variables.
(Info-apropos-toc-nodes, Info-apropos-find-file)
(Info-apropos-find-node, Info-apropos-matches): New functions.
(info-apropos): Move part of code to `Info-apropos-find-node' and
`Info-apropos-matches'.
(Info-mode-map): Bind "I" to `Info-virtual-index'.
(Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
for a virtual file instead of checking a fixed list of node names.
2009-07-02 22:47:33 +00:00
|
|
|
|
(unless (Info-virtual-file-p Info-current-file)
|
(Info-find-file): Check for symbols `apropos', `history',
`toc' in the input filename, and return these symbols as is.
(Info-find-node-2): Set Info-current-file to symbols `apropos',
`history', `toc' instead of strings.
(Info-set-mode-line): For non-string Info-current-file use the
symbol's name inside **.
(Info-isearch-push-state): Add quote before Info-current-file and
Info-current-node.
(Info-isearch-pop-state): Use `equal' instead of `string='.
(Info-extract-pointer, Info-following-node-name): Use
`match-string-no-properties' instead of `match-string'.
(Info-up): Check `old-file' for `stringp'.
(Info-history): Use `equal' instead of `string-equal'.
Check `file' for `stringp'.
(Info-history): Use symbol `history' instead of string as first arg
of `Info-find-node'.
(Info-toc): Check `Info-current-file' for `stringp'. Use symbol
`toc' instead of string.
(Info-extract-menu-node-name): Use `buffer-substring-no-properties'
instead of `buffer-substring', and `match-string-no-properties'
instead of `match-string'.
(Info-index-nodes): Check for symbols `apropos', `history', `toc'
instead of strings.
(info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
Use symbol `apropos' instead of string.
(Info-copy-current-node-name): Check `Info-current-file' for
`stringp' and construct a command with `Info-find-node' from it.
(Info-fontify-node): Use `match-string-no-properties' instead of
`match-string' and check file names for `stringp'.
(Info-desktop-buffer-misc-data): Check for symbols `apropos',
`history', `toc' instead of strings.
2006-02-17 21:29:13 +00:00
|
|
|
|
(list Info-current-file Info-current-node)))
|
2004-04-21 20:51:06 +00:00
|
|
|
|
|
|
|
|
|
(defun Info-restore-desktop-buffer (desktop-buffer-file-name
|
|
|
|
|
desktop-buffer-name
|
|
|
|
|
desktop-buffer-misc)
|
2005-08-09 08:43:02 +00:00
|
|
|
|
"Restore an Info buffer specified in a desktop file."
|
2004-04-21 20:51:06 +00:00
|
|
|
|
(let ((first (nth 0 desktop-buffer-misc))
|
|
|
|
|
(second (nth 1 desktop-buffer-misc)))
|
|
|
|
|
(when (and first second)
|
2004-05-28 20:56:41 +00:00
|
|
|
|
(when desktop-buffer-name
|
|
|
|
|
(set-buffer (get-buffer-create desktop-buffer-name))
|
|
|
|
|
(Info-mode))
|
2004-04-22 19:49:45 +00:00
|
|
|
|
(Info-find-node first second)
|
2004-04-21 20:51:06 +00:00
|
|
|
|
(current-buffer))))
|
|
|
|
|
|
2005-08-14 23:45:46 +00:00
|
|
|
|
(add-to-list 'desktop-buffer-mode-handlers
|
|
|
|
|
'(Info-mode . Info-restore-desktop-buffer))
|
2005-08-10 19:39:51 +00:00
|
|
|
|
|
2008-01-30 18:53:38 +00:00
|
|
|
|
;;;; Bookmark support
|
2008-06-25 16:51:33 +00:00
|
|
|
|
(declare-function bookmark-make-record-default "bookmark" (&optional pos-only))
|
|
|
|
|
(declare-function bookmark-prop-get "bookmark" (bookmark prop))
|
|
|
|
|
(declare-function bookmark-default-handler "bookmark" (bmk))
|
|
|
|
|
(declare-function bookmark-get-bookmark-record "bookmark" (bmk))
|
2008-02-01 04:48:20 +00:00
|
|
|
|
|
2008-03-09 03:05:34 +00:00
|
|
|
|
(defun Info-bookmark-make-record ()
|
2009-10-04 23:31:52 +00:00
|
|
|
|
"This implements the `bookmark-make-record-function' type (which see)
|
|
|
|
|
for Info nodes."
|
2008-03-09 21:35:01 +00:00
|
|
|
|
`(,Info-current-node
|
2008-06-25 16:51:33 +00:00
|
|
|
|
,@(bookmark-make-record-default 'point-only)
|
|
|
|
|
(filename . ,Info-current-file)
|
2008-03-09 03:05:34 +00:00
|
|
|
|
(info-node . ,Info-current-node)
|
|
|
|
|
(handler . Info-bookmark-jump)))
|
2008-01-30 18:53:38 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun Info-bookmark-jump (bmk)
|
2009-10-04 23:31:52 +00:00
|
|
|
|
"This implements the `handler' function interface for the record
|
|
|
|
|
type returned by `Info-bookmark-make-record', which see."
|
2008-06-25 16:51:33 +00:00
|
|
|
|
(let* ((file (bookmark-prop-get bmk 'filename))
|
|
|
|
|
(info-node (bookmark-prop-get bmk 'info-node))
|
|
|
|
|
(buf (save-window-excursion ;FIXME: doesn't work with frames!
|
|
|
|
|
(Info-find-node file info-node) (current-buffer))))
|
|
|
|
|
;; Use bookmark-default-handler to move to the appropriate location
|
|
|
|
|
;; within the node.
|
|
|
|
|
(bookmark-default-handler
|
2010-02-10 20:04:51 +00:00
|
|
|
|
`("" (buffer . ,buf) . ,(bookmark-get-bookmark-record bmk)))))
|
2008-01-30 18:53:38 +00:00
|
|
|
|
|
1992-03-16 20:39:07 +00:00
|
|
|
|
(provide 'info)
|
|
|
|
|
|
2005-05-27 16:19:36 +00:00
|
|
|
|
;; arch-tag: f2480fe2-2139-40c1-a49b-6314991164ac
|
1992-05-30 23:12:08 +00:00
|
|
|
|
;;; info.el ends here
|