* textmodes/dns-mode.el: Add "Keywords: comm". It's only an
[bpt/emacs.git] / lisp / textmodes / texnfo-upd.el
CommitLineData
be010748 1;;; texnfo-upd.el --- utilities for updating nodes and menus in Texinfo files
1337cb42 2
3731a850 3;; Copyright (C) 1989, 1990, 1991, 1992, 2001, 2002, 2003, 2004,
ae940284 4;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
7e1335cf 5
d1f9f441 6;; Author: Robert J. Chassell
64a1ba18 7;; Maintainer: bug-texinfo@gnu.org
d7b4d18f 8;; Keywords: maint, tex, docs
7e1335cf 9
7e1335cf
RC
10;; This file is part of GNU Emacs.
11
1fecc8fe 12;; GNU Emacs is free software: you can redistribute it and/or modify
7e1335cf 13;; it under the terms of the GNU General Public License as published by
1fecc8fe
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
7e1335cf
RC
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
1fecc8fe 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
7e1335cf 24
22a89ee8 25;;; Commentary:
7e1335cf 26
b578f267
EN
27;; Known bug: update commands fail to ignore @ignore.
28
29;; Summary: how to use the updating commands
30
31;; The node and menu updating functions automatically
32
33;; * insert missing `@node' lines,
34;; * insert the `Next', `Previous' and `Up' pointers of a node,
d1f9f441 35;; * insert or update the menu for a section,
b578f267
EN
36;; * create a master menu for a Texinfo source file.
37;;
78897d3d 38;; With a prefix argument, the `texinfo-update-node' and
b578f267
EN
39;; `texinfo-make-menu' functions do their jobs in the region.
40;;
41;; In brief, the functions for creating or updating nodes and menus, are:
d1f9f441
RS
42;;
43;; texinfo-update-node (&optional beginning end)
44;; texinfo-every-node-update ()
b578f267 45;; texinfo-sequential-node-update (&optional region-p)
d1f9f441
RS
46;;
47;; texinfo-make-menu (&optional beginning end)
48;; texinfo-all-menus-update ()
b578f267
EN
49;; texinfo-master-menu ()
50;;
51;; texinfo-insert-node-lines (&optional title-p)
d1f9f441 52;;
b578f267
EN
53;; texinfo-indent-menu-description (column &optional region-p)
54
55;; The `texinfo-column-for-description' variable specifies the column to
d1f9f441 56;; which menu descriptions are indented.
b578f267
EN
57
58;; Texinfo file structure
59;; ----------------------
60
61;; To use the updating commands, you must structure your Texinfo file
62;; hierarchically. Each `@node' line, with the exception of the top
63;; node, must be accompanied by some kind of section line, such as an
64;; `@chapter' or `@section' line. Each node-line/section-line
65;; combination must look like this:
66
67;; @node Lists and Tables, Cross References, Structuring, Top
68;; @comment node-name, next, previous, up
69;; @chapter Making Lists and Tables
70
71;; or like this (without the `@comment' line):
72
73;; @node Lists and Tables, Cross References, Structuring, Top
74;; @chapter Making Lists and Tables
75
76;; If the file has a `top' node, it must be called `top' or `Top' and
77;; be the first node in the file.
7e1335cf
RC
78
79\f
daa6abb8 80;;; The update node functions described in detail
7e1335cf 81
78897d3d 82;; The `texinfo-update-node' command with no prefix argument inserts
b578f267
EN
83;; the correct next, previous and up pointers for the node in which
84;; point is located (i.e., for the node preceding point).
7e1335cf 85
78897d3d 86;; With prefix argument, the `texinfo-update-node' function inserts the
b578f267
EN
87;; correct next, previous and up pointers for the nodes inside the
88;; region.
7e1335cf 89
b578f267
EN
90;; It does not matter whether the `@node' line has pre-existing
91;; `Next', `Previous', or `Up' pointers in it. They are removed.
7e1335cf 92
b578f267
EN
93;; The `texinfo-every-node-update' function runs `texinfo-update-node'
94;; on the whole buffer.
7e1335cf 95
b578f267
EN
96;; The `texinfo-sequential-node-update' function inserts the
97;; immediately following and preceding node into the `Next' or
98;; `Previous' pointers regardless of their hierarchical level. This is
99;; only useful for certain kinds of text, like a novel, which you go
100;; through sequentially.
daa6abb8
RS
101
102\f
103;;; The menu making functions described in detail
7e1335cf 104
b578f267
EN
105;; The `texinfo-make-menu' function without an argument creates or
106;; updates a menu for the section encompassing the node that follows
107;; point. With an argument, it makes or updates menus for the nodes
108;; within or part of the marked region.
109
110;; Whenever an existing menu is updated, the descriptions from
111;; that menu are incorporated into the new menu. This is done by copying
112;; descriptions from the existing menu to the entries in the new menu
113;; that have the same node names. If the node names are different, the
114;; descriptions are not copied to the new menu.
115
116;; Menu entries that refer to other Info files are removed since they
117;; are not a node within current buffer. This is a deficiency.
118
119;; The `texinfo-all-menus-update' function runs `texinfo-make-menu'
120;; on the whole buffer.
121
122;; The `texinfo-master-menu' function creates an extended menu located
123;; after the top node. (The file must have a top node.) The function
124;; first updates all the regular menus in the buffer (incorporating the
125;; descriptions from pre-existing menus), and then constructs a master
126;; menu that includes every entry from every other menu. (However, the
127;; function cannot update an already existing master menu; if one
128;; exists, it must be removed before calling the function.)
129
130;; The `texinfo-indent-menu-description' function indents every
131;; description in the menu following point, to the specified column.
132;; Non-nil argument (prefix, if interactive) means indent every
133;; description in every menu in the region. This function does not
134;; indent second and subsequent lines of a multi-line description.
135
136;; The `texinfo-insert-node-lines' function inserts `@node' before the
137;; `@chapter', `@section', and such like lines of a region in a Texinfo
138;; file where the `@node' lines are missing.
d1f9f441 139;;
b578f267
EN
140;; With a non-nil argument (prefix, if interactive), the function not
141;; only inserts `@node' lines but also inserts the chapter or section
142;; titles as the names of the corresponding nodes; and inserts titles
143;; as node names in pre-existing `@node' lines that lack names.
d1f9f441 144;;
b578f267
EN
145;; Since node names should be more concise than section or chapter
146;; titles, node names so inserted will need to be edited manually.
7e1335cf 147
d1f9f441 148\f
daa6abb8
RS
149;;; Code:
150
6f602bd0 151(require 'texinfo)
80216a47 152
80216a47 153
155b48df
RS
154(defvar texinfo-master-menu-header
155 " --- The Detailed Node Listing ---\n"
156 "String inserted before lower level entries in Texinfo master menu.
157It comes after the chapter-level menu entries.")
158
739da925
SM
159;; We used to look for just sub, but that found @subtitle.
160(defvar texinfo-section-types-regexp
161 "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
162 "Regexp matching chapter, section, other headings (but not the top node).")
163
164(defvar texinfo-section-level-regexp
165 (regexp-opt (texinfo-filter 3 texinfo-section-list))
166 "Regular expression matching just the Texinfo section level headings.")
167
168(defvar texinfo-subsection-level-regexp
169 (regexp-opt (texinfo-filter 4 texinfo-section-list))
170 "Regular expression matching just the Texinfo subsection level headings.")
171
172(defvar texinfo-subsubsection-level-regexp
173 (regexp-opt (texinfo-filter 5 texinfo-section-list))
174 "Regular expression matching just the Texinfo subsubsection level headings.")
175
176(defvar texinfo-update-menu-same-level-regexps
177 '((1 . "top[ \t]+")
178 (2 . (concat "\\(^@\\)\\(" texinfo-chapter-level-regexp "\\)\\>[ \t]*"))
179 (3 . (concat "\\(^@\\)\\(" texinfo-section-level-regexp "\\)\\>[ \t]*"))
180 (4 . (concat "\\(^@\\)\\(" texinfo-subsection-level-regexp "\\)\\>[ \t]+"))
181 (5 . (concat "\\(^@\\)\\(" texinfo-subsubsection-level-regexp "\\)\\>[ \t]+")))
182 "*Regexps for searching for same level sections in a Texinfo file.
183The keys are strings specifying the general hierarchical level in the
184document; the values are regular expressions.")
185
186(defvar texinfo-update-menu-higher-regexps
187 '((1 . "^@node [ \t]*DIR")
188 (2 . "^@node [ \t]*top[ \t]*\\(,\\|$\\)")
189 (3 .
190 (concat
191 "\\(^@\\("
192 texinfo-chapter-level-regexp
193 "\\)\\>[ \t]*\\)"))
194 (4 .
195 (concat
196 "\\(^@\\("
197 texinfo-section-level-regexp
198 "\\|"
199 texinfo-chapter-level-regexp
200 "\\)\\>[ \t]*\\)"))
201 (5 .
202 (concat
203 "\\(^@\\("
204 texinfo-subsection-level-regexp
205 "\\|"
206 texinfo-section-level-regexp
207 "\\|"
208 texinfo-chapter-level-regexp
209 "\\)\\>[ \t]*\\)")))
210 "*Regexps for searching for higher level sections in a Texinfo file.
211The keys are strings specifying the general hierarchical level in the
212document; the values are regular expressions.")
213
214(defvar texinfo-update-menu-lower-regexps
215 '((1 .
216 (concat
217 "\\(^@\\("
218 texinfo-chapter-level-regexp
219 "\\|"
220 texinfo-section-level-regexp
221 "\\|"
222 texinfo-subsection-level-regexp
223 "\\|"
224 texinfo-subsubsection-level-regexp
225 "\\)\\>[ \t]*\\)"))
226 (2 .
227 (concat
228 "\\(^@\\("
229 texinfo-section-level-regexp
230 "\\|"
231 texinfo-subsection-level-regexp
232 "\\|"
233 texinfo-subsubsection-level-regexp
234 "\\)\\>[ \t]*\\)"))
235 (3 .
236 (concat
237 "\\(^@\\("
238 texinfo-subsection-level-regexp
239 "\\|"
240 texinfo-subsubsection-level-regexp
241 "\\)\\>[ \t]+\\)"))
242 (4 .
243 (concat
244 "\\(^@\\("
245 texinfo-subsubsection-level-regexp
246 "\\)\\>[ \t]+\\)"))
247 ;; There's nothing below 5, use a bogus regexp that can't match.
248 (5 . "a\\(^\\)"))
249 "*Regexps for searching for lower level sections in a Texinfo file.
250The keys are strings specifying the general hierarchical level in the
251document; the values are regular expressions.")
252
253\f
78897d3d 254(defun texinfo-make-menu (&optional beginning end)
7e1335cf
RC
255 "Without any prefix argument, make or update a menu.
256Make the menu for the section enclosing the node found following point.
257
78897d3d 258A prefix argument means make or update menus
7e1335cf
RC
259for nodes within or part of the marked region.
260
261Whenever a menu exists, and is being updated, the descriptions that
262are associated with node names in the pre-existing menu are
70e2c6a4
RC
263incorporated into the new menu.
264
265Leaves trailing whitespace in a menu that lacks descriptions, so
266descriptions will format well. In general, a menu should contain
267descriptions, because node names and section titles are often too
268short to explain a node well."
d1f9f441 269
78897d3d
RS
270 (interactive
271 (if prefix-arg
272 (list (point) (mark))))
273 (if (null beginning)
7e1335cf 274 (let ((level (texinfo-hierarchic-level)))
91c6f26e
KH
275 (texinfo-make-one-menu level)
276 (message "Menu updated"))
7e1335cf 277 ;; else
daa6abb8 278 (message "Making or updating menus in %s... " (buffer-name))
78897d3d
RS
279 (save-excursion
280 (goto-char (min beginning end))
281 ;; find section type following point
282 (let ((level (texinfo-hierarchic-level))
91c6f26e
KH
283 (region-end-marker (make-marker)))
284 (set-marker region-end-marker (max beginning end))
285 (save-restriction
286 (widen)
d1f9f441 287
91c6f26e
KH
288 (while (texinfo-find-lower-level-node
289 level (marker-position region-end-marker))
290 (setq level (texinfo-hierarchic-level)) ; new, lower level
291 (texinfo-make-one-menu level))
d1f9f441 292
91c6f26e
KH
293 (while (and (< (point) (marker-position region-end-marker))
294 (texinfo-find-higher-level-node
295 level (marker-position region-end-marker)))
296 (setq level (texinfo-hierarchic-level))
af584472
RS
297 ;; Don't allow texinfo-find-higher-level-node
298 ;; to find the same node again.
299 (forward-line 1)
91c6f26e
KH
300 (while (texinfo-find-lower-level-node
301 level (marker-position region-end-marker))
302 (setq level (texinfo-hierarchic-level)) ; new, lower level
303 (texinfo-make-one-menu level))))))
78897d3d 304 (message "Making or updating menus in %s...done" (buffer-name))))
7e1335cf
RC
305
306(defun texinfo-make-one-menu (level)
307 "Make a menu of all the appropriate nodes in this section.
d1f9f441 308`Appropriate nodes' are those associated with sections that are
7e1335cf
RC
309at the level specified by LEVEL. Point is left at the end of menu."
310 (let*
311 ((case-fold-search t)
82ac4b77
JB
312 (beginning
313 (save-excursion
314 (goto-char (texinfo-update-menu-region-beginning level))
315 (end-of-line)
316 (point)))
7e1335cf
RC
317 (end (texinfo-update-menu-region-end level))
318 (first (texinfo-menu-first-node beginning end))
319 (node-name (progn
91c6f26e
KH
320 (goto-char beginning)
321 (beginning-of-line)
322 (texinfo-copy-node-name)))
7e1335cf 323 (new-menu-list (texinfo-make-menu-list beginning end level)))
b9f60161
SM
324 (when (texinfo-old-menu-p beginning first)
325 (texinfo-incorporate-descriptions new-menu-list)
326 (texinfo-incorporate-menu-entry-names new-menu-list)
327 (texinfo-delete-old-menu beginning first))
7e1335cf
RC
328 (texinfo-insert-menu new-menu-list node-name)))
329
330(defun texinfo-all-menus-update (&optional update-all-nodes-p)
331 "Update every regular menu in a Texinfo file.
daa6abb8 332Update pre-existing master menu, if there is one.
7e1335cf
RC
333
334If called with a non-nil argument, this function first updates all the
70e2c6a4
RC
335nodes in the buffer before updating the menus.
336
337Indents the first line of descriptions, and leaves trailing whitespace
338in a menu that lacks descriptions, so descriptions will format well.
339In general, a menu should contain descriptions, because node names and
340section titles are often too short to explain a node well."
7e1335cf 341 (interactive "P")
daa6abb8 342 (let ((case-fold-search t)
91c6f26e 343 master-menu-p)
7e1335cf 344 (save-excursion
daa6abb8
RS
345 (push-mark (point-max) t)
346 (goto-char (point-min))
347 (message "Checking for a master menu in %s ... "(buffer-name))
348 (save-excursion
b9f60161
SM
349 (when (search-forward texinfo-master-menu-header nil t)
350 ;; Check if @detailmenu kludge is used;
351 ;; if so, leave point before @detailmenu.
352 (search-backward "\n@detailmenu"
353 (save-excursion (forward-line -3) (point))
354 t)
355 ;; Remove detailed master menu listing
356 (setq master-menu-p t)
357 (goto-char (match-beginning 0))
358 (let ((end-of-detailed-menu-descriptions
359 (save-excursion ; beginning of end menu line
360 (goto-char (texinfo-menu-end))
361 (beginning-of-line) (forward-char -1)
362 (point))))
363 (delete-region (point) end-of-detailed-menu-descriptions))))
364
365 (when update-all-nodes-p
366 (message "Updating all nodes in %s ... " (buffer-name))
367 (texinfo-update-node (point-min) (point-max)))
d1f9f441
RS
368
369 (message "Updating all menus in %s ... " (buffer-name))
78897d3d 370 (texinfo-make-menu (point-max) (point-min))
d1f9f441 371
b9f60161
SM
372 (when master-menu-p
373 (message "Updating the master menu in %s... " (buffer-name))
374 (texinfo-master-menu nil)))
d1f9f441 375
7e1335cf
RC
376 (message "Done...updated all the menus. You may save the buffer.")))
377
378(defun texinfo-find-lower-level-node (level region-end)
379 "Search forward from point for node at any level lower than LEVEL.
d1f9f441 380Search is limited to the end of the marked region, REGION-END,
7e1335cf
RC
381and to the end of the menu region for the level.
382
383Return t if the node is found, else nil. Leave point at the beginning
384of the node if one is found; else do not move point."
daa6abb8
RS
385 (let ((case-fold-search t))
386 (if (and (< (point) region-end)
91c6f26e
KH
387 (re-search-forward
388 (concat
389 "\\(^@node\\).*\n" ; match node line
390 "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
391 "\\|" ; or
21324fae
GM
392 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
393 "\\|" ; or
394 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
395 "\\)?" ; end of expression
91c6f26e
KH
396 (eval (cdr (assoc level texinfo-update-menu-lower-regexps))))
397 ;; the next higher level node marks the end of this
398 ;; section, and no lower level node will be found beyond
399 ;; this position even if region-end is farther off
400 (texinfo-update-menu-region-end level)
401 t))
402 (goto-char (match-beginning 1)))))
7e1335cf
RC
403
404(defun texinfo-find-higher-level-node (level region-end)
405 "Search forward from point for node at any higher level than argument LEVEL.
406Search is limited to the end of the marked region, REGION-END.
407
408Return t if the node is found, else nil. Leave point at the beginning
af584472
RS
409of the node if one is found; else do not move point.
410
411A `@node' line starting at point does count as a match;
412if the match is found there, the value is t and point does not move."
413
daa6abb8
RS
414 (let ((case-fold-search t))
415 (cond
6f602bd0 416 ((< level 3)
daa6abb8 417 (if (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" region-end t)
91c6f26e 418 (progn (beginning-of-line) t)))
daa6abb8 419 (t
b9f60161
SM
420 (when (re-search-forward
421 (concat
422 "\\(^@node\\).*\n" ; match node line
423 "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
424 "\\|" ; or
425 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
426 "\\|" ; or
427 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
428 "\\)?" ; end of expression
429 (eval (cdr (assoc level texinfo-update-menu-higher-regexps))))
430 region-end t)
431 (beginning-of-line) t)))))
7e1335cf
RC
432
433\f
daa6abb8 434;;; Making the list of new menu entries
7e1335cf
RC
435
436(defun texinfo-make-menu-list (beginning end level)
437 "Make a list of node names and their descriptions.
438Point is left at the end of the menu region, but the menu is not inserted.
439
d1f9f441 440First argument is position from which to start making menu list;
7e1335cf
RC
441second argument is end of region in which to try to locate entries;
442third argument is the level of the nodes that are the entries.
443
444Node names and descriptions are dotted pairs of strings. Each pair is
445an element of the list. If the description does not exist, the
446element consists only of the node name."
447 (goto-char beginning)
448 (let (new-menu-list)
449 (while (texinfo-menu-locate-entry-p level end)
b9f60161
SM
450 (push (cons
451 (texinfo-copy-node-name)
452 (prog1 "" (forward-line 1)))
453 ;; Use following to insert section titles automatically.
454 ;; (texinfo-copy-section-title))
455 new-menu-list))
456 (nreverse new-menu-list)))
7e1335cf
RC
457
458(defun texinfo-menu-locate-entry-p (level search-end)
459 "Find a node that will be part of menu for this section.
460First argument is a string such as \"section\" specifying the general
daa6abb8 461hierarchical level of the menu; second argument is a position
7e1335cf
RC
462specifying the end of the search.
463
464The function returns t if the node is found, else nil. It searches
465forward from point, and leaves point at the beginning of the node.
466
467The function finds entries of the same type. Thus `subsections' and
468`unnumberedsubsecs' will appear in the same menu."
daa6abb8
RS
469 (let ((case-fold-search t))
470 (if (re-search-forward
91c6f26e
KH
471 (concat
472 "\\(^@node\\).*\n" ; match node line
473 "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
474 "\\|" ; or
21324fae
GM
475 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
476 "\\|" ; or
477 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
478 "\\)?" ; end of expression
91c6f26e
KH
479 (eval
480 (cdr (assoc level texinfo-update-menu-same-level-regexps))))
481 search-end
482 t)
483 (goto-char (match-beginning 1)))))
7e1335cf
RC
484
485(defun texinfo-copy-node-name ()
486 "Return the node name as a string.
487
488Start with point at the beginning of the node line; copy the text
489after the node command up to the first comma on the line, if any, and
490return the text as a string. Leaves point at the beginning of the
491line. If there is no node name, returns an empty string."
d1f9f441 492
7e1335cf
RC
493 (save-excursion
494 (buffer-substring
495 (progn (forward-word 1) ; skip over node command
91c6f26e
KH
496 (skip-chars-forward " \t") ; and over spaces
497 (point))
b9f60161 498 (if (search-forward "," (line-end-position) t) ; bound search
91c6f26e 499 (1- (point))
7e1335cf
RC
500 (end-of-line) (point)))))
501
502(defun texinfo-copy-section-title ()
503 "Return the title of the section as a string.
504The title is used as a description line in the menu when one does not
505already exist.
506
507Move point to the beginning of the appropriate section line by going
508to the start of the text matched by last regexp searched for, which
509must have been done by `texinfo-menu-locate-entry-p'."
510
511 ;; could use the same re-search as in `texinfo-menu-locate-entry-p'
512 ;; instead of using `match-beginning'; such a variation would be
513 ;; more general, but would waste information already collected
514
d1f9f441 515 (goto-char (match-beginning 7)) ; match section name
7e1335cf
RC
516
517 (buffer-substring
518 (progn (forward-word 1) ; skip over section type
91c6f26e
KH
519 (skip-chars-forward " \t") ; and over spaces
520 (point))
7e1335cf
RC
521 (progn (end-of-line) (point))))
522
523\f
daa6abb8 524;;; Handling the old menu
7e1335cf
RC
525
526(defun texinfo-old-menu-p (beginning first)
527 "Move point to the beginning of the menu for this section, if any.
528Otherwise move point to the end of the first node of this section.
529Return t if a menu is found, nil otherwise.
530
531First argument is the position of the beginning of the section in which
532the menu will be located; second argument is the position of the first
533node within the section.
534
535If no menu is found, the function inserts two newlines just before the
536end of the section, and leaves point there where a menu ought to be."
537 (goto-char beginning)
b9f60161
SM
538 (if (re-search-forward "^@menu" first 'goto-end)
539 t
540 (insert "\n\n") (forward-line -2) nil))
7e1335cf
RC
541
542(defun texinfo-incorporate-descriptions (new-menu-list)
543 "Copy the old menu line descriptions that exist to the new menu.
544
545Point must be at beginning of old menu.
546
daa6abb8
RS
547If the node-name of the new menu is found in the old menu, insert the
548old description into the new entry.
7e1335cf
RC
549
550For this function, the new menu is a list made up of lists of dotted
551pairs in which the first element of the pair is the node name and the
daa6abb8 552second element the description. The new menu is changed destructively.
06cc857d 553The old menu is the menu as it appears in the Texinfo file."
d1f9f441 554
b9f60161
SM
555 (let ((end-of-menu (texinfo-menu-end)))
556 (dolist (new-menu new-menu-list new-menu-list)
557 (save-excursion ; keep point at beginning of menu
558 (when (re-search-forward
559 ;; Existing nodes can have the form
560 ;; * NODE NAME:: DESCRIPTION
561 ;; or
562 ;; * MENU ITEM: NODE NAME. DESCRIPTION.
563 ;;
564 ;; Recognize both when looking for the description.
565 (concat "\\* \\(" ; so only menu entries are found
566 (regexp-quote (car new-menu)) "::"
567 "\\|"
568 ".*: " (regexp-quote (car new-menu)) "[.,\t\n]"
569 "\\)"
570 ) ; so only complete entries are found
571 end-of-menu
572 t)
573 (setcdr new-menu (texinfo-menu-copy-old-description end-of-menu)))))))
7e1335cf 574
daa6abb8
RS
575(defun texinfo-incorporate-menu-entry-names (new-menu-list)
576 "Copy any old menu entry names to the new menu.
577
578Point must be at beginning of old menu.
579
580If the node-name of the new menu entry cannot be found in the old
581menu, do nothing.
582
583For this function, the new menu is a list made up of lists of dotted
584pairs in which the first element of the pair is the node name and the
585second element is the description (or nil).
586
587If we find an existing menu entry name, we change the first element of
588the pair to be another dotted pair in which the car is the menu entry
589name and the cdr is the node name.
590
591NEW-MENU-LIST is changed destructively. The old menu is the menu as it
592appears in the texinfo file."
d1f9f441 593
b9f60161
SM
594 (let ((end-of-menu (texinfo-menu-end)))
595 (dolist (new-menu new-menu-list new-menu-list)
d1f9f441 596 (save-excursion ; keep point at beginning of menu
91c6f26e
KH
597 (if (re-search-forward
598 ;; Existing nodes can have the form
599 ;; * NODE NAME:: DESCRIPTION
600 ;; or
601 ;; * MENU ITEM: NODE NAME. DESCRIPTION.
602 ;;
603 ;; We're interested in the second case.
604 (concat "\\* " ; so only menu entries are found
b9f60161 605 "\\(.*\\): " (regexp-quote (car new-menu))
ca722adb 606 "[.,\t\n]")
91c6f26e
KH
607 end-of-menu
608 t)
609 (setcar
b9f60161 610 new-menu ; replace the node name
91c6f26e 611 (cons (buffer-substring (match-beginning 1) (match-end 1))
b9f60161 612 (car new-menu))))))))
daa6abb8 613
7e1335cf
RC
614(defun texinfo-menu-copy-old-description (end-of-menu)
615 "Return description field of old menu line as string.
616Point must be located just after the node name. Point left before description.
617Single argument, END-OF-MENU, is position limiting search."
618 (skip-chars-forward "[:.,\t\n ]+")
619 ;; don't copy a carriage return at line beginning with asterisk!
f6472377 620 ;; don't copy @detailmenu or @end menu or @ignore as descriptions!
7e1335cf 621 ;; do copy a description that begins with an `@'!
daa6abb8 622 ;; !! Known bug: does not copy descriptions starting with ^|\{?* etc.
d1f9f441 623 (if (and (looking-at "\\(\\w+\\|@\\)")
f6472377
EZ
624 (not (looking-at
625 "\\(^\\* \\|^@detailmenu\\|^@end menu\\|^@ignore\\)")))
7e1335cf
RC
626 (buffer-substring
627 (point)
628 (save-excursion
f6472377 629 (re-search-forward "\\(^\\* \\|^@ignore\\|^@end menu\\)" end-of-menu t)
91c6f26e
KH
630 (forward-line -1)
631 (end-of-line) ; go to end of last description line
632 (point)))
7e1335cf
RC
633 ""))
634
635(defun texinfo-menu-end ()
06cc857d 636 "Return position of end of menu, but don't move point.
7e1335cf
RC
637Signal an error if not end of menu."
638 (save-excursion
639 (if (re-search-forward "^@end menu" nil t)
91c6f26e 640 (point)
5b02e712 641 (error "Menu does not have an end"))))
7e1335cf
RC
642
643(defun texinfo-delete-old-menu (beginning first)
644 "Delete the old menu. Point must be in or after menu.
645First argument is position of the beginning of the section in which
646the menu will be located; second argument is the position of the first
647node within the section."
648 ;; No third arg to search, so error if search fails.
649 (re-search-backward "^@menu" beginning)
650 (delete-region (point)
91c6f26e
KH
651 (save-excursion
652 (re-search-forward "^@end menu" first)
653 (point))))
7e1335cf
RC
654
655\f
daa6abb8 656;;; Inserting new menu
7e1335cf
RC
657
658;; try 32, but perhaps 24 is better
659(defvar texinfo-column-for-description 32
660 "*Column at which descriptions start in a Texinfo menu.")
661
662(defun texinfo-insert-menu (menu-list node-name)
663 "Insert formatted menu at point.
70e2c6a4
RC
664Indents the first line of descriptions, if any, to the value of
665texinfo-column-for-description. Indenting leaves trailing whitespace
666in a menu that lacks descriptions, so descriptions will format well.
667In general, a menu should contain descriptions, because node names and
668section titles are often too short to explain a node well.
7e1335cf
RC
669
670MENU-LIST has form:
671
d1f9f441 672 \(\(\"node-name1\" . \"description\"\)
daa6abb8 673 \(\"node-name2\" . \"description\"\) ... \)
7e1335cf 674
daa6abb8
RS
675However, the description field might be nil.
676
677Also, the node-name field might itself be a dotted pair (call it P) of
678strings instead of just a string. In that case, the car of P
679is the menu entry name, and the cdr of P is the node name."
d1f9f441 680
7e1335cf 681 (insert "@menu\n")
b9f60161 682 (dolist (menu menu-list)
daa6abb8
RS
683 ;; Every menu entry starts with a star and a space.
684 (insert "* ")
d1f9f441 685
daa6abb8 686 ;; Insert the node name (and menu entry name, if present).
b9f60161 687 (let ((node-part (car menu)))
daa6abb8 688 (if (stringp node-part)
91c6f26e
KH
689 ;; "Double colon" entry line; menu entry and node name are the same,
690 (insert (format "%s::" node-part))
691 ;; "Single colon" entry line; menu entry and node name are different.
692 (insert (format "%s: %s." (car node-part) (cdr node-part)))))
d1f9f441 693
daa6abb8 694 ;; Insert the description, if present.
b9f60161
SM
695 (when (cdr menu)
696 ;; Move to right place.
697 (indent-to texinfo-column-for-description 2)
698 ;; Insert description.
699 (insert (format "%s" (cdr menu))))
daa6abb8 700
b9f60161 701 (insert "\n")) ; end this menu entry
7e1335cf 702 (insert "@end menu")
a056c2c7
RC
703 (let ((level (texinfo-hierarchic-level)))
704 (message
705 "Updated level \"%s\" menu following node: %s ... " level node-name)))
7e1335cf
RC
706
707\f
daa6abb8
RS
708;;; Starting menu descriptions by inserting titles
709
710(defun texinfo-start-menu-description ()
d1f9f441 711 "In this menu entry, insert the node's section title as a description.
daa6abb8
RS
712Position point at beginning of description ready for editing.
713Do not insert a title if the line contains an existing description.
714
715You will need to edit the inserted text since a useful description
716complements the node name rather than repeats it as a title does."
d1f9f441 717
daa6abb8
RS
718 (interactive)
719 (let (beginning end node-name title)
720 (save-excursion
b9f60161 721 (beginning-of-line)
daa6abb8 722 (if (search-forward "* " (save-excursion (end-of-line) (point)) t)
91c6f26e
KH
723 (progn (skip-chars-forward " \t")
724 (setq beginning (point)))
5b02e712 725 (error "This is not a line in a menu"))
d1f9f441 726
daa6abb8 727 (cond
b9f60161 728 ;; "Double colon" entry line; menu entry and node name are the same,
daa6abb8 729 ((search-forward "::" (save-excursion (end-of-line) (point)) t)
91c6f26e 730 (if (looking-at "[ \t]*[^ \t\n]+")
5b02e712 731 (error "Descriptive text already exists"))
91c6f26e
KH
732 (skip-chars-backward ": \t")
733 (setq node-name (buffer-substring beginning (point))))
d1f9f441 734
daa6abb8
RS
735 ;; "Single colon" entry line; menu entry and node name are different.
736 ((search-forward ":" (save-excursion (end-of-line) (point)) t)
91c6f26e
KH
737 (skip-chars-forward " \t")
738 (setq beginning (point))
739 ;; Menu entry line ends in a period, comma, or tab.
740 (if (re-search-forward "[.,\t]"
741 (save-excursion (forward-line 1) (point)) t)
742 (progn
743 (if (looking-at "[ \t]*[^ \t\n]+")
5b02e712 744 (error "Descriptive text already exists"))
91c6f26e
KH
745 (skip-chars-backward "., \t")
746 (setq node-name (buffer-substring beginning (point))))
747 ;; Menu entry line ends in a return.
748 (re-search-forward ".*\n"
b9f60161 749 (save-excursion (forward-line 1) (point)) t)
91c6f26e
KH
750 (skip-chars-backward " \t\n")
751 (setq node-name (buffer-substring beginning (point)))
752 (if (= 0 (length node-name))
5b02e712 753 (error "No node name on this line")
91c6f26e 754 (insert "."))))
5b02e712 755 (t (error "No node name on this line")))
daa6abb8
RS
756 ;; Search for node that matches node name, and copy the section title.
757 (if (re-search-forward
91c6f26e
KH
758 (concat
759 "^@node[ \t]+"
760 (regexp-quote node-name)
b9f60161 761 ".*\n" ; match node line
91c6f26e
KH
762 "\\("
763 "\\(\\(^@c \\|^@comment\\).*\n\\)" ; match comment line, if any
764 "\\|" ; or
765 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
21324fae
GM
766 "\\|" ; or
767 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
768 "\\)?" ; end of expression
857b864a 769 )
91c6f26e 770 nil t)
b9f60161
SM
771 (setq title
772 (buffer-substring
773 ;; skip over section type
774 (progn (forward-word 1)
775 ;; and over spaces
776 (skip-chars-forward " \t")
777 (point))
778 (progn (end-of-line)
779 (skip-chars-backward " \t")
780 (point))))
5b02e712 781 (error "Cannot find node to match node name in menu entry")))
daa6abb8
RS
782 ;; Return point to the menu and insert the title.
783 (end-of-line)
784 (delete-region
785 (point)
786 (save-excursion (skip-chars-backward " \t") (point)))
787 (indent-to texinfo-column-for-description 2)
788 (save-excursion (insert title))))
789
790\f
791;;; Handling description indentation
7e1335cf 792
06cc857d
RS
793;; Since the make-menu functions indent descriptions, these functions
794;; are useful primarily for indenting a single menu specially.
7e1335cf
RC
795
796(defun texinfo-indent-menu-description (column &optional region-p)
d1f9f441 797 "Indent every description in menu following point to COLUMN.
7e1335cf
RC
798Non-nil argument (prefix, if interactive) means indent every
799description in every menu in the region. Does not indent second and
800subsequent lines of a multi-line description."
d1f9f441 801
7e1335cf
RC
802 (interactive
803 "nIndent menu descriptions to (column number): \nP")
804 (save-excursion
805 (save-restriction
806 (widen)
807 (if (not region-p)
91c6f26e
KH
808 (progn
809 (re-search-forward "^@menu")
810 (texinfo-menu-indent-description column)
811 (message
812 "Indented descriptions in menu. You may save the buffer."))
813 ;;else
814 (message "Indenting every menu description in region... ")
815 (goto-char (region-beginning))
816 (while (and (< (point) (region-end))
817 (texinfo-locate-menu-p))
818 (forward-line 1)
819 (texinfo-menu-indent-description column))
820 (message "Indenting done. You may save the buffer.")))))
7e1335cf
RC
821
822(defun texinfo-menu-indent-description (to-column-number)
823 "Indent the Texinfo file menu description to TO-COLUMN-NUMBER.
824Start with point just after the word `menu' in the `@menu' line and
825leave point on the line before the `@end menu' line. Does not indent
826second and subsequent lines of a multi-line description."
827 (let* ((beginning-of-next-line (point)))
828 (while (< beginning-of-next-line
b9f60161 829 (save-excursion ; beginning of end menu line
91c6f26e
KH
830 (goto-char (texinfo-menu-end))
831 (beginning-of-line)
832 (point)))
daa6abb8 833
b9f60161
SM
834 (when (re-search-forward "\\* \\(.*::\\|.*: [^.,\t\n]+[.,\t]\\)"
835 (texinfo-menu-end)
836 t)
837 (let ((beginning-white-space (point)))
838 (skip-chars-forward " \t") ; skip over spaces
839 (if (looking-at "\\(@\\|\\w\\)+") ; if there is text
840 (progn
841 ;; remove pre-existing indentation
842 (delete-region beginning-white-space (point))
843 (indent-to-column to-column-number)))))
7e1335cf 844 ;; position point at beginning of next line
d1f9f441 845 (forward-line 1)
7e1335cf
RC
846 (setq beginning-of-next-line (point)))))
847
848\f
daa6abb8 849;;; Making the master menu
7e1335cf
RC
850
851(defun texinfo-master-menu (update-all-nodes-menus-p)
852 "Make a master menu for a whole Texinfo file.
853Non-nil argument (prefix, if interactive) means first update all
854existing nodes and menus. Remove pre-existing master menu, if there is one.
855
856This function creates a master menu that follows the top node. The
857master menu includes every entry from all the other menus. It
858replaces any existing ordinary menu that follows the top node.
859
860If called with a non-nil argument, this function first updates all the
861menus in the buffer (incorporating descriptions from pre-existing
862menus) before it constructs the master menu.
863
864The function removes the detailed part of an already existing master
9687a051 865menu. This action depends on the pre-existing master menu using the
7e1335cf
RC
866standard `texinfo-master-menu-header'.
867
868The master menu has the following format, which is adapted from the
869recommendation in the Texinfo Manual:
870
871 * The first part contains the major nodes in the Texinfo file: the
872 nodes for the chapters, chapter-like sections, and the major
873 appendices. This includes the indices, so long as they are in
874 chapter-like sections, such as unnumbered sections.
875
876 * The second and subsequent parts contain a listing of the other,
877 lower level menus, in order. This way, an inquirer can go
878 directly to a particular node if he or she is searching for
879 specific information.
880
881Each of the menus in the detailed node listing is introduced by the
70e2c6a4
RC
882title of the section containing the menu.
883
884Indents the first line of descriptions, and leaves trailing whitespace
885in a menu that lacks descriptions, so descriptions will format well.
886In general, a menu should contain descriptions, because node names and
887section titles are often too short to explain a node well."
d1f9f441 888
7e1335cf 889 (interactive "P")
daa6abb8
RS
890 (let ((case-fold-search t))
891 (widen)
892 (goto-char (point-min))
d1f9f441 893
daa6abb8
RS
894 ;; Move point to location after `top'.
895 (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
5b02e712 896 (error "This buffer needs a Top node"))
d1f9f441
RS
897
898 (let ((first-chapter
91c6f26e
KH
899 (save-excursion
900 (or (re-search-forward "^@node" nil t)
5b02e712 901 (error "Too few nodes for a master menu"))
91c6f26e 902 (point))))
155b48df 903 (if (search-forward texinfo-master-menu-header first-chapter t)
91c6f26e
KH
904 (progn
905 ;; Check if @detailmenu kludge is used;
906 ;; if so, leave point before @detailmenu.
907 (search-backward "\n@detailmenu"
06cc857d
RS
908 (save-excursion (forward-line -3) (point))
909 t)
910 ;; Remove detailed master menu listing
91c6f26e
KH
911 (goto-char (match-beginning 0))
912 (let ((end-of-detailed-menu-descriptions
913 (save-excursion ; beginning of end menu line
914 (goto-char (texinfo-menu-end))
915 (beginning-of-line) (forward-char -1)
916 (point))))
917 (delete-region (point) end-of-detailed-menu-descriptions)))))
d1f9f441 918
daa6abb8 919 (if update-all-nodes-menus-p
91c6f26e
KH
920 (progn
921 (message "Making a master menu in %s ...first updating all nodes... "
922 (buffer-name))
91c6f26e 923 (texinfo-update-node (point-min) (point-max))
d1f9f441 924
91c6f26e 925 (message "Updating all menus in %s ... " (buffer-name))
91c6f26e 926 (texinfo-make-menu (point-min) (point-max))))
d1f9f441 927
daa6abb8 928 (message "Now making the master menu in %s... " (buffer-name))
7e1335cf 929 (goto-char (point-min))
daa6abb8
RS
930 (texinfo-insert-master-menu-list
931 (texinfo-master-menu-list))
d1f9f441 932
daa6abb8
RS
933 ;; Remove extra newlines that texinfo-insert-master-menu-list
934 ;; may have inserted.
d1f9f441 935
daa6abb8
RS
936 (save-excursion
937 (goto-char (point-min))
d1f9f441 938
155b48df 939 (if (search-forward texinfo-master-menu-header nil t)
91c6f26e
KH
940 (progn
941 (goto-char (match-beginning 0))
942 ;; Check if @detailmenu kludge is used;
943 ;; if so, leave point before @detailmenu.
944 (search-backward "\n@detailmenu"
06cc857d
RS
945 (save-excursion (forward-line -3) (point))
946 t)
91c6f26e
KH
947 (insert "\n")
948 (delete-blank-lines)
949 (goto-char (point-min))))
daa6abb8
RS
950
951 (re-search-forward "^@menu")
952 (forward-line -1)
953 (delete-blank-lines)
d1f9f441 954
daa6abb8
RS
955 (re-search-forward "^@end menu")
956 (forward-line 1)
957 (delete-blank-lines))
d1f9f441 958
daa6abb8
RS
959 (message
960 "Done...completed making master menu. You may save the buffer.")))
7e1335cf
RC
961
962(defun texinfo-master-menu-list ()
963 "Return a list of menu entries and header lines for the master menu.
964
965Start with the menu for chapters and indices and then find each
966following menu and the title of the node preceding that menu.
967
968The master menu list has this form:
969
970 \(\(\(... \"entry-1-2\" \"entry-1\"\) \"title-1\"\)
971 \(\(... \"entry-2-2\" \"entry-2-1\"\) \"title-2\"\)
972 ...\)
973
974However, there does not need to be a title field."
975
976 (let (master-menu-list)
977 (while (texinfo-locate-menu-p)
b9f60161
SM
978 (push (list (texinfo-copy-menu) (texinfo-copy-menu-title))
979 master-menu-list))
980 (nreverse master-menu-list)))
7e1335cf
RC
981
982(defun texinfo-insert-master-menu-list (master-menu-list)
983 "Format and insert the master menu in the current buffer."
984 (goto-char (point-min))
daa6abb8
RS
985 ;; Insert a master menu only after `Top' node and before next node
986 ;; \(or include file if there is no next node\).
b9f60161
SM
987 (unless (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
988 (error "This buffer needs a Top node"))
daa6abb8 989 (let ((first-chapter
91c6f26e 990 (save-excursion (re-search-forward "^@node\\|^@include") (point))))
b9f60161
SM
991 (unless (re-search-forward "^@menu" first-chapter t)
992 (error "Buffer lacks ordinary `Top' menu in which to insert master")))
7e1335cf 993 (beginning-of-line)
daa6abb8 994 (delete-region ; buffer must have ordinary top menu
d1f9f441 995 (point)
daa6abb8 996 (save-excursion (re-search-forward "^@end menu") (point)))
d1f9f441
RS
997
998 (save-excursion
999 ;; `master-menu-inserted-p' is a kludge to tell
06cc857d
RS
1000 ;; whether to insert @end detailmenu (see bleow)
1001 (let (master-menu-inserted-p)
1002 ;; Handle top of menu
1003 (insert "\n@menu\n")
b9f60161
SM
1004 ;; Insert chapter menu entries. Tell user what is going on.
1005 (message "Inserting chapter menu entry: %s ... "
1006 (car (car master-menu-list)))
1007 (dolist (entry (reverse (car (car master-menu-list))))
1008 (insert "* " entry "\n"))
d1f9f441 1009
06cc857d 1010 (setq master-menu-list (cdr master-menu-list))
d1f9f441 1011
06cc857d
RS
1012 ;; Only insert detailed master menu if there is one....
1013 (if (car (car master-menu-list))
91c6f26e
KH
1014 (progn (setq master-menu-inserted-p t)
1015 (insert (concat "\n@detailmenu\n"
eae582fe 1016 texinfo-master-menu-header))))
06cc857d
RS
1017
1018 ;; @detailmenu added 5 Sept 1996 to `texinfo-master-menu-header'
1019 ;; at Karl Berry's request to avert a bug in `makeinfo';
1020 ;; all agree this is a bad kludge and should eventually be removed.
1021 ;; @detailmenu ... @end detailmenu is a noop in `texinfmt.el'.
1022 ;; See @end detailmenu below;
1023 ;; also see `texinfo-all-menus-update' above, `texinfo-master-menu',
1024 ;; `texinfo-multiple-files-update'.
1025
1026 ;; Now, insert all the other menus
d1f9f441 1027
06cc857d
RS
1028 ;; The menu master-menu-list has a form like this:
1029 ;; ((("beta" "alpha") "title-A")
1030 ;; (("delta" "gamma") "title-B"))
d1f9f441 1031
b9f60161 1032 (dolist (menu master-menu-list)
d1f9f441 1033
b9f60161 1034 (message "Inserting menu for %s .... " (cadr menu))
91c6f26e 1035 ;; insert title of menu section
b9f60161 1036 (insert "\n" (cadr menu) "\n\n")
d1f9f441 1037
91c6f26e 1038 ;; insert each menu entry
b9f60161
SM
1039 (dolist (entry (reverse (car menu)))
1040 (insert "* " entry "\n")))
d1f9f441 1041
06cc857d
RS
1042 ;; Finish menu
1043
1044 ;; @detailmenu (see note above)
1045 ;; Only insert @end detailmenu if a master menu was inserted.
1046 (if master-menu-inserted-p
91c6f26e 1047 (insert "\n@end detailmenu"))
06cc857d 1048 (insert "\n@end menu\n\n"))))
7e1335cf 1049
7e1335cf
RC
1050(defun texinfo-locate-menu-p ()
1051 "Find the next menu in the texinfo file.
1052If found, leave point after word `menu' on the `@menu' line, and return t.
1053If a menu is not found, do not move point and return nil."
1054 (re-search-forward "\\(^@menu\\)" nil t))
1055
b9f60161 1056(defun texinfo-copy-menu-title ()
7e1335cf
RC
1057 "Return the title of the section preceding the menu as a string.
1058If such a title cannot be found, return an empty string. Do not move
1059point."
daa6abb8
RS
1060 (let ((case-fold-search t))
1061 (save-excursion
1062 (if (re-search-backward
91c6f26e
KH
1063 (concat
1064 "\\(^@top"
1065 "\\|" ; or
1066 texinfo-section-types-regexp ; all other section types
1067 "\\)")
1068 nil
1069 t)
1070 (progn
1071 (beginning-of-line)
1072 (forward-word 1) ; skip over section type
1073 (skip-chars-forward " \t") ; and over spaces
1074 (buffer-substring
1075 (point)
1076 (progn (end-of-line) (point))))
1077 ""))))
7e1335cf
RC
1078
1079(defun texinfo-copy-menu ()
1080 "Return the entries of an existing menu as a list.
1081Start with point just after the word `menu' in the `@menu' line
1082and leave point on the line before the `@end menu' line."
1083 (let* (this-menu-list
91c6f26e
KH
1084 (end-of-menu (texinfo-menu-end)) ; position of end of `@end menu'
1085 (last-entry (save-excursion ; position of beginning of
1086 ; last `* ' entry
1087 (goto-char end-of-menu)
1088 ;; handle multi-line description
1089 (if (not (re-search-backward "^\\* " nil t))
5b02e712 1090 (error "No entries in menu"))
91c6f26e 1091 (point))))
7e1335cf 1092 (while (< (point) last-entry)
c0fbcada 1093 (if (re-search-forward "^\\* " end-of-menu t)
b9f60161
SM
1094 (push (buffer-substring
1095 (point)
1096 ;; copy multi-line descriptions
1097 (save-excursion
1098 (re-search-forward "\\(^\\* \\|^@e\\)" nil t)
1099 (- (point) 3)))
1100 this-menu-list)))
7e1335cf
RC
1101 this-menu-list))
1102
1103\f
daa6abb8 1104;;; Determining the hierarchical level in the texinfo file
7e1335cf 1105
d1f9f441 1106(defun texinfo-specific-section-type ()
7e1335cf
RC
1107 "Return the specific type of next section, as a string.
1108For example, \"unnumberedsubsec\". Return \"top\" for top node.
1109
1110Searches forward for a section. Hence, point must be before the
1111section whose type will be found. Does not move point. Signal an
1112error if the node is not the top node and a section is not found."
daa6abb8
RS
1113 (let ((case-fold-search t))
1114 (save-excursion
1115 (cond
1116 ((re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
b9f60161
SM
1117 ;; Following search limit by cph but causes a bug
1118 ;;(line-end-position)
91c6f26e
KH
1119 nil
1120 t)
1121 "top")
daa6abb8 1122 ((re-search-forward texinfo-section-types-regexp nil t)
91c6f26e 1123 (buffer-substring-no-properties
7007e1e3
RS
1124 (progn (beginning-of-line) ; copy its name
1125 (1+ (point)))
1126 (progn (forward-word 1)
1127 (point))))
daa6abb8 1128 (t
91c6f26e 1129 (error
5b02e712 1130 "texinfo-specific-section-type: Chapter or section not found"))))))
7e1335cf
RC
1131
1132(defun texinfo-hierarchic-level ()
1133 "Return the general hierarchal level of the next node in a texinfo file.
1134Thus, a subheading or appendixsubsec is of type subsection."
daa6abb8 1135 (let ((case-fold-search t))
6f602bd0 1136 (cadr (assoc
b9f60161
SM
1137 (texinfo-specific-section-type)
1138 texinfo-section-list))))
7e1335cf
RC
1139
1140\f
daa6abb8 1141;;; Locating the major positions
7e1335cf 1142
d1f9f441 1143(defun texinfo-update-menu-region-beginning (level)
7e1335cf
RC
1144 "Locate beginning of higher level section this section is within.
1145Return position of the beginning of the node line; do not move point.
1146Thus, if this level is subsection, searches backwards for section node.
1147Only argument is a string of the general type of section."
daa6abb8
RS
1148 (let ((case-fold-search t))
1149 ;; !! Known bug: if section immediately follows top node, this
1150 ;; returns the beginning of the buffer as the beginning of the
1151 ;; higher level section.
1152 (cond
6f602bd0 1153 ((< level 3)
daa6abb8 1154 (save-excursion
91c6f26e
KH
1155 (goto-char (point-min))
1156 (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t)
1157 (beginning-of-line)
1158 (point)))
daa6abb8
RS
1159 (t
1160 (save-excursion
91c6f26e
KH
1161 (re-search-backward
1162 (concat
1163 "\\(^@node\\).*\n" ; match node line
1164 "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
1165 "\\|" ; or
21324fae
GM
1166 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
1167 "\\|" ; or
1168 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
1169 "\\)?" ; end of expression
91c6f26e
KH
1170 (eval
1171 (cdr (assoc level texinfo-update-menu-higher-regexps))))
1172 nil
1173 'goto-beginning)
1174 (point))))))
7e1335cf 1175
d1f9f441 1176(defun texinfo-update-menu-region-end (level)
7e1335cf
RC
1177 "Locate end of higher level section this section is within.
1178Return position; do not move point. Thus, if this level is a
1179subsection, find the node for the section this subsection is within.
1180If level is top or chapter, returns end of file. Only argument is a
1181string of the general type of section."
daa6abb8
RS
1182 (let ((case-fold-search t))
1183 (save-excursion
1184 (if (re-search-forward
91c6f26e
KH
1185 (concat
1186 "\\(^@node\\).*\n" ; match node line
1187 "\\(\\(\\(^@c\\).*\n\\)" ; match comment line, if any
1188 "\\|" ; or
21324fae
GM
1189 "\\(^@ifinfo[ ]*\n\\)" ; ifinfo line, if any
1190 "\\|" ; or
1191 "\\(^@ifnottex[ ]*\n\\)" ; ifnottex line, if any
1192 "\\)?" ; end of expression
91c6f26e
KH
1193 (eval
1194 ;; Never finds end of level above chapter so goes to end.
1195 (cdr (assoc level texinfo-update-menu-higher-regexps))))
1196 nil
1197 'goto-end)
1198 (match-beginning 1)
1199 (point-max)))))
7e1335cf
RC
1200
1201(defun texinfo-menu-first-node (beginning end)
d1f9f441 1202 "Locate first node of the section the menu will be placed in.
7e1335cf 1203Return position; do not move point.
d1f9f441 1204The menu will be located just before this position.
7e1335cf
RC
1205
1206First argument is the position of the beginning of the section in
1207which the menu will be located; second argument is the position of the
1208end of that region; it limits the search."
d1f9f441 1209
7e1335cf
RC
1210 (save-excursion
1211 (goto-char beginning)
1212 (forward-line 1)
1213 (re-search-forward "^@node" end t)
1214 (beginning-of-line)
1215 (point)))
1216
1217\f
daa6abb8 1218;;; Updating a node
7e1335cf 1219
78897d3d 1220(defun texinfo-update-node (&optional beginning end)
7e1335cf 1221 "Without any prefix argument, update the node in which point is located.
78897d3d 1222Interactively, a prefix argument means to operate on the region.
7e1335cf
RC
1223
1224The functions for creating or updating nodes and menus, and their
1225keybindings, are:
1226
78897d3d 1227 texinfo-update-node (&optional beginning end) \\[texinfo-update-node]
7e1335cf
RC
1228 texinfo-every-node-update () \\[texinfo-every-node-update]
1229 texinfo-sequential-node-update (&optional region-p)
1230
1231 texinfo-make-menu (&optional region-p) \\[texinfo-make-menu]
1232 texinfo-all-menus-update () \\[texinfo-all-menus-update]
1233 texinfo-master-menu ()
1234
1235 texinfo-indent-menu-description (column &optional region-p)
1236
1237The `texinfo-column-for-description' variable specifies the column to
daa6abb8 1238which menu descriptions are indented. Its default value is 32."
d1f9f441 1239
78897d3d
RS
1240 (interactive
1241 (if prefix-arg
1242 (list (point) (mark))))
1243 (if (null beginning)
1244 ;; Update a single node.
b9f60161 1245 (let ((auto-fill-function nil))
91c6f26e
KH
1246 (if (not (re-search-backward "^@node" (point-min) t))
1247 (error "Node line not found before this position"))
1248 (texinfo-update-the-node)
1249 (message "Done...updated the node. You may save the buffer."))
7e1335cf 1250 ;; else
b9f60161 1251 (let ((auto-fill-function nil))
78897d3d
RS
1252 (save-excursion
1253 (save-restriction
1254 (narrow-to-region beginning end)
1255 (goto-char (point-min))
1256 (while (re-search-forward "^@node" (point-max) t)
d1f9f441 1257 (beginning-of-line)
78897d3d
RS
1258 (texinfo-update-the-node))
1259 (goto-char (point-max))
1260 (message "Done...nodes updated in region. You may save the buffer."))))))
7e1335cf
RC
1261
1262(defun texinfo-every-node-update ()
1263 "Update every node in a Texinfo file."
1264 (interactive)
1265 (save-excursion
78897d3d 1266 (texinfo-update-node (point-min) (point-max))
8039284a 1267 (message "Done...updated every node. You may save the buffer.")))
7e1335cf
RC
1268
1269(defun texinfo-update-the-node ()
d1f9f441 1270 "Update one node. Point must be at the beginning of node line.
7e1335cf
RC
1271Leave point at the end of the node line."
1272 (texinfo-check-for-node-name)
1273 (texinfo-delete-existing-pointers)
1274 (message "Updating node: %s ... " (texinfo-copy-node-name))
1275 (save-restriction
1276 (widen)
1277 (let*
91c6f26e
KH
1278 ((case-fold-search t)
1279 (level (texinfo-hierarchic-level))
1280 (beginning (texinfo-update-menu-region-beginning level))
1281 (end (texinfo-update-menu-region-end level)))
6f602bd0 1282 (if (eq level 1)
91c6f26e
KH
1283 (texinfo-top-pointer-case)
1284 ;; else
1285 (texinfo-insert-pointer beginning end level 'next)
1286 (texinfo-insert-pointer beginning end level 'previous)
1287 (texinfo-insert-pointer beginning end level 'up)
1288 (texinfo-clean-up-node-line)))))
7e1335cf
RC
1289
1290(defun texinfo-top-pointer-case ()
1291 "Insert pointers in the Top node. This is a special case.
1292
1293The `Next' pointer is a pointer to a chapter or section at a lower
1294hierarchical level in the file. The `Previous' and `Up' pointers are
1295to `(dir)'. Point must be at the beginning of the node line, and is
1296left at the end of the node line."
1297
1298 (texinfo-clean-up-node-line)
d1f9f441 1299 (insert ", "
91c6f26e
KH
1300 (save-excursion
1301 ;; There may be an @chapter or other such command between
1302 ;; the top node line and the next node line, as a title
1303 ;; for an `ifinfo' section. This @chapter command must
1304 ;; must be skipped. So the procedure is to search for
1305 ;; the next `@node' line, and then copy its name.
1306 (if (re-search-forward "^@node" nil t)
1307 (progn
1308 (beginning-of-line)
1309 (texinfo-copy-node-name))
1310 " "))
1311 ", (dir), (dir)"))
7e1335cf
RC
1312
1313(defun texinfo-check-for-node-name ()
1314 "Determine whether the node has a node name. Prompt for one if not.
1315Point must be at beginning of node line. Does not move point."
1316 (save-excursion
daa6abb8
RS
1317 (let ((initial (texinfo-copy-next-section-title)))
1318 ;; This is not clean. Use `interactive' to read the arg.
1319 (forward-word 1) ; skip over node command
1320 (skip-chars-forward " \t") ; and over spaces
1321 (if (not (looking-at "[^,\t\n ]+")) ; regexp based on what Info looks for
91c6f26e
KH
1322 ; alternatively, use "[a-zA-Z]+"
1323 (let ((node-name
1324 (read-from-minibuffer
1325 "Node name (use no @, commas, colons, or apostrophes): "
1326 initial)))
1327 (insert " " node-name))))))
7e1335cf
RC
1328
1329(defun texinfo-delete-existing-pointers ()
d1f9f441 1330 "Delete `Next', `Previous', and `Up' pointers.
7e1335cf
RC
1331Starts from the current position of the cursor, and searches forward
1332on the line for a comma and if one is found, deletes the rest of the
1333line, including the comma. Leaves point at beginning of line."
2db10f13
KH
1334 (let ((eol-point (save-excursion (end-of-line) (point))))
1335 (if (search-forward "," eol-point t)
91c6f26e 1336 (delete-region (1- (point)) eol-point)))
7e1335cf
RC
1337 (beginning-of-line))
1338
1339(defun texinfo-find-pointer (beginning end level direction)
1340 "Move point to section associated with next, previous, or up pointer.
06cc857d 1341Return type of pointer (either `normal' or `no-pointer').
7e1335cf
RC
1342
1343The first and second arguments bound the search for a pointer to the
1344beginning and end, respectively, of the enclosing higher level
1345section. The third argument is a string specifying the general kind
d460a763 1346of section such as \"chapter\" or \"section\". When looking for the
7e1335cf
RC
1347`Next' pointer, the section found will be at the same hierarchical
1348level in the Texinfo file; when looking for the `Previous' pointer,
1349the section found will be at the same or higher hierarchical level in
1350the Texinfo file; when looking for the `Up' pointer, the section found
1351will be at some level higher in the Texinfo file. The fourth argument
1352\(one of 'next, 'previous, or 'up\) specifies whether to find the
1353`Next', `Previous', or `Up' pointer."
daa6abb8
RS
1354 (let ((case-fold-search t))
1355 (cond ((eq direction 'next)
91c6f26e
KH
1356 (forward-line 3) ; skip over current node
1357 ;; Search for section commands accompanied by node lines;
1358 ;; ignore section commands in the middle of nodes.
1359 (if (re-search-forward
21324fae 1360 ;; A `Top' node is never a next pointer, so won't find it.
91c6f26e
KH
1361 (concat
1362 ;; Match node line.
1363 "\\(^@node\\).*\n"
21324fae
GM
1364 ;; Match comment, ifinfo, ifnottex line, if any
1365 (concat
1366 "\\(\\("
1367 "\\(^@c\\).*\n\\)"
1368 "\\|"
1369 "\\(^@ifinfo[ ]*\n\\)"
1370 "\\|"
1371 "\\(^@ifnottex[ ]*\n\\)"
1372 "\\)?")
91c6f26e
KH
1373 (eval
1374 (cdr (assoc level texinfo-update-menu-same-level-regexps))))
1375 end
1376 t)
1377 'normal
1378 'no-pointer))
1379 ((eq direction 'previous)
1380 (if (re-search-backward
1381 (concat
1382 "\\("
1383 ;; Match node line.
1384 "\\(^@node\\).*\n"
21324fae
GM
1385 ;; Match comment, ifinfo, ifnottex line, if any
1386 (concat
1387 "\\(\\("
1388 "\\(^@c\\).*\n\\)"
1389 "\\|"
1390 "\\(^@ifinfo[ ]*\n\\)"
1391 "\\|"
1392 "\\(^@ifnottex[ ]*\n\\)"
1393 "\\)?")
91c6f26e
KH
1394 (eval
1395 (cdr (assoc level texinfo-update-menu-same-level-regexps)))
1396 "\\|"
1397 ;; Match node line.
1398 "\\(^@node\\).*\n"
21324fae
GM
1399 ;; Match comment, ifinfo, ifnottex line, if any
1400 (concat
1401 "\\(\\("
1402 "\\(^@c\\).*\n\\)"
1403 "\\|"
1404 "\\(^@ifinfo[ ]*\n\\)"
1405 "\\|"
1406 "\\(^@ifnottex[ ]*\n\\)"
1407 "\\)?")
91c6f26e
KH
1408 (eval
1409 (cdr (assoc level texinfo-update-menu-higher-regexps)))
1410 "\\|"
1411 ;; Handle `Top' node specially.
1412 "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
1413 "\\)")
1414 beginning
1415 t)
1416 'normal
1417 'no-pointer))
1418 ((eq direction 'up)
1419 (if (re-search-backward
1420 (concat
1421 "\\("
1422 ;; Match node line.
1423 "\\(^@node\\).*\n"
21324fae
GM
1424 ;; Match comment, ifinfo, ifnottex line, if any
1425 (concat
1426 "\\(\\("
1427 "\\(^@c\\).*\n\\)"
1428 "\\|"
1429 "\\(^@ifinfo[ ]*\n\\)"
1430 "\\|"
1431 "\\(^@ifnottex[ ]*\n\\)"
1432 "\\)?")
91c6f26e
KH
1433 (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
1434 "\\|"
1435 ;; Handle `Top' node specially.
1436 "^@node [ \t]*top[ \t]*\\(,\\|$\\)"
1437 "\\)")
1438 (save-excursion
1439 (goto-char beginning)
1440 (beginning-of-line)
1441 (point))
1442 t)
1443 'normal
1444 'no-pointer))
1445 (t
1446 (error "texinfo-find-pointer: lack proper arguments")))))
7e1335cf
RC
1447
1448(defun texinfo-pointer-name (kind)
1449 "Return the node name preceding the section command.
06cc857d 1450The argument is the kind of section, either `normal' or `no-pointer'."
7e1335cf
RC
1451 (let (name)
1452 (cond ((eq kind 'normal)
91c6f26e
KH
1453 (end-of-line) ; this handles prev node top case
1454 (re-search-backward ; when point is already
1455 "^@node" ; at the beginning of @node line
1456 (save-excursion (forward-line -3))
1457 t)
1458 (setq name (texinfo-copy-node-name)))
7e1335cf 1459 ((eq kind 'no-pointer)
91c6f26e
KH
1460 ;; Don't need to put a blank in the pointer slot,
1461 ;; since insert "' " always has a space
7e1335cf
RC
1462 (setq name " "))) ; put a blank in the pointer slot
1463 name))
1464
1465(defun texinfo-insert-pointer (beginning end level direction)
1466 "Insert the `Next', `Previous' or `Up' node name at point.
d1f9f441 1467Move point forward.
7e1335cf
RC
1468
1469The first and second arguments bound the search for a pointer to the
1470beginning and end, respectively, of the enclosing higher level
1471section. The third argument is the hierarchical level of the Texinfo
1472file, a string such as \"section\". The fourth argument is direction
06cc857d 1473towards which the pointer is directed, one of `next', `previous', or `up'."
7e1335cf
RC
1474
1475 (end-of-line)
1476 (insert
1477 ", "
1478 (save-excursion
1479 (texinfo-pointer-name
1480 (texinfo-find-pointer beginning end level direction)))))
1481
1482(defun texinfo-clean-up-node-line ()
1483 "Remove extra commas, if any, at end of node line."
1484 (end-of-line)
1485 (skip-chars-backward ", ")
1486 (delete-region (point) (save-excursion (end-of-line) (point))))
1487
1488\f
daa6abb8 1489;;; Updating nodes sequentially
06cc857d
RS
1490;; These sequential update functions insert `Next' or `Previous'
1491;; pointers that point to the following or preceding nodes even if they
1492;; are at higher or lower hierarchical levels. This means that if a
1493;; section contains one or more subsections, the section's `Next'
1494;; pointer will point to the subsection and not the following section.
1495;; (The subsection to which `Next' points will most likely be the first
1496;; item on the section's menu.)
7e1335cf
RC
1497
1498(defun texinfo-sequential-node-update (&optional region-p)
1499 "Update one node (or many) in a Texinfo file with sequential pointers.
1500
1501This function causes the `Next' or `Previous' pointer to point to the
1502immediately preceding or following node, even if it is at a higher or
1503lower hierarchical level in the document. Continually pressing `n' or
1504`p' takes you straight through the file.
1505
1506Without any prefix argument, update the node in which point is located.
1507Non-nil argument (prefix, if interactive) means update the nodes in the
1508marked region.
1509
1510This command makes it awkward to navigate among sections and
1511subsections; it should be used only for those documents that are meant
1512to be read like a novel rather than a reference, and for which the
1513Info `g*' command is inadequate."
d1f9f441 1514
7e1335cf
RC
1515 (interactive "P")
1516 (if (not region-p)
fe3371ef 1517 ;; update a single node
b9f60161 1518 (let ((auto-fill-function nil))
91c6f26e 1519 (if (not (re-search-backward "^@node" (point-min) t))
5b02e712 1520 (error "Node line not found before this position"))
91c6f26e
KH
1521 (texinfo-sequentially-update-the-node)
1522 (message
1523 "Done...sequentially updated the node . You may save the buffer."))
7e1335cf 1524 ;; else
e5d77022 1525 (let ((auto-fill-function nil)
91c6f26e
KH
1526 (beginning (region-beginning))
1527 (end (region-end)))
7e1335cf 1528 (if (= end beginning)
5b02e712 1529 (error "Please mark a region"))
7e1335cf 1530 (save-restriction
91c6f26e
KH
1531 (narrow-to-region beginning end)
1532 (goto-char beginning)
1533 (push-mark (point) t)
1534 (while (re-search-forward "^@node" (point-max) t)
1535 (beginning-of-line)
1536 (texinfo-sequentially-update-the-node))
1537 (message
1538 "Done...updated the nodes in sequence. You may save the buffer.")))))
7e1335cf
RC
1539
1540(defun texinfo-sequentially-update-the-node ()
d1f9f441 1541 "Update one node such that the pointers are sequential.
7e1335cf
RC
1542A `Next' or `Previous' pointer points to any preceding or following node,
1543regardless of its hierarchical level."
1544
6f602bd0
SM
1545 (texinfo-check-for-node-name)
1546 (texinfo-delete-existing-pointers)
1547 (message
1548 "Sequentially updating node: %s ... " (texinfo-copy-node-name))
1549 (save-restriction
1550 (widen)
1551 (let* ((case-fold-search t)
1552 (level (texinfo-hierarchic-level)))
1553 (if (eq level 1)
1554 (texinfo-top-pointer-case)
1555 ;; else
1556 (texinfo-sequentially-insert-pointer level 'next)
1557 (texinfo-sequentially-insert-pointer level 'previous)
1558 (texinfo-sequentially-insert-pointer level 'up)
1559 (texinfo-clean-up-node-line)))))
7e1335cf 1560
a056c2c7
RC
1561(defun texinfo-sequentially-insert-pointer (level direction)
1562 "Insert the `Next', `Previous' or `Up' node name at point.
1563Move point forward.
1564
1565The first argument is the hierarchical level of the Texinfo file, a
1566string such as \"section\". The second argument is direction, one of
1567`next', `previous', or `up'."
1568
1569 (end-of-line)
1570 (insert
1571 ", "
1572 (save-excursion
1573 (texinfo-pointer-name
1574 (texinfo-sequentially-find-pointer level direction)))))
1575
7e1335cf
RC
1576(defun texinfo-sequentially-find-pointer (level direction)
1577 "Find next or previous pointer sequentially in Texinfo file, or up pointer.
1578Move point to section associated with the pointer. Find point even if
1579it is in a different section.
1580
06cc857d 1581Return type of pointer (either `normal' or `no-pointer').
7e1335cf
RC
1582
1583The first argument is a string specifying the general kind of section
d460a763 1584such as \"chapter\" or \"section\". The section found will be at the
7e1335cf 1585same hierarchical level in the Texinfo file, or, in the case of the up
06cc857d
RS
1586pointer, some level higher. The second argument (one of `next',
1587`previous', or `up') specifies whether to find the `Next', `Previous',
7e1335cf 1588or `Up' pointer."
d1f9f441 1589 (let ((case-fold-search t))
daa6abb8 1590 (cond ((eq direction 'next)
91c6f26e
KH
1591 (forward-line 3) ; skip over current node
1592 (if (re-search-forward
1593 texinfo-section-types-regexp
1594 (point-max)
1595 t)
1596 'normal
1597 'no-pointer))
1598 ((eq direction 'previous)
1599 (if (re-search-backward
1600 texinfo-section-types-regexp
1601 (point-min)
1602 t)
1603 'normal
1604 'no-pointer))
1605 ((eq direction 'up)
1606 (if (re-search-backward
1607 (eval (cdr (assoc level texinfo-update-menu-higher-regexps)))
a056c2c7 1608 (point-min)
91c6f26e
KH
1609 t)
1610 'normal
1611 'no-pointer))
1612 (t
1613 (error "texinfo-sequential-find-pointer: lack proper arguments")))))
7e1335cf 1614
7e1335cf 1615\f
daa6abb8 1616;;; Inserting `@node' lines
06cc857d
RS
1617;; The `texinfo-insert-node-lines' function inserts `@node' lines as needed
1618;; before the `@chapter', `@section', and such like lines of a region
1619;; in a Texinfo file.
7e1335cf 1620
daa6abb8 1621(defun texinfo-insert-node-lines (beginning end &optional title-p)
7e1335cf
RC
1622 "Insert missing `@node' lines in region of Texinfo file.
1623Non-nil argument (prefix, if interactive) means also to insert the
1624section titles as node names; and also to insert the section titles as
06cc857d 1625node names in pre-existing `@node' lines that lack names."
daa6abb8
RS
1626 (interactive "r\nP")
1627
1628 ;; Use marker; after inserting node lines, leave point at end of
1629 ;; region and mark at beginning.
1630
1631 (let (beginning-marker end-marker title last-section-position)
1632
1633 ;; Save current position on mark ring and set mark to end.
d1f9f441
RS
1634 (push-mark end t)
1635 (setq end-marker (mark-marker))
daa6abb8
RS
1636
1637 (goto-char beginning)
1638 (while (re-search-forward
91c6f26e
KH
1639 texinfo-section-types-regexp
1640 end-marker
1641 'end)
daa6abb8
RS
1642 ;; Copy title if desired.
1643 (if title-p
91c6f26e
KH
1644 (progn
1645 (beginning-of-line)
1646 (forward-word 1)
1647 (skip-chars-forward " \t")
1648 (setq title (buffer-substring
1649 (point)
1650 (save-excursion (end-of-line) (point))))))
daa6abb8
RS
1651 ;; Insert node line if necessary.
1652 (if (re-search-backward
91c6f26e
KH
1653 "^@node"
1654 ;; Avoid finding previous node line if node lines are close.
1655 (or last-section-position
1656 (save-excursion (forward-line -2) (point))) t)
1657 ;; @node is present, and point at beginning of that line
1658 (forward-word 1) ; Leave point just after @node.
1659 ;; Else @node missing; insert one.
1660 (beginning-of-line) ; Beginning of `@section' line.
1661 (insert "@node\n")
1662 (backward-char 1)) ; Leave point just after `@node'.
daa6abb8
RS
1663 ;; Insert title if desired.
1664 (if title-p
91c6f26e
KH
1665 (progn
1666 (skip-chars-forward " \t")
1667 ;; Use regexp based on what info looks for
1668 ;; (alternatively, use "[a-zA-Z]+");
1669 ;; this means we only insert a title if none exists.
1670 (if (not (looking-at "[^,\t\n ]+"))
1671 (progn
1672 (beginning-of-line)
1673 (forward-word 1)
1674 (insert " " title)
1675 (message "Inserted title %s ... " title)))))
daa6abb8 1676 ;; Go forward beyond current section title.
d1f9f441 1677 (re-search-forward texinfo-section-types-regexp
91c6f26e 1678 (save-excursion (forward-line 3) (point)) t)
daa6abb8
RS
1679 (setq last-section-position (point))
1680 (forward-line 1))
1681
1682 ;; Leave point at end of region, mark at beginning.
1683 (set-mark beginning)
1684
1685 (if title-p
7e1335cf
RC
1686 (message
1687 "Done inserting node lines and titles. You may save the buffer.")
daa6abb8 1688 (message "Done inserting node lines. You may save the buffer."))))
7e1335cf
RC
1689
1690\f
daa6abb8 1691;;; Update and create menus for multi-file Texinfo sources
7e1335cf 1692
d1f9f441 1693;; 1. M-x texinfo-multiple-files-update
7e1335cf
RC
1694;;
1695;; Read the include file list of an outer Texinfo file and
1696;; update all highest level nodes in the files listed and insert a
1697;; main menu in the outer file after its top node.
1698
d1f9f441 1699;; 2. C-u M-x texinfo-multiple-files-update
7e1335cf
RC
1700;;
1701;; Same as 1, but insert a master menu. (Saves reupdating lower
1702;; level menus and nodes.) This command simply reads every menu,
1703;; so if the menus are wrong, the master menu will be wrong.
1704;; Similarly, if the lower level node pointers are wrong, they
1705;; will stay wrong.
1706
d1f9f441 1707;; 3. C-u 2 M-x texinfo-multiple-files-update
7e1335cf
RC
1708;;
1709;; Read the include file list of an outer Texinfo file and
1710;; update all nodes and menus in the files listed and insert a
1711;; master menu in the outer file after its top node.
1712
1713;;; Note: these functions:
1714;;;
1715;;; * Do not save or delete any buffers. You may fill up your memory.
d1f9f441 1716;;; * Do not handle any pre-existing nodes in outer file.
7e1335cf
RC
1717;;; Hence, you may need a file for indices.
1718
1719\f
daa6abb8 1720;;; Auxiliary functions for multiple file updating
7e1335cf
RC
1721
1722(defun texinfo-multi-file-included-list (outer-file)
1723 "Return a list of the included files in OUTER-FILE."
1724 (let ((included-file-list (list outer-file))
91c6f26e 1725 start)
9a529312 1726 (with-current-buffer (find-file-noselect outer-file)
7e1335cf
RC
1727 (widen)
1728 (goto-char (point-min))
1729 (while (re-search-forward "^@include" nil t)
91c6f26e
KH
1730 (skip-chars-forward " \t")
1731 (setq start (point))
1732 (end-of-line)
1733 (skip-chars-backward " \t")
1734 (setq included-file-list
1735 (cons (buffer-substring start (point))
1736 included-file-list)))
7e1335cf
RC
1737 (nreverse included-file-list))))
1738
1739(defun texinfo-copy-next-section-title ()
1740 "Return the name of the immediately following section as a string.
1741
1742Start with point at the beginning of the node line. Leave point at the
1743same place. If there is no title, returns an empty string."
1744
1745 (save-excursion
1746 (end-of-line)
d1f9f441 1747 (let ((node-end (or
91c6f26e
KH
1748 (save-excursion
1749 (if (re-search-forward "\\(^@node\\)" nil t)
1750 (match-beginning 0)))
1751 (point-max))))
daa6abb8 1752 (if (re-search-forward texinfo-section-types-regexp node-end t)
91c6f26e
KH
1753 (progn
1754 (beginning-of-line)
1755 ;; copy title
1756 (let ((title
1757 (buffer-substring
1758 (progn (forward-word 1) ; skip over section type
1759 (skip-chars-forward " \t") ; and over spaces
1760 (point))
1761 (progn (end-of-line) (point)))))
1762 title))
1763 ""))))
7e1335cf
RC
1764
1765(defun texinfo-multi-file-update (files &optional update-everything)
1766 "Update first node pointers in each file in FILES.
daa6abb8 1767Return a list of the node names.
7e1335cf
RC
1768
1769The first file in the list is an outer file; the remaining are
1770files included in the outer file with `@include' commands.
1771
1772If optional arg UPDATE-EVERYTHING non-nil, update every menu and
1773pointer in each of the included files.
1774
1775Also update the `Top' level node pointers of the outer file.
1776
1777Requirements:
1778
1779 * the first file in the FILES list must be the outer file,
1780 * each of the included files must contain exactly one highest
d1f9f441 1781 hierarchical level node,
7e1335cf
RC
1782 * this node must be the first node in the included file,
1783 * each highest hierarchical level node must be of the same type.
1784
12b795e1
RC
1785Thus, normally, each included file contains one, and only one, chapter.
1786
1787However, when an included file does not have any node lines in
1788it, this command does not try to create a menu entry for it.
1789Consequently, you can include any file, such as a version or an
1790update file without node lines, not just files that are
1791chapters."
7e1335cf 1792
06cc857d 1793;; The menu-list has the form:
d1f9f441
RS
1794;;
1795;; \(\(\"node-name1\" . \"title1\"\)
06cc857d 1796;; \(\"node-name2\" . \"title2\"\) ... \)
d1f9f441 1797;;
06cc857d
RS
1798;; However, there does not need to be a title field and this function
1799;; does not fill it; however a comment tells you how to do so.
1800;; You would use the title field if you wanted to insert titles in the
1801;; description slot of a menu as a description.
d1f9f441 1802
daa6abb8 1803 (let ((case-fold-search t)
d7fc69d1 1804 menu-list next-node-name previous-node-name files-with-node-lines)
d1f9f441 1805
d7fc69d1
RC
1806 ;; Create a new list of included files that only have node lines
1807 (while files
1808 (set-buffer (find-file-noselect (car files)))
1809 (widen)
1810 (goto-char (point-min))
1811 (when (re-search-forward "^@node" nil t)
1812 (setq files-with-node-lines (cons (car files) files-with-node-lines)))
1813 (setq files (cdr files)))
1814 (setq files-with-node-lines (nreverse files-with-node-lines))
1815
1816 ;; Find the name of the first node in a subsequent file
1817 ;; and copy it into the variable next-node-name
1818 (set-buffer (find-file-noselect (car (cdr files-with-node-lines))))
7e1335cf
RC
1819 (widen)
1820 (goto-char (point-min))
f6472377
EZ
1821 ;; The following search _must_ succeed, since we verified above
1822 ;; that this file does have a @node line.
1823 (re-search-forward "^@node" nil t)
7e1335cf
RC
1824 (beginning-of-line)
1825 (texinfo-check-for-node-name)
1826 (setq next-node-name (texinfo-copy-node-name))
b9f60161
SM
1827 (push (cons next-node-name (prog1 "" (forward-line 1)))
1828 ;; Use following to insert section titles automatically.
1829 ;; (texinfo-copy-next-section-title)
1830 menu-list)
daa6abb8 1831
7e1335cf 1832 ;; Go to outer file
d7fc69d1
RC
1833 ;; `pop' is analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE)))
1834 (set-buffer (find-file-noselect (pop files-with-node-lines)))
7e1335cf 1835 (goto-char (point-min))
82ac4b77 1836 (if (not (re-search-forward "^@node [ \t]*top[ \t]*\\(,\\|$\\)" nil t))
5b02e712 1837 (error "This buffer needs a Top node"))
7e1335cf
RC
1838 (beginning-of-line)
1839 (texinfo-delete-existing-pointers)
1840 (end-of-line)
1841 (insert ", " next-node-name ", (dir), (dir)")
1842 (beginning-of-line)
1843 (setq previous-node-name "Top")
d1f9f441 1844
d7fc69d1 1845 (while files-with-node-lines
d1f9f441 1846
d7fc69d1 1847 (if (not (cdr files-with-node-lines))
91c6f26e
KH
1848 ;; No next file
1849 (setq next-node-name "")
1850 ;; Else,
1851 ;; find the name of the first node in the next file.
d7fc69d1 1852 (set-buffer (find-file-noselect (car (cdr files-with-node-lines))))
91c6f26e
KH
1853 (widen)
1854 (goto-char (point-min))
f6472377
EZ
1855 ;; The following search _must_ succeed, since we verified
1856 ;; above that files in files-with-node-lines do have a @node
1857 ;; line.
1858 (re-search-forward "^@node" nil t)
91c6f26e
KH
1859 (beginning-of-line)
1860 (texinfo-check-for-node-name)
1861 (setq next-node-name (texinfo-copy-node-name))
b9f60161
SM
1862 (push (cons next-node-name (prog1 "" (forward-line 1)))
1863 ;; Use following to insert section titles automatically.
1864 ;; (texinfo-copy-next-section-title)
1865 menu-list))
7e1335cf
RC
1866
1867 ;; Go to node to be updated.
d7fc69d1 1868 (set-buffer (find-file-noselect (car files-with-node-lines)))
7e1335cf 1869 (goto-char (point-min))
7e1335cf 1870 (beginning-of-line)
d1f9f441 1871
daa6abb8
RS
1872 ;; Update other menus and nodes if requested.
1873 (if update-everything (texinfo-all-menus-update t))
1874
1875 (beginning-of-line)
7e1335cf
RC
1876 (texinfo-delete-existing-pointers)
1877 (end-of-line)
b9f60161 1878 (insert ", " next-node-name ", " previous-node-name ", Top")
d1f9f441 1879
7e1335cf
RC
1880 (beginning-of-line)
1881 (setq previous-node-name (texinfo-copy-node-name))
d1f9f441 1882
d7fc69d1 1883 (setq files-with-node-lines (cdr files-with-node-lines)))
7e1335cf
RC
1884 (nreverse menu-list)))
1885
1886(defun texinfo-multi-files-insert-main-menu (menu-list)
1887 "Insert formatted main menu at point.
1888Indents the first line of the description, if any, to the value of
06cc857d 1889`texinfo-column-for-description'."
7e1335cf
RC
1890
1891 (insert "@menu\n")
b9f60161 1892 (dolist (entry menu-list)
daa6abb8
RS
1893 ;; Every menu entry starts with a star and a space.
1894 (insert "* ")
d1f9f441 1895
daa6abb8 1896 ;; Insert the node name (and menu entry name, if present).
b9f60161 1897 (let ((node-part (car entry)))
daa6abb8 1898 (if (stringp node-part)
91c6f26e
KH
1899 ;; "Double colon" entry line; menu entry and node name are the same,
1900 (insert (format "%s::" node-part))
1901 ;; "Single colon" entry line; menu entry and node name are different.
1902 (insert (format "%s: %s." (car node-part) (cdr node-part)))))
d1f9f441 1903
daa6abb8 1904 ;; Insert the description, if present.
b9f60161
SM
1905 (when (cdr entry)
1906 ;; Move to right place.
1907 (indent-to texinfo-column-for-description 2)
1908 ;; Insert description.
1909 (insert (format "%s" (cdr entry))))
daa6abb8 1910
b9f60161 1911 (insert "\n")) ; end this menu entry
7e1335cf
RC
1912 (insert "@end menu"))
1913
7e1335cf
RC
1914(defun texinfo-multi-file-master-menu-list (files-list)
1915 "Return master menu list from files in FILES-LIST.
1916Menu entries in each file collected using `texinfo-master-menu-list'.
1917
1918The first file in FILES-LIST must be the outer file; the others must
1919be the files included within it. A main menu must already exist."
1920 (save-excursion
1921 (let (master-menu-list)
b9f60161
SM
1922 (dolist (file files-list)
1923 (set-buffer (find-file-noselect file))
91c6f26e
KH
1924 (message "Working on: %s " (current-buffer))
1925 (goto-char (point-min))
1926 (setq master-menu-list
b9f60161 1927 (append master-menu-list (texinfo-master-menu-list))))
7e1335cf
RC
1928 master-menu-list)))
1929
1930\f
daa6abb8 1931;;; The multiple-file update function
7e1335cf
RC
1932
1933(defun texinfo-multiple-files-update
f6472377 1934 (outer-file &optional make-master-menu update-everything)
7e1335cf 1935 "Update first node pointers in each file included in OUTER-FILE;
daa6abb8
RS
1936create or update the `Top' level node pointers and the main menu in
1937the outer file that refers to such nodes. This does not create or
1938update menus or pointers within the included files.
7e1335cf
RC
1939
1940With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
daa6abb8
RS
1941insert a master menu in OUTER-FILE in addition to creating or updating
1942pointers in the first @node line in each included file and creating or
1943updating the `Top' level node pointers of the outer file. This does
1944not create or update other menus and pointers within the included
1945files.
7e1335cf
RC
1946
1947With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
1948interactive), update all the menus and all the `Next', `Previous', and
1949`Up' pointers of all the files included in OUTER-FILE before inserting
daa6abb8
RS
1950a master menu in OUTER-FILE. Also, update the `Top' level node
1951pointers of OUTER-FILE.
7e1335cf 1952
d1f9f441 1953Notes:
7e1335cf
RC
1954
1955 * this command does NOT save any files--you must save the
1956 outer file and any modified, included files.
1957
1958 * except for the `Top' node, this command does NOT handle any
1959 pre-existing nodes in the outer file; hence, indices must be
1960 enclosed in an included file.
1961
1962Requirements:
1963
1964 * each of the included files must contain exactly one highest
d1f9f441 1965 hierarchical level node,
7e1335cf
RC
1966 * this highest node must be the first node in the included file,
1967 * each highest hierarchical level node must be of the same type.
1968
1969Thus, normally, each included file contains one, and only one,
1970chapter."
d1f9f441 1971
daa6abb8 1972 (interactive (cons
91c6f26e
KH
1973 (read-string
1974 "Name of outer `include' file: "
1975 (buffer-file-name))
b9f60161
SM
1976 (cond
1977 ((not current-prefix-arg) '(nil nil))
1978 ((listp current-prefix-arg) '(t nil)) ; make-master-menu
1979 ((numberp current-prefix-arg) '(t t))))) ; update-everything
7e1335cf
RC
1980
1981 (let* ((included-file-list (texinfo-multi-file-included-list outer-file))
91c6f26e 1982 (files included-file-list)
91c6f26e
KH
1983 next-node-name
1984 previous-node-name
b9f60161
SM
1985 ;; Update the pointers and collect the names of the nodes and titles
1986 (main-menu-list (texinfo-multi-file-update files update-everything)))
7e1335cf 1987
b9f60161 1988 ;; Insert main menu
7e1335cf 1989
b9f60161
SM
1990 ;; Go to outer file
1991 (set-buffer (find-file-noselect (car included-file-list)))
1992 (if (texinfo-old-menu-p
1993 (point-min)
1994 (save-excursion
1995 (re-search-forward "^@include")
1996 (beginning-of-line)
1997 (point)))
1998
1999 ;; If found, leave point after word `menu' on the `@menu' line.
2000 (progn
2001 (texinfo-incorporate-descriptions main-menu-list)
2002 ;; Delete existing menu.
2003 (beginning-of-line)
2004 (delete-region
2005 (point)
2006 (save-excursion (re-search-forward "^@end menu") (point)))
2007 ;; Insert main menu
2008 (texinfo-multi-files-insert-main-menu main-menu-list))
7e1335cf 2009
b9f60161
SM
2010 ;; Else no current menu; insert it before `@include'
2011 (texinfo-multi-files-insert-main-menu main-menu-list))
7e1335cf 2012
b9f60161 2013 ;; Insert master menu
7e1335cf 2014
b9f60161
SM
2015 (if make-master-menu
2016 (progn
2017 ;; First, removing detailed part of any pre-existing master menu
2018 (goto-char (point-min))
2019 (if (search-forward texinfo-master-menu-header nil t)
2020 (progn
2021 (goto-char (match-beginning 0))
2022 ;; Check if @detailmenu kludge is used;
2023 ;; if so, leave point before @detailmenu.
2024 (search-backward "\n@detailmenu"
2025 (save-excursion (forward-line -3) (point))
2026 t)
2027 ;; Remove detailed master menu listing
2028 (let ((end-of-detailed-menu-descriptions
2029 (save-excursion ; beginning of end menu line
2030 (goto-char (texinfo-menu-end))
2031 (beginning-of-line) (forward-char -1)
2032 (point))))
2033 (delete-region (point) end-of-detailed-menu-descriptions))))
2034
2035 ;; Create a master menu and insert it
2036 (texinfo-insert-master-menu-list
2037 (texinfo-multi-file-master-menu-list
2038 included-file-list)))))
daa6abb8
RS
2039
2040 ;; Remove unwanted extra lines.
2041 (save-excursion
2042 (goto-char (point-min))
d1f9f441 2043
daa6abb8
RS
2044 (re-search-forward "^@menu")
2045 (forward-line -1)
b9f60161 2046 (insert "\n") ; Ensure at least one blank line.
daa6abb8 2047 (delete-blank-lines)
d1f9f441 2048
daa6abb8
RS
2049 (re-search-forward "^@end menu")
2050 (forward-line 1)
b9f60161 2051 (insert "\n") ; Ensure at least one blank line.
daa6abb8
RS
2052 (delete-blank-lines))
2053
7e1335cf
RC
2054 (message "Multiple files updated."))
2055
daa6abb8 2056\f
b9f60161 2057;; Place `provide' at end of file.
49116ac0
JB
2058(provide 'texnfo-upd)
2059
cbee283d 2060;; arch-tag: d21613a5-c32f-43f4-8af4-bfb1e7455842
d501f516 2061;;; texnfo-upd.el ends here