comparison lisp/textmodes/texinfo.el @ 14009:dbc49672f847

(texinfo-master-menu): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 23:50:14 +0000
parents 84acc3adcd63
children 83f275dcd93a
comparison
equal deleted inserted replaced
14008:f8a4126da2c8 14009:dbc49672f847
90 If called with a non-nil argument, this function first updates all the 90 If called with a non-nil argument, this function first updates all the
91 menus in the buffer (incorporating descriptions from pre-existing 91 menus in the buffer (incorporating descriptions from pre-existing
92 menus) before it constructs the master menu. 92 menus) before it constructs the master menu.
93 93
94 The function removes the detailed part of an already existing master 94 The function removes the detailed part of an already existing master
95 menu. This action depends on the pre-exisitng master menu using the 95 menu. This action depends on the pre-existing master menu using the
96 standard `texinfo-master-menu-header'. 96 standard `texinfo-master-menu-header'.
97 97
98 The master menu has the following format, which is adapted from the 98 The master menu has the following format, which is adapted from the
99 recommendation in the Texinfo Manual: 99 recommendation in the Texinfo Manual:
100 100
196 (modify-syntax-entry ?{ "(}" texinfo-mode-syntax-table) 196 (modify-syntax-entry ?{ "(}" texinfo-mode-syntax-table)
197 (modify-syntax-entry ?} "){" texinfo-mode-syntax-table) 197 (modify-syntax-entry ?} "){" texinfo-mode-syntax-table)
198 (modify-syntax-entry ?\' "w" texinfo-mode-syntax-table)) 198 (modify-syntax-entry ?\' "w" texinfo-mode-syntax-table))
199 199
200 ;; Written by Wolfgang Bangerth <zcg51122@rpool1.rus.uni-stuttgart.de> 200 ;; Written by Wolfgang Bangerth <zcg51122@rpool1.rus.uni-stuttgart.de>
201 ;; To overide this example, set either `imenu-generic-expression' 201 ;; To override this example, set either `imenu-generic-expression'
202 ;; or `imenu-create-index-function'. 202 ;; or `imenu-create-index-function'.
203 (defvar texinfo-imenu-generic-expression 203 (defvar texinfo-imenu-generic-expression
204 '((nil "^@node[ \t]+\\([^,\n]*\\)" 1) 204 '((nil "^@node[ \t]+\\([^,\n]*\\)" 1)
205 ("Chapters" "^@chapter[ \t]+\\(.*\\)$" 1)) 205 ("Chapters" "^@chapter[ \t]+\\(.*\\)$" 1))
206 206