Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / textmodes / texinfmt.el
blobbbf0714e8ab4eb151e2db6062f03d8a2e0093ce0
1 ;;; texinfmt.el --- format Texinfo files into Info files
3 ;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993,
4 ;; 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003,
5 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
7 ;; Maintainer: Robert J. Chassell <bug-texinfo@gnu.org>
8 ;; Keywords: maint, tex, docs
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;;; Code:
29 ;;; Emacs lisp functions to convert Texinfo files to Info files.
31 (defvar texinfmt-version "2.42 of 7 Jul 2006")
33 (defun texinfmt-version (&optional here)
34 "Show the version of texinfmt.el in the minibuffer.
35 If optional argument HERE is non-nil, insert info at point."
36 (interactive "P")
37 (let ((version-string
38 (format "Version of \`texinfmt.el\': %s" texinfmt-version)))
39 (if here
40 (insert version-string)
41 (if (interactive-p)
42 (message "%s" version-string)
43 version-string))))
46 ;;; Variable definitions
48 (require 'texinfo) ; So `texinfo-footnote-style' is defined.
49 (require 'texnfo-upd) ; So `texinfo-section-types-regexp' is defined.
51 (defvar texinfo-vindex)
52 (defvar texinfo-findex)
53 (defvar texinfo-cindex)
54 (defvar texinfo-pindex)
55 (defvar texinfo-tindex)
56 (defvar texinfo-kindex)
57 (defvar texinfo-last-node)
58 (defvar texinfo-node-names)
59 (defvar texinfo-enclosure-list)
60 (defvar texinfo-alias-list)
61 (defvar texinfo-fold-nodename-case nil)
63 (defvar texinfo-command-start)
64 (defvar texinfo-command-end)
65 (defvar texinfo-command-name)
66 (defvar texinfo-defun-type)
67 (defvar texinfo-last-node-pos)
68 (defvar texinfo-stack)
69 (defvar texinfo-short-index-cmds-alist)
70 (defvar texinfo-short-index-format-cmds-alist)
71 (defvar texinfo-format-filename)
72 (defvar texinfo-footnote-number)
74 (defvar texinfo-raisesections-alist
75 '((@chapter . @chapter) ; Cannot go higher
76 (@unnumbered . @unnumbered)
77 (@centerchap . @unnumbered)
79 (@majorheading . @majorheading)
80 (@chapheading . @chapheading)
81 (@appendix . @appendix)
83 (@section . @chapter)
84 (@unnumberedsec . @unnumbered)
85 (@heading . @chapheading)
86 (@appendixsec . @appendix)
88 (@subsection . @section)
89 (@unnumberedsubsec . @unnumberedsec)
90 (@subheading . @heading)
91 (@appendixsubsec . @appendixsec)
93 (@subsubsection . @subsection)
94 (@unnumberedsubsubsec . @unnumberedsubsec)
95 (@subsubheading . @subheading)
96 (@appendixsubsubsec . @appendixsubsec))
97 "*An alist of next higher levels for chapters, sections, etc...
98 For example, section to chapter, subsection to section.
99 Used by `texinfo-raise-lower-sections'.
100 The keys specify types of section; the values correspond to the next
101 higher types.")
103 (defvar texinfo-lowersections-alist
104 '((@chapter . @section)
105 (@unnumbered . @unnumberedsec)
106 (@centerchap . @unnumberedsec)
107 (@majorheading . @heading)
108 (@chapheading . @heading)
109 (@appendix . @appendixsec)
111 (@section . @subsection)
112 (@unnumberedsec . @unnumberedsubsec)
113 (@heading . @subheading)
114 (@appendixsec . @appendixsubsec)
116 (@subsection . @subsubsection)
117 (@unnumberedsubsec . @unnumberedsubsubsec)
118 (@subheading . @subsubheading)
119 (@appendixsubsec . @appendixsubsubsec)
121 (@subsubsection . @subsubsection) ; Cannot go lower.
122 (@unnumberedsubsubsec . @unnumberedsubsubsec)
123 (@subsubheading . @subsubheading)
124 (@appendixsubsubsec . @appendixsubsubsec))
125 "*An alist of next lower levels for chapters, sections, etc...
126 For example, chapter to section, section to subsection.
127 Used by `texinfo-raise-lower-sections'.
128 The keys specify types of section; the values correspond to the next
129 lower types.")
131 ;;; Syntax table
133 (defvar texinfo-format-syntax-table
134 (let ((st (make-syntax-table)))
135 (modify-syntax-entry ?\" " " st)
136 (modify-syntax-entry ?\\ " " st)
137 (modify-syntax-entry ?@ "\\" st)
138 (modify-syntax-entry ?\^q "\\" st)
139 (modify-syntax-entry ?\[ "." st)
140 (modify-syntax-entry ?\] "." st)
141 (modify-syntax-entry ?\( "." st)
142 (modify-syntax-entry ?\) "." st)
143 (modify-syntax-entry ?{ "(}" st)
144 (modify-syntax-entry ?} "){" st)
145 (modify-syntax-entry ?\' "." st)
146 st))
149 ;;; Top level buffer and region formatting functions
151 ;;;###autoload
152 (defun texinfo-format-buffer (&optional nosplit)
153 "Process the current buffer as texinfo code, into an Info file.
154 The Info file output is generated in a buffer visiting the Info file
155 name specified in the @setfilename command.
157 Non-nil argument (prefix, if interactive) means don't make tag table
158 and don't split the file if large. You can use `Info-tagify' and
159 `Info-split' to do these manually."
160 (interactive "P")
161 (let ((lastmessage "Formatting Info file...")
162 (coding-system-for-write buffer-file-coding-system))
163 (message lastmessage)
164 (widen)
165 (texinfo-format-buffer-1)
166 (Info-tagify)
167 (if nosplit
169 (if (> (buffer-size) 100000)
170 (progn
171 (message (setq lastmessage "Splitting Info file..."))
172 (Info-split))))
173 (message (concat lastmessage
174 (if (interactive-p) "done. Now save it." "done.")))))
176 (defvar texinfo-region-buffer-name "*Info Region*"
177 "*Name of the temporary buffer used by \\[texinfo-format-region].")
179 (defvar texinfo-pre-format-hook nil
180 "Hook called before the conversion of the Texinfo file to Info format.
181 The functions on this hook are called with argument BUFFER, the buffer
182 containing the Texinfo file.")
184 ;; These come from tex-mode.el.
185 (defvar tex-start-of-header)
186 (defvar tex-end-of-header)
188 ;;;###autoload
189 (defun texinfo-format-region (region-beginning region-end)
190 "Convert the current region of the Texinfo file to Info format.
191 This lets you see what that part of the file will look like in Info.
192 The command is bound to \\[texinfo-format-region]. The text that is
193 converted to Info is stored in a temporary buffer."
194 (interactive "r")
195 (message "Converting region to Info format...")
196 (let (texinfo-command-start
197 texinfo-command-end
198 texinfo-command-name
199 texinfo-vindex
200 texinfo-findex
201 texinfo-cindex
202 texinfo-pindex
203 texinfo-tindex
204 texinfo-kindex
205 texinfo-stack
206 (texinfo-format-filename "")
207 texinfo-example-start
208 texinfo-last-node-pos
209 texinfo-last-node
210 texinfo-node-names
211 (texinfo-footnote-number 0)
212 last-input-buffer
213 (fill-column-for-info fill-column)
214 (input-buffer (current-buffer))
215 (input-directory default-directory)
216 (header-text "")
217 (header-beginning 1)
218 (header-end 1))
220 ;;; Copy lines between beginning and end of header lines,
221 ;;; if any, or else copy the `@setfilename' line, if any.
222 (save-excursion
223 (save-restriction
224 (widen)
225 (goto-char (point-min))
226 (let ((search-end (save-excursion (forward-line 100) (point))))
227 (if (or
228 ;; Either copy header text.
229 (and
230 (prog1
231 (search-forward tex-start-of-header search-end t)
232 (forward-line 1)
233 ;; Mark beginning of header.
234 (setq header-beginning (point)))
235 (prog1
236 (search-forward tex-end-of-header nil t)
237 (beginning-of-line)
238 ;; Mark end of header
239 (setq header-end (point))))
240 ;; Or copy @filename line.
241 (prog2
242 (goto-char (point-min))
243 (search-forward "@setfilename" search-end t)
244 (beginning-of-line)
245 (setq header-beginning (point))
246 (forward-line 1)
247 (setq header-end (point))))
249 ;; Copy header
250 (setq header-text
251 (buffer-substring-no-properties
252 (min header-beginning region-beginning)
253 header-end))))))
255 ;;; Find a buffer to use.
256 (switch-to-buffer (get-buffer-create texinfo-region-buffer-name))
257 (setq buffer-read-only t)
258 (let ((inhibit-read-only t))
259 (erase-buffer)
260 ;; Insert the header into the buffer.
261 (insert header-text)
262 ;; Insert the region into the buffer.
263 (insert-buffer-substring
264 input-buffer
265 (max region-beginning header-end)
266 region-end)
267 (run-hook-with-args 'texinfo-pre-format-hook input-buffer)
268 ;; Make sure region ends in a newline.
269 (or (= (preceding-char) ?\n)
270 (insert "\n"))
272 (goto-char (point-min))
273 (texinfo-mode)
274 (message "Converting region to Info format...")
275 (setq fill-column fill-column-for-info)
276 ;; Install a syntax table useful for scanning command operands.
277 (set-syntax-table texinfo-format-syntax-table)
279 ;; Insert @include files so `texinfo-raise-lower-sections' can
280 ;; work on them without losing track of multiple
281 ;; @raise/@lowersections commands.
282 (while (re-search-forward "^@include" nil t)
283 (setq texinfo-command-end (point))
284 (let ((filename (concat input-directory
285 (texinfo-parse-line-arg))))
286 (re-search-backward "^@include")
287 (delete-region (point) (save-excursion (forward-line 1) (point)))
288 (message "Reading included file: %s" filename)
289 (save-excursion
290 (save-restriction
291 (narrow-to-region
292 (point)
293 (+ (point) (car (cdr (insert-file-contents filename)))))
294 (goto-char (point-min))
295 ;; Remove `@setfilename' line from included file, if any,
296 ;; so @setfilename command not duplicated.
297 (if (re-search-forward "^@setfilename" (line-end-position 100) t)
298 (delete-region (line-beginning-position 1)
299 (line-beginning-position 2)))))))
301 ;; Raise or lower level of each section, if necessary.
302 (goto-char (point-min))
303 (texinfo-raise-lower-sections)
304 ;; Append @refill to appropriate paragraphs for filling.
305 (goto-char (point-min))
306 (texinfo-append-refill)
307 ;; If the region includes the effective end of the data,
308 ;; discard everything after that.
309 (goto-char (point-max))
310 (if (re-search-backward "^@bye" nil t)
311 (delete-region (point) (point-max)))
312 ;; Make sure buffer ends in a newline.
313 (or (= (preceding-char) ?\n)
314 (insert "\n"))
315 ;; Don't use a previous value of texinfo-enclosure-list.
316 (setq texinfo-enclosure-list nil)
317 (setq texinfo-alias-list nil)
319 (goto-char (point-min))
320 (if (looking-at "\\\\input[ \t]+texinfo")
321 (delete-region (point) (line-beginning-position 2)))
323 ;; Insert Info region title text.
324 (goto-char (point-min))
325 (if (search-forward
326 "@setfilename" (save-excursion (forward-line 100) (point)) t)
327 (progn
328 (setq texinfo-command-end (point))
329 (beginning-of-line)
330 (setq texinfo-command-start (point))
331 (let ((arg (texinfo-parse-arg-discard)))
332 (insert " "
333 texinfo-region-buffer-name
334 " buffer for: `")
335 (insert (file-name-nondirectory (expand-file-name arg)))
336 (insert "', -*-Text-*-\n")))
337 ;; Else no `@setfilename' line
338 (insert " "
339 texinfo-region-buffer-name
340 " buffer -*-Text-*-\n"))
341 (insert "produced by `texinfo-format-region'\n"
342 "from a region in: "
343 (if (buffer-file-name input-buffer)
344 (concat "`"
345 (file-name-sans-versions
346 (file-name-nondirectory
347 (buffer-file-name input-buffer)))
348 "'")
349 (concat "buffer `" (buffer-name input-buffer) "'"))
350 "\nusing `texinfmt.el' version "
351 texinfmt-version
352 ".\n\n")
354 ;; Now convert for real.
355 (goto-char (point-min))
356 (texinfo-format-scan)
357 (goto-char (point-min))
358 (Info-tagify input-buffer)
359 (goto-char (point-min))
360 (message "Done."))))
362 ;;;###autoload
363 (defun texi2info (&optional nosplit)
364 "Convert the current buffer (written in Texinfo code) into an Info file.
365 The Info file output is generated in a buffer visiting the Info file
366 names specified in the @setfilename command.
368 This function automatically updates all node pointers and menus, and
369 creates a master menu. This work is done on a temporary buffer that
370 is automatically removed when the Info file is created. The original
371 Texinfo source buffer is not changed.
373 Non-nil argument (prefix, if interactive) means don't split the file
374 if large. You can use `Info-split' to do this manually."
375 (interactive "P")
376 (let ((temp-buffer (concat "*--" (buffer-name) "--temporary-buffer*" )))
377 (message "First updating nodes and menus, then creating Info file.")
378 ;; (sit-for 2)
379 (copy-to-buffer temp-buffer (point-min) (point-max))
380 (switch-to-buffer temp-buffer)
381 (texinfo-master-menu t)
382 (message "Now creating Info file.")
383 (sit-for 2)
384 (texinfo-format-buffer nosplit)
385 (save-buffer)
386 (kill-buffer temp-buffer)))
389 ;;; Primary internal formatting function for the whole buffer.
391 (defun texinfo-format-buffer-1 ()
392 (let (texinfo-format-filename
393 texinfo-example-start
394 texinfo-command-start
395 texinfo-command-end
396 texinfo-command-name
397 texinfo-last-node
398 texinfo-last-node-pos
399 texinfo-vindex
400 texinfo-findex
401 texinfo-cindex
402 texinfo-pindex
403 texinfo-tindex
404 texinfo-kindex
405 texinfo-stack
406 texinfo-node-names
407 (texinfo-footnote-number 0)
408 last-input-buffer
409 outfile
410 (fill-column-for-info fill-column)
411 (input-buffer (current-buffer))
412 (input-directory default-directory))
413 (setq texinfo-enclosure-list nil)
414 (setq texinfo-alias-list nil)
415 (save-excursion
416 (goto-char (point-min))
417 (or (search-forward "@setfilename" nil t)
418 (error "Texinfo file needs an `@setfilename FILENAME' line"))
419 (setq texinfo-command-end (point))
420 (setq outfile (texinfo-parse-line-arg)))
422 (find-file outfile)
423 (texinfo-mode)
424 (erase-buffer)
425 (buffer-disable-undo)
427 (message "Formatting Info file: %s" outfile)
428 (setq texinfo-format-filename
429 (file-name-nondirectory (expand-file-name outfile)))
431 (setq fill-column fill-column-for-info)
432 (set-syntax-table texinfo-format-syntax-table)
434 (insert-buffer-substring input-buffer)
435 (run-hook-with-args 'texinfo-pre-format-hook input-buffer)
436 (message "Converting %s to Info format..." (buffer-name input-buffer))
438 ;; Insert @include files so `texinfo-raise-lower-sections' can
439 ;; work on them without losing track of multiple
440 ;; @raise/@lowersections commands.
441 (goto-char (point-min))
442 (while (re-search-forward "^@include" nil t)
443 (setq texinfo-command-end (point))
444 (let ((filename (concat input-directory
445 (texinfo-parse-line-arg))))
446 (re-search-backward "^@include")
447 (delete-region (point) (line-beginning-position 2))
448 (message "Reading included file: %s" filename)
449 (save-excursion
450 (save-restriction
451 (narrow-to-region
452 (point)
453 (+ (point) (car (cdr (insert-file-contents filename)))))
454 (goto-char (point-min))
455 ;; Remove `@setfilename' line from included file, if any,
456 ;; so @setfilename command not duplicated.
457 (if (re-search-forward "^@setfilename" (line-end-position 100) t)
458 (delete-region (line-beginning-position 1)
459 (line-beginning-position 2)))))))
460 ;; Raise or lower level of each section, if necessary.
461 (goto-char (point-min))
462 (texinfo-raise-lower-sections)
463 ;; Append @refill to appropriate paragraphs
464 (goto-char (point-min))
465 (texinfo-append-refill)
466 (goto-char (point-min))
467 (search-forward "@setfilename")
468 (beginning-of-line)
469 (delete-region (point-min) (point))
470 ;; Remove @bye at end of file, if it is there.
471 (goto-char (point-max))
472 (if (search-backward "@bye" nil t)
473 (delete-region (point) (point-max)))
474 ;; Make sure buffer ends in a newline.
475 (or (= (preceding-char) ?\n)
476 (insert "\n"))
477 ;; Scan the whole buffer, converting to Info format.
478 (texinfo-format-scan)
479 (goto-char (point-min))
480 ;; Insert info about how this file was made.
481 (insert "Info file: "
482 texinfo-format-filename ", -*-Text-*-\n"
483 "produced by `texinfo-format-buffer'\n"
484 ;; Date string removed so that regression testing is easier.
485 ;; "on "
486 ;; (insert (format-time-string "%e %b %Y")) " "
487 "from file"
488 (if (buffer-file-name input-buffer)
489 (concat " `"
490 (file-name-sans-versions
491 (file-name-nondirectory
492 (buffer-file-name input-buffer)))
493 "'")
494 (concat "buffer `" (buffer-name input-buffer) "'"))
495 "\nusing `texinfmt.el' version "
496 texinfmt-version
497 ".\n\n")
498 ;; Return data for indices.
499 (list outfile
500 texinfo-vindex texinfo-findex texinfo-cindex
501 texinfo-pindex texinfo-tindex texinfo-kindex)))
504 ;;; Perform non-@-command file conversions: quotes and hyphens
506 (defun texinfo-format-convert (min max)
507 ;; Convert left and right quotes to typewriter font quotes.
508 (goto-char min)
509 (while (search-forward "``" max t)
510 (replace-match "\""))
511 (goto-char min)
512 (while (search-forward "''" max t)
513 (replace-match "\""))
514 ;; Convert three hyphens in a row to two.
515 (goto-char min)
516 (while (re-search-forward "\\( \\|\\w\\)\\(---\\)\\( \\|\\w\\)" max t)
517 (delete-region (1+ (match-beginning 2)) (+ 2 (match-beginning 2)))))
520 ;;; Handle paragraph filling
522 ;; Keep as concatinated lists for ease of maintenance
524 (defvar texinfo-no-refill-regexp
525 (concat
526 "^@"
527 "\\("
528 ;; add "itemize\\|" (from experiment of 2001 Nov 28)
529 ;; because of a problem with @end itemize@refill
530 ;; I don't know if this causes other problems.
531 ;; I suspect itemized lists don't get filled properly and a
532 ;; more precise fix is required. Bob
533 ;; commented out on 2005 Feb 28 by Bob
534 ;; "itemize\\|"
535 "direntry\\|"
536 "lisp\\|"
537 "smalllisp\\|"
538 "example\\|"
539 "smallexample\\|"
540 "display\\|"
541 "smalldisplay\\|"
542 "format\\|"
543 "smallformat\\|"
544 "flushleft\\|"
545 "flushright\\|"
546 "menu\\|"
547 "multitable\\|"
548 "titlepage\\|"
549 "iftex\\|"
550 "ifhtml\\|"
551 "tex\\|"
552 "html"
553 "\\)")
554 "Regexp specifying environments in which paragraphs are not filled.")
556 (defvar texinfo-accent-commands
557 (concat
558 "@^\\|"
559 "@`\\|"
560 "@'\\|"
561 "@\"\\|"
562 "@,\\|"
563 "@=\\|"
564 "@~\\|"
565 "@OE{\\|"
566 "@oe{\\|"
567 "@AA{\\|"
568 "@aa{\\|"
569 "@AE{\\|"
570 "@ae{\\|"
571 "@ss{\\|"
572 "@questiondown{\\|"
573 "@exclamdown{\\|"
574 "@L{\\|"
575 "@l{\\|"
576 "@O{\\|"
577 "@o{\\|"
578 "@dotaccent{\\|"
579 "@ubaraccent{\\|"
580 "@d{\\|"
581 "@H{\\|"
582 "@ringaccent{\\|"
583 "@tieaccent{\\|"
584 "@u{\\|"
585 "@v{\\|"
586 "@dotless{"
589 (defvar texinfo-part-of-para-regexp
590 (concat
591 "^@"
592 "\\("
593 "b{\\|"
594 "bullet{\\|"
595 "cite{\\|"
596 "code{\\|"
597 "email{\\|"
598 "emph{\\|"
599 "equiv{\\|"
600 "error{\\|"
601 "expansion{\\|"
602 "file{\\|"
603 "i{\\|"
604 "inforef{\\|"
605 "kbd{\\|"
606 "key{\\|"
607 "lisp{\\|"
608 "minus{\\|"
609 "point{\\|"
610 "print{\\|"
611 "pxref{\\|"
612 "r{\\|"
613 "ref{\\|"
614 "result{\\|"
615 "samp{\\|"
616 "sc{\\|"
617 "t{\\|"
618 "TeX{\\|"
619 "today{\\|"
620 "url{\\|"
621 "var{\\|"
622 "w{\\|"
623 "xref{\\|"
624 "@-\\|" ; @- is a descretionary hyphen (not an accent) (a noop).
625 texinfo-accent-commands
626 "\\)"
628 "Regexp specifying @-commands found within paragraphs.")
630 (defun texinfo-append-refill ()
631 "Append @refill at end of each paragraph that should be filled.
632 Do not append @refill to paragraphs within @example and similar environments.
633 Do not append @refill to paragraphs containing @w{TEXT} or @*."
635 ;; It is necessary to append @refill before other processing because
636 ;; the other processing removes information that tells Texinfo
637 ;; whether the text should or should not be filled.
639 (while (< (point) (point-max))
640 (let ((refill-blank-lines "^[ \t\n]*$")
641 (case-fold-search nil)) ; Don't confuse @TeX and @tex....
642 (beginning-of-line)
643 ;; 1. Skip over blank lines;
644 ;; skip over lines beginning with @-commands,
645 ;; but do not skip over lines
646 ;; that are no-refill environments such as @example or
647 ;; that begin with within-paragraph @-commands such as @code.
648 (while (and (looking-at (concat "^@\\|^\\\\\\|" refill-blank-lines))
649 (not (looking-at
650 (concat
651 "\\("
652 texinfo-no-refill-regexp
653 "\\|"
654 texinfo-part-of-para-regexp
655 "\\)")))
656 (< (point) (point-max)))
657 (forward-line 1))
658 ;; 2. Skip over @example and similar no-refill environments.
659 (if (looking-at texinfo-no-refill-regexp)
660 (let ((environment (match-string-no-properties 1)))
661 (progn (re-search-forward (concat "^@end " environment) nil t)
662 (forward-line 1)))
663 ;; Else
664 ;; 3. Do not refill a paragraph containing @w or @*, or ending
665 ;; with @<newline> followed by a newline.
666 (if (or (>= (point) (point-max))
667 (re-search-forward
668 "@w{\\|@\\*\\|@\n\n"
669 (save-excursion (forward-paragraph) (forward-line 1) (point))
671 ;; Go to end of paragraph and do nothing.
672 (forward-paragraph)
673 ;; 4. Else go to end of paragraph and insert @refill
674 (forward-paragraph)
675 (forward-line -1)
676 (let ((line-beg (point)))
677 (end-of-line)
678 (delete-region
679 (point)
680 (save-excursion (skip-chars-backward " \t") (point)))
681 (forward-char 1)
682 (unless (re-search-backward "@c[ \t\n]\\|@comment[ \t\n]" line-beg t)
683 (forward-char -1))
684 (unless (re-search-backward "@refill\\|^[ \t]*@" line-beg t)
685 (insert "@refill")))
686 (forward-line 1))))))
689 ;;; Handle `@raisesections' and `@lowersections' commands
691 ;; These commands change the hierarchical level of chapter structuring
692 ;; commands.
694 ;; @raisesections changes @subsection to @section,
695 ;; @section to @chapter,
696 ;; etc.
698 ;; @lowersections changes @chapter to @section
699 ;; @subsection to @subsubsection,
700 ;; etc.
702 ;; An @raisesections/@lowersections command changes only those
703 ;; structuring commands that follow the @raisesections/@lowersections
704 ;; command.
706 ;; Repeated @raisesections/@lowersections continue to raise or lower
707 ;; the heading level.
709 ;; An @lowersections command cancels an @raisesections command, and
710 ;; vice versa.
712 ;; You cannot raise or lower "beyond" chapters or subsubsections, but
713 ;; trying to do so does not elicit an error---you just get more
714 ;; headings that mean the same thing as you keep raising or lowering
715 ;; (for example, after a single @raisesections, both @chapter and
716 ;; @section produce chapter headings).
718 (defun texinfo-raise-lower-sections ()
719 "Raise or lower the hierarchical level of chapters, sections, etc.
721 This function acts according to `@raisesections' and `@lowersections'
722 commands in the Texinfo file.
724 For example, an `@lowersections' command is useful if you wish to
725 include what is written as an outer or standalone Texinfo file in
726 another Texinfo file as an inner, included file. The `@lowersections'
727 command changes chapters to sections, sections to subsections and so
730 @raisesections changes @subsection to @section,
731 @section to @chapter,
732 @heading to @chapheading,
733 etc.
735 @lowersections changes @chapter to @section,
736 @subsection to @subsubsection,
737 @heading to @subheading,
738 etc.
740 An `@raisesections' or `@lowersections' command changes only those
741 structuring commands that follow the `@raisesections' or
742 `@lowersections' command.
744 An `@lowersections' command cancels an `@raisesections' command, and
745 vice versa.
747 Repeated use of the commands continue to raise or lower the hierarchical
748 level a step at a time.
750 An attempt to raise above `chapters' reproduces chapter commands; an
751 attempt to lower below subsubsections reproduces subsubsection
752 commands."
754 ;; `texinfo-section-types-regexp' is defined in `texnfo-upd.el';
755 ;; it is a regexp matching chapter, section, other headings
756 ;; (but not the top node).
758 (let (type (level 0))
759 (while
760 (re-search-forward
761 (concat
762 "\\(\\(^@\\(raise\\|lower\\)sections\\)\\|\\("
763 texinfo-section-types-regexp
764 "\\)\\)")
765 nil t)
766 (beginning-of-line)
767 (save-excursion (setq type (read (current-buffer))))
768 (cond
770 ;; 1. Increment level
771 ((eq type '@raisesections)
772 (setq level (1+ level))
773 (delete-region
774 (point) (save-excursion (forward-line 1) (point))))
776 ;; 2. Decrement level
777 ((eq type '@lowersections)
778 (setq level (1- level))
779 (delete-region
780 (point) (save-excursion (forward-line 1) (point))))
782 ;; Now handle structuring commands
783 ((cond
785 ;; 3. Raise level when positive
786 ((> level 0)
787 (let ((count level)
788 (new-level type))
789 (while (> count 0)
790 (setq new-level
791 (cdr (assq new-level texinfo-raisesections-alist)))
792 (setq count (1- count)))
793 (kill-word 1)
794 (insert (symbol-name new-level))))
796 ;; 4. Do nothing except move point when level is zero
797 ((= level 0) (forward-line 1))
799 ;; 5. Lower level when positive
800 ((< level 0)
801 (let ((count level)
802 (new-level type))
803 (while (< count 0)
804 (setq new-level
805 (cdr (assq new-level texinfo-lowersections-alist)))
806 (setq count (1+ count)))
807 (kill-word 1)
808 (insert (symbol-name new-level))))))))))
810 ;;; Perform those texinfo-to-info conversions that apply to the whole input
811 ;;; uniformly.
813 (defun texinfo-format-scan ()
814 (texinfo-format-convert (point-min) (point-max))
815 ;; Search for @copying, which has to be first since the
816 ;; @insertcopying command then inserts the text elsewhere.
817 (goto-char (point-min))
818 (when (search-forward "@copying" nil t)
819 (texinfo-copying))
820 (while (search-forward "@insertcopying" nil t)
821 (delete-region (match-beginning 0) (match-end 0))
823 (texinfo-insertcopying))
824 ;; Scan for other @-commands.
825 (goto-char (point-min))
826 (while (search-forward "@" nil t)
828 ;; These are the single-character accent commands: @^ @` @' @" @= @~
829 ;; In Info, they are simply quoted and the @ deleted.
830 ;; Other single-character commands:
831 ;; @* forces a line break,
832 ;; @- is a discretionary hyphenation point; does nothing in Info.
833 ;; @<space>, @<tab>, @<newline> each produce a single space,
834 ;; unless followed by a newline.
836 ;; Old version 2.34 expression: (looking-at "[@{}^'` *\"?!]")
837 (if (looking-at "[@{}^'`\"=~ \t\n*?!-]")
838 ;; @*, causes a line break.
839 (cond
840 ;; @*, a line break
841 ((= (following-char) ?*)
842 ;; remove command
843 (delete-region (1- (point)) (1+ (point)))
844 ;; insert return if not at end of line;
845 ;; else line is already broken.
846 (if (not (= (following-char) ?\n))
847 (insert ?\n)))
848 ;; @-, deleted
849 ((= (following-char) ?-)
850 (delete-region (1- (point)) (1+ (point))))
851 ;; @<space>, @<tab>, @<newline>: produce a single space,
852 ;; unless followed by a newline.
853 ((= (following-char) ? )
854 (delete-region (1- (point)) (1+ (point)))
855 ;; insert single space if not at end of line;
856 ;; else line is already broken.
857 (if (not (= (following-char) ?\n))
858 (insert ? )))
859 ((= (following-char) ?\t)
860 (delete-region (1- (point)) (1+ (point)))
861 ;; insert single space if not at end of line;
862 ;; else line is already broken.
863 (if (not (= (following-char) ?\n))
864 (insert ? )))
865 ;; following char is a carriage return
866 ((= (following-char) ?\n)
867 ;; remove command
868 (delete-region (1- (point)) (1+ (point)))
869 ;; insert single space if not at end of line;
870 ;; else line is already broken.
871 (if (not (= (following-char) ?\n))
872 (insert ? )))
873 ;; Otherwise: the other characters are simply quoted. Delete the @.
875 (delete-char -1)
876 ;; Be compatible with makeinfo: if @' and its ilk are
877 ;; followed by a @ without a brace, barf.
878 (if (looking-at "[\"'^`~=]")
879 (progn
880 (if (= (char-after (1+ (point))) ?@)
881 (error "Use braces to give a command as an argument to @%c"
882 (following-char)))
883 (forward-char 1)
884 ;; @' etc. can optionally accept their argument in
885 ;; braces (makeinfo supports that).
886 (when (looking-at "{")
887 (let ((start (point)))
888 (forward-list 1)
889 (delete-char -1)
890 (goto-char start)
891 (delete-char 1))))
892 (forward-char 1))))
893 ;; @ is followed by a command-word; find the end of the word.
894 (setq texinfo-command-start (1- (point)))
895 (if (= (char-syntax (following-char)) ?w)
896 (forward-word 1)
897 (forward-char 1))
898 (setq texinfo-command-end (point))
899 ;; Detect the case of two @-commands in a row;
900 ;; process just the first one.
901 (goto-char (1+ texinfo-command-start))
902 (skip-chars-forward "^@" texinfo-command-end)
903 (setq texinfo-command-end (point))
904 ;; Handle let aliasing
905 (setq texinfo-command-name
906 (let (trial
907 (cmdname
908 (buffer-substring-no-properties
909 (1+ texinfo-command-start) texinfo-command-end)))
910 (while (setq trial (assoc cmdname texinfo-alias-list))
911 (setq cmdname (cdr trial)))
912 (intern cmdname)))
913 ;; Call the handler for this command.
914 (let ((enclosure-type
915 (assoc
916 (symbol-name texinfo-command-name)
917 texinfo-enclosure-list)))
918 (if enclosure-type
919 (progn
920 (insert
921 (car (car (cdr enclosure-type)))
922 (texinfo-parse-arg-discard)
923 (car (cdr (car (cdr enclosure-type)))))
924 (goto-char texinfo-command-start))
925 (let ((cmd (get texinfo-command-name 'texinfo-format)))
926 (if cmd (funcall cmd) (texinfo-unsupported)))))))
928 (cond (texinfo-stack
929 (goto-char (nth 2 (car texinfo-stack)))
930 (error "Unterminated @%s" (car (car texinfo-stack)))))
932 ;; Remove excess whitespace
933 (let ((whitespace-silent t))
934 (whitespace-cleanup)))
936 (defvar texinfo-copying-text ""
937 "Text of the copyright notice and copying permissions.")
939 (defun texinfo-copying ()
940 "Copy the copyright notice and copying permissions from the Texinfo file,
941 as indicated by the @copying ... @end copying command;
942 insert the text with the @insertcopying command."
943 (let ((beg (progn (beginning-of-line) (point)))
944 (end (progn (re-search-forward "^@end copying[ \t]*\n") (point))))
945 (setq texinfo-copying-text
946 (buffer-substring-no-properties
947 (save-excursion (goto-char beg) (forward-line 1) (point))
948 (save-excursion (goto-char end) (forward-line -1) (point))))
949 (delete-region beg end)))
951 (defun texinfo-insertcopying ()
952 "Insert the copyright notice and copying permissions from the Texinfo file,
953 which are indicated by the @copying ... @end copying command."
954 (insert (concat "\n" texinfo-copying-text)))
956 (put 'begin 'texinfo-format 'texinfo-format-begin)
957 (defun texinfo-format-begin ()
958 (texinfo-format-begin-end 'texinfo-format))
960 (put 'end 'texinfo-format 'texinfo-format-end)
961 (defun texinfo-format-end ()
962 (texinfo-format-begin-end 'texinfo-end))
964 (defun texinfo-format-begin-end (prop)
965 (setq texinfo-command-name (intern (texinfo-parse-line-arg)))
966 (let ((cmd (get texinfo-command-name prop)))
967 (if cmd (funcall cmd)
968 (texinfo-unsupported))))
970 ;;; Parsing functions
972 (defun texinfo-parse-line-arg ()
973 "Return argument of @-command as string.
974 Argument is separated from command either by a space or by a brace.
975 If a space, return rest of line, with beginning and ending white
976 space removed. If a brace, return string between braces.
977 Leave point after argument."
978 (goto-char texinfo-command-end)
979 (let ((start (point)))
980 (cond ((looking-at " ")
981 (skip-chars-forward " ")
982 (setq start (point))
983 (end-of-line)
984 (skip-chars-backward " ")
985 (delete-region (point) (progn (end-of-line) (point)))
986 (setq texinfo-command-end (1+ (point))))
987 ((looking-at "{")
988 (setq start (1+ (point)))
989 (forward-list 1)
990 (setq texinfo-command-end (point))
991 (forward-char -1))
993 (error "Invalid texinfo command arg format")))
994 (prog1 (buffer-substring-no-properties start (point))
995 (if (eolp) (forward-char 1)))))
997 (defun texinfo-parse-expanded-arg ()
998 (goto-char texinfo-command-end)
999 (let ((start (point))
1000 marker)
1001 (cond ((looking-at " ")
1002 (skip-chars-forward " ")
1003 (setq start (point))
1004 (end-of-line)
1005 (setq texinfo-command-end (1+ (point))))
1006 ((looking-at "{")
1007 (setq start (1+ (point)))
1008 (forward-list 1)
1009 (setq texinfo-command-end (point))
1010 (forward-char -1))
1012 (error "Invalid texinfo command arg format")))
1013 (setq marker (move-marker (make-marker) texinfo-command-end))
1014 (texinfo-format-expand-region start (point))
1015 (setq texinfo-command-end (marker-position marker))
1016 (move-marker marker nil)
1017 (prog1 (buffer-substring-no-properties start (point))
1018 (if (eolp) (forward-char 1)))))
1020 (defun texinfo-format-expand-region (start end)
1021 (save-restriction
1022 (narrow-to-region start end)
1023 (let (texinfo-command-start
1024 texinfo-command-end
1025 texinfo-command-name
1026 texinfo-stack)
1027 (texinfo-format-scan))
1028 (goto-char (point-max))))
1030 (defun texinfo-parse-arg-discard ()
1031 "Delete command and argument; return argument of command."
1032 (prog1 (texinfo-parse-line-arg)
1033 (texinfo-discard-command)))
1035 (defun texinfo-discard-command ()
1036 (delete-region texinfo-command-start texinfo-command-end))
1038 (defun texinfo-optional-braces-discard ()
1039 "Discard braces following command, if any."
1040 (goto-char texinfo-command-end)
1041 (let ((start (point)))
1042 (cond ((looking-at "[ \t]*\n")) ; do nothing
1043 ((looking-at "{") ; remove braces, if any
1044 (forward-list 1)
1045 (setq texinfo-command-end (point)))
1047 (error
1048 "Invalid `texinfo-optional-braces-discard' format \(need braces?\)")))
1049 (delete-region texinfo-command-start texinfo-command-end)))
1051 (defun texinfo-format-parse-line-args ()
1052 (let ((start (1- (point)))
1053 next beg end
1054 args)
1055 (skip-chars-forward " ")
1056 (while (not (eolp))
1057 (setq beg (point))
1058 (re-search-forward "[\n,]")
1059 (setq next (point))
1060 (if (bolp) (setq next (1- next)))
1061 (forward-char -1)
1062 (skip-chars-backward " ")
1063 (setq end (point))
1064 (push (if (> end beg) (buffer-substring-no-properties beg end))
1065 args)
1066 (goto-char next)
1067 (skip-chars-forward " "))
1068 (if (eolp) (forward-char 1))
1069 (setq texinfo-command-end (point))
1070 (nreverse args)))
1072 (defun texinfo-format-parse-args ()
1073 (let ((start (1- (point)))
1074 next beg end
1075 args)
1076 (search-forward "{")
1077 (save-excursion
1078 (texinfo-format-expand-region
1079 (point)
1080 (save-excursion (up-list 1) (1- (point)))))
1081 ;; The following does not handle cross references of the form:
1082 ;; `@xref{bullet, , @code{@@bullet}@{@}}.' because the
1083 ;; re-search-forward finds the first right brace after the second
1084 ;; comma.
1085 (while (/= (preceding-char) ?\})
1086 (skip-chars-forward " \t\n")
1087 (setq beg (point))
1088 (re-search-forward "[},]")
1089 (setq next (point))
1090 (forward-char -1)
1091 (skip-chars-backward " \t\n")
1092 (setq end (point))
1093 (cond ((< beg end)
1094 (goto-char beg)
1095 (while (search-forward "\n" end t)
1096 (replace-match " "))))
1097 (push (if (> end beg) (buffer-substring-no-properties beg end))
1098 args)
1099 (goto-char next))
1100 ;;(if (eolp) (forward-char 1))
1101 (setq texinfo-command-end (point))
1102 (nreverse args)))
1104 (defun texinfo-format-parse-defun-args ()
1105 (goto-char texinfo-command-end)
1106 (let ((start (point)))
1107 (end-of-line)
1108 (setq texinfo-command-end (1+ (point)))
1109 (let ((marker (move-marker (make-marker) texinfo-command-end)))
1110 (texinfo-format-expand-region start (point))
1111 (setq texinfo-command-end (marker-position marker))
1112 (move-marker marker nil))
1113 (goto-char start)
1114 (let ((args '())
1115 beg end)
1116 (skip-chars-forward " ")
1117 (while (not (eolp))
1118 (cond ((looking-at "{")
1119 (setq beg (1+ (point)))
1120 (forward-list 1)
1121 (setq end (1- (point))))
1123 (setq beg (point))
1124 (re-search-forward "[\n ]")
1125 (forward-char -1)
1126 (setq end (point))))
1127 (push (buffer-substring-no-properties beg end) args)
1128 (skip-chars-forward " "))
1129 (forward-char 1)
1130 (nreverse args))))
1132 (defun texinfo-discard-line ()
1133 (goto-char texinfo-command-end)
1134 (skip-chars-forward " \t")
1135 (or (eolp)
1136 (error "Extraneous text at end of command line"))
1137 (goto-char texinfo-command-start)
1138 (or (bolp)
1139 (error "Extraneous text at beginning of command line"))
1140 (delete-region (point) (progn (forward-line 1) (point))))
1142 (defun texinfo-discard-line-with-args ()
1143 (goto-char texinfo-command-start)
1144 (delete-region (point) (progn (forward-line 1) (point))))
1147 ;;; @setfilename
1149 ;; Only `texinfo-format-buffer' handles @setfilename with this
1150 ;; definition; `texinfo-format-region' handles @setfilename, if any,
1151 ;; specially.
1152 (put 'setfilename 'texinfo-format 'texinfo-format-setfilename)
1153 (defun texinfo-format-setfilename ()
1154 (texinfo-parse-arg-discard))
1156 ;;; @node, @menu, @detailmenu
1158 (put 'node 'texinfo-format 'texinfo-format-node)
1159 (put 'nwnode 'texinfo-format 'texinfo-format-node)
1160 (defun texinfo-format-node ()
1161 (let* ((args (texinfo-format-parse-line-args))
1162 (name (nth 0 args))
1163 (next (nth 1 args))
1164 (prev (nth 2 args))
1165 (up (nth 3 args)))
1166 (texinfo-discard-command)
1167 (setq texinfo-last-node name)
1168 (let ((tem (if texinfo-fold-nodename-case (downcase name) name)))
1169 (if (assoc tem texinfo-node-names)
1170 (error "Duplicate node name: %s" name)
1171 (push (list tem) texinfo-node-names)))
1172 (setq texinfo-footnote-number 0)
1173 ;; insert "\n\^_" unconditionally since this is what info is looking for
1174 (insert "\n\^_\nFile: " texinfo-format-filename
1175 ", Node: " name)
1176 (if next
1177 (insert ", Next: " next))
1178 (if prev
1179 (insert ", Prev: " prev))
1180 (if up
1181 (insert ", Up: " up))
1182 (insert ?\n)
1183 (setq texinfo-last-node-pos (point))))
1185 (put 'anchor 'texinfo-format 'texinfo-anchor)
1186 (defun texinfo-anchor ()
1187 (let (anchor-string
1188 (here (- (point) 7)) ; save location of beginning of `@anchor'
1189 (arg (texinfo-parse-arg-discard)))
1190 (if (looking-at " ") ; since a space may be left after -discard
1191 (delete-char 1))
1192 (forward-paragraph)
1193 (let ((end (point)))
1194 (if (save-excursion
1195 (backward-word 1)
1196 (search-forward "@refill" end t))
1197 (setq anchor-string "@anchor-yes-refill")
1198 (setq anchor-string "@anchor-no-refill")))
1199 (goto-char here)
1200 (insert anchor-string "{" arg "}")))
1202 (put 'menu 'texinfo-format 'texinfo-format-menu)
1203 (defun texinfo-format-menu ()
1204 (texinfo-discard-line)
1205 (insert "* Menu:\n\n"))
1207 (put 'menu 'texinfo-end 'texinfo-discard-command)
1209 ;; The @detailmenu should be removed eventually.
1211 ;; According to Karl Berry, 31 August 1996:
1213 ;; You don't like, I don't like it. I agree, it would be better just to
1214 ;; fix the bug [in `makeinfo']. .. At this point, since inserting those
1215 ;; two commands in the Elisp fn is trivial, I don't especially want to
1216 ;; expend more effort...
1218 ;; I added a couple sentences of documentation to the manual (putting the
1219 ;; blame on makeinfo where it belongs :-().
1221 (put 'detailmenu 'texinfo-format 'texinfo-discard-line)
1222 (put 'detailmenu 'texinfo-end 'texinfo-discard-command)
1224 ;; (Also see `texnfo-upd.el')
1227 ;;; Cross references
1229 ;; @xref {NODE, FNAME, NAME, FILE, DOCUMENT}
1230 ;; -> *Note FNAME: (FILE)NODE
1231 ;; If FILE is missing,
1232 ;; *Note FNAME: NODE
1233 ;; If FNAME is empty and NAME is present
1234 ;; *Note NAME: Node
1235 ;; If both NAME and FNAME are missing
1236 ;; *Note NODE::
1237 ;; texinfo ignores the DOCUMENT argument.
1238 ;; -> See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
1239 ;; If FILE is specified, (FILE)NODE is used for xrefs.
1240 ;; If fifth argument DOCUMENT is specified, produces
1241 ;; See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
1242 ;; of DOCUMENT
1244 ;; @ref a reference that does not put `See' or `see' in
1245 ;; the hardcopy and is the same as @xref in Info
1246 (put 'ref 'texinfo-format 'texinfo-format-xref)
1248 (put 'xref 'texinfo-format 'texinfo-format-xref)
1249 (defun texinfo-format-xref ()
1250 (let ((args (texinfo-format-parse-args)))
1251 (texinfo-discard-command)
1252 (insert "*Note ")
1253 (let ((fname (or (nth 1 args) (nth 2 args))))
1254 (if (null (or fname (nth 3 args)))
1255 (insert (car args) "::")
1256 (insert (or fname (car args)) ": ")
1257 (if (nth 3 args)
1258 (insert "(" (nth 3 args) ")"))
1259 (and (car args) (insert (car args)))))))
1261 (put 'pxref 'texinfo-format 'texinfo-format-pxref)
1262 (defun texinfo-format-pxref ()
1263 (texinfo-format-xref)
1264 (or (save-excursion
1265 (forward-char -2)
1266 (looking-at "::"))
1267 (insert ".")))
1269 ;; @inforef{NODE, FNAME, FILE}
1270 ;; Like @xref{NODE, FNAME,,FILE} in texinfo.
1271 ;; In Tex, generates "See Info file FILE, node NODE"
1272 (put 'inforef 'texinfo-format 'texinfo-format-inforef)
1273 (defun texinfo-format-inforef ()
1274 (let ((args (texinfo-format-parse-args)))
1275 (texinfo-discard-command)
1276 (if (nth 1 args)
1277 (insert "*Note " (nth 1 args) ": (" (nth 2 args) ")" (car args))
1278 (insert "*Note " "(" (nth 2 args) ")" (car args) "::"))))
1281 ;;; URL Reference: @uref
1283 ;; @uref produces a reference to a uniform resource locator (URL).
1284 ;; It takes one mandatory argument, the URL, and one optional argument,
1285 ;; the text to display (the default is the URL itself).
1287 (put 'uref 'texinfo-format 'texinfo-format-uref)
1288 (defun texinfo-format-uref ()
1289 "Format URL and optional URL-TITLE.
1290 Insert ` ... ' around URL if no URL-TITLE argument;
1291 otherwise, insert URL-TITLE followed by URL in parentheses."
1292 (let ((args (texinfo-format-parse-args)))
1293 (texinfo-discard-command)
1294 ;; if url-title
1295 (if (nth 1 args)
1296 (insert (nth 1 args) " (" (nth 0 args) ")")
1297 (insert "`" (nth 0 args) "'"))
1298 (goto-char texinfo-command-start)))
1301 ;;; Section headings
1303 (put 'majorheading 'texinfo-format 'texinfo-format-chapter)
1304 (put 'chapheading 'texinfo-format 'texinfo-format-chapter)
1305 (put 'ichapter 'texinfo-format 'texinfo-format-chapter)
1306 (put 'chapter 'texinfo-format 'texinfo-format-chapter)
1307 (put 'iappendix 'texinfo-format 'texinfo-format-chapter)
1308 (put 'appendix 'texinfo-format 'texinfo-format-chapter)
1309 (put 'iunnumbered 'texinfo-format 'texinfo-format-chapter)
1310 (put 'top 'texinfo-format 'texinfo-format-chapter)
1311 (put 'unnumbered 'texinfo-format 'texinfo-format-chapter)
1312 (put 'centerchap 'texinfo-format 'texinfo-format-chapter)
1313 (defun texinfo-format-chapter ()
1314 (texinfo-format-chapter-1 ?*))
1316 (put 'heading 'texinfo-format 'texinfo-format-section)
1317 (put 'isection 'texinfo-format 'texinfo-format-section)
1318 (put 'section 'texinfo-format 'texinfo-format-section)
1319 (put 'iappendixsection 'texinfo-format 'texinfo-format-section)
1320 (put 'appendixsection 'texinfo-format 'texinfo-format-section)
1321 (put 'iappendixsec 'texinfo-format 'texinfo-format-section)
1322 (put 'appendixsec 'texinfo-format 'texinfo-format-section)
1323 (put 'iunnumberedsec 'texinfo-format 'texinfo-format-section)
1324 (put 'unnumberedsec 'texinfo-format 'texinfo-format-section)
1325 (defun texinfo-format-section ()
1326 (texinfo-format-chapter-1 ?=))
1328 (put 'subheading 'texinfo-format 'texinfo-format-subsection)
1329 (put 'isubsection 'texinfo-format 'texinfo-format-subsection)
1330 (put 'subsection 'texinfo-format 'texinfo-format-subsection)
1331 (put 'iappendixsubsec 'texinfo-format 'texinfo-format-subsection)
1332 (put 'appendixsubsec 'texinfo-format 'texinfo-format-subsection)
1333 (put 'iunnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
1334 (put 'unnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
1335 (defun texinfo-format-subsection ()
1336 (texinfo-format-chapter-1 ?-))
1338 (put 'subsubheading 'texinfo-format 'texinfo-format-subsubsection)
1339 (put 'isubsubsection 'texinfo-format 'texinfo-format-subsubsection)
1340 (put 'subsubsection 'texinfo-format 'texinfo-format-subsubsection)
1341 (put 'iappendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1342 (put 'appendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1343 (put 'iunnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1344 (put 'unnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1345 (defun texinfo-format-subsubsection ()
1346 (texinfo-format-chapter-1 ?.))
1348 (defun texinfo-format-chapter-1 (belowchar)
1349 (let ((arg (texinfo-parse-arg-discard)))
1350 (message "Formatting: %s ... " arg) ; So we can see where we are.
1351 (insert ?\n arg ?\n "@SectionPAD " belowchar ?\n)
1352 (forward-line -2)))
1354 (put 'SectionPAD 'texinfo-format 'texinfo-format-sectionpad)
1355 (defun texinfo-format-sectionpad ()
1356 (let ((str (texinfo-parse-arg-discard)))
1357 (forward-char -1)
1358 (let ((column (current-column)))
1359 (forward-char 1)
1360 (while (> column 0)
1361 (insert str)
1362 (setq column (1- column))))
1363 (insert ?\n)))
1366 ;;; Space controlling commands: @. and @:, and the soft hyphen.
1368 (put '\. 'texinfo-format 'texinfo-format-\.)
1369 (defun texinfo-format-\. ()
1370 (texinfo-discard-command)
1371 (insert "."))
1373 (put '\: 'texinfo-format 'texinfo-format-\:)
1374 (defun texinfo-format-\: ()
1375 (texinfo-discard-command))
1377 (put '\- 'texinfo-format 'texinfo-format-soft-hyphen)
1378 (defun texinfo-format-soft-hyphen ()
1379 (texinfo-discard-command))
1382 ;;; @kbdinputstyle, @vskip, headings & footings
1383 ;; These commands for not for Info and should never
1384 ;; appear in an Info environment; but if they do,
1385 ;; this causes them to be discarded.
1387 ;; @kbdinputstyle
1388 (put 'kbdinputstyle 'texinfo-format 'texinfo-discard-line-with-args)
1390 ;; @vskip
1391 (put 'vskip 'texinfo-format 'texinfo-discard-line-with-args)
1393 ;; headings & footings
1394 (put 'evenfooting 'texinfo-format 'texinfo-discard-line-with-args)
1395 (put 'evenheading 'texinfo-format 'texinfo-discard-line-with-args)
1396 (put 'oddfooting 'texinfo-format 'texinfo-discard-line-with-args)
1397 (put 'oddheading 'texinfo-format 'texinfo-discard-line-with-args)
1398 (put 'everyfooting 'texinfo-format 'texinfo-discard-line-with-args)
1399 (put 'everyheading 'texinfo-format 'texinfo-discard-line-with-args)
1402 ;;; @documentdescription ... @end documentdescription
1403 ;; This command is for HTML output and should never
1404 ;; appear in an Info environment; but if it does,
1405 ;; this causes it to be discarded.
1407 (put 'documentdescription 'texinfo-format 'texinfo-format-documentdescription)
1408 (defun texinfo-format-documentdescription ()
1409 (delete-region texinfo-command-start
1410 (progn (re-search-forward "^@end documentdescription[ \t]*\n")
1411 (point))))
1415 ;;; @center, @sp, and @br
1417 (put 'center 'texinfo-format 'texinfo-format-center)
1418 (defun texinfo-format-center ()
1419 (let ((arg (texinfo-parse-expanded-arg)))
1420 (texinfo-discard-command)
1421 (insert arg)
1422 (insert ?\n)
1423 (save-restriction
1424 (goto-char (1- (point)))
1425 (let ((indent-tabs-mode nil))
1426 (center-line)))))
1428 (put 'sp 'texinfo-format 'texinfo-format-sp)
1429 (defun texinfo-format-sp ()
1430 (let* ((arg (texinfo-parse-arg-discard))
1431 (num (read arg)))
1432 (insert-char ?\n num)))
1434 (put 'br 'texinfo-format 'texinfo-format-paragraph-break)
1435 (defun texinfo-format-paragraph-break ()
1436 "Force a paragraph break.
1437 If used within a line, follow `@br' with braces."
1438 (texinfo-optional-braces-discard)
1439 ;; insert one return if at end of line;
1440 ;; else insert two returns, to generate a blank line.
1441 (if (= (following-char) ?\n)
1442 (insert ?\n)
1443 (insert-char ?\n 2)))
1446 ;;; @footnote and @footnotestyle
1448 ;; In Texinfo, footnotes are created with the `@footnote' command.
1449 ;; This command is followed immediately by a left brace, then by the text of
1450 ;; the footnote, and then by a terminating right brace. The
1451 ;; template for a footnote is:
1453 ;; @footnote{TEXT}
1455 ;; Info has two footnote styles:
1457 ;; * In the End of node style, all the footnotes for a single node
1458 ;; are placed at the end of that node. The footnotes are
1459 ;; separated from the rest of the node by a line of dashes with
1460 ;; the word `Footnotes' within it.
1462 ;; * In the Separate node style, all the footnotes for a single node
1463 ;; are placed in an automatically constructed node of their own.
1465 ;; Footnote style is specified by the @footnotestyle command, either
1466 ;; @footnotestyle separate
1467 ;; or
1468 ;; @footnotestyle end
1470 ;; The default is separate
1472 (defvar texinfo-footnote-style "separate"
1473 "Footnote style, either separate or end.")
1475 (put 'footnotestyle 'texinfo-format 'texinfo-footnotestyle)
1476 (defun texinfo-footnotestyle ()
1477 "Specify whether footnotes are at end of node or in separate nodes.
1478 Argument is either end or separate."
1479 (setq texinfo-footnote-style (texinfo-parse-arg-discard)))
1481 (put 'footnote 'texinfo-format 'texinfo-format-footnote)
1482 (defun texinfo-format-footnote ()
1483 "Format a footnote in either end of node or separate node style.
1484 The texinfo-footnote-style variable controls which style is used."
1485 (setq texinfo-footnote-number (1+ texinfo-footnote-number))
1486 (cond ((string= texinfo-footnote-style "end")
1487 (texinfo-format-end-node))
1488 ((string= texinfo-footnote-style "separate")
1489 (texinfo-format-separate-node))))
1491 (defun texinfo-format-separate-node ()
1492 "Format footnote in Separate node style, with notes in own node.
1493 The node is constructed automatically."
1494 (let* (start
1495 (arg (texinfo-parse-line-arg))
1496 (node-name-beginning
1497 (save-excursion
1498 (re-search-backward
1499 "^File: \\w+\\(\\w\\|\\s_\\|\\.\\|,\\)*[ \t]+Node:")
1500 (match-end 0)))
1501 (node-name
1502 (save-excursion
1503 (buffer-substring-no-properties
1504 (progn (goto-char node-name-beginning) ; skip over node command
1505 (skip-chars-forward " \t") ; and over spaces
1506 (point))
1507 (if (search-forward
1509 (save-excursion (end-of-line) (point)) t) ; bound search
1510 (1- (point))
1511 (end-of-line) (point))))))
1512 (texinfo-discard-command) ; remove or insert whitespace, as needed
1513 (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
1514 (point))
1515 (insert (format " (%d) (*Note %s-Footnotes::)"
1516 texinfo-footnote-number node-name))
1517 (fill-paragraph nil)
1518 (save-excursion
1519 (if (re-search-forward "^@node" nil 'move)
1520 (forward-line -1))
1522 ;; two cases: for the first footnote, we must insert a node header;
1523 ;; for the second and subsequent footnotes, we need only insert
1524 ;; the text of the footnote.
1526 (if (save-excursion
1527 (search-backward
1528 (concat node-name "-Footnotes, Up: ")
1529 node-name-beginning
1531 (progn ; already at least one footnote
1532 (setq start (point))
1533 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1534 (fill-region start (point)))
1535 ;; else not yet a footnote
1536 (insert "\n\^_\nFile: " texinfo-format-filename
1537 " Node: " node-name "-Footnotes, Up: " node-name "\n")
1538 (setq start (point))
1539 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1540 (narrow-to-region (save-excursion (goto-char start) (point)) (point))
1541 (fill-region (point-min) (point-max))
1542 (widen)))))
1544 (defun texinfo-format-end-node ()
1545 "Format footnote in the End of node style, with notes at end of node."
1546 (let (start
1547 (arg (texinfo-parse-line-arg)))
1548 (texinfo-discard-command) ; remove or insert whitespace, as needed
1549 (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
1550 (point))
1551 (insert (format " (%d) " texinfo-footnote-number))
1552 (fill-paragraph nil)
1553 (save-excursion
1554 (if (search-forward "\n--------- Footnotes ---------\n" nil t)
1555 (progn ; already have footnote, put new one before end of node
1556 (if (re-search-forward "^@node" nil 'move)
1557 (forward-line -1))
1558 (setq start (point))
1559 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1560 (fill-region start (point)))
1561 ;; else no prior footnote
1562 (if (re-search-forward "^@node" nil 'move)
1563 (forward-line -1))
1564 (insert "\n--------- Footnotes ---------\n")
1565 (setq start (point))
1566 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))))))
1569 ;;; @itemize, @enumerate, and similar commands
1571 ;; @itemize pushes (itemize "COMMANDS" STARTPOS) on texinfo-stack.
1572 ;; @enumerate pushes (enumerate 0 STARTPOS).
1573 ;; @item dispatches to the texinfo-item prop of the first elt of the list.
1574 ;; For itemize, this puts in and rescans the COMMANDS.
1575 ;; For enumerate, this increments the number and puts it in.
1576 ;; In either case, it puts a Backspace at the front of the line
1577 ;; which marks it not to be indented later.
1578 ;; All other lines get indented by 5 when the @end is reached.
1580 (defvar texinfo-stack-depth 0
1581 "Count of number of unpopped texinfo-push-stack calls.
1582 Used by @refill indenting command to avoid indenting within lists, etc.")
1584 (defun texinfo-push-stack (check arg)
1585 (setq texinfo-stack-depth (1+ texinfo-stack-depth))
1586 (push (list check arg texinfo-command-start)
1587 texinfo-stack))
1589 (defun texinfo-pop-stack (check)
1590 (setq texinfo-stack-depth (1- texinfo-stack-depth))
1591 (if (null texinfo-stack)
1592 (error "Unmatched @end %s" check))
1593 (if (not (eq (car (car texinfo-stack)) check))
1594 (error "@end %s matches @%s"
1595 check (car (car texinfo-stack))))
1596 (prog1 (cdr (car texinfo-stack))
1597 (setq texinfo-stack (cdr texinfo-stack))))
1599 (put 'itemize 'texinfo-format 'texinfo-itemize)
1600 (defun texinfo-itemize ()
1601 (texinfo-push-stack
1602 'itemize
1603 (progn (skip-chars-forward " \t")
1604 (if (eolp)
1605 "@bullet"
1606 (texinfo-parse-line-arg))))
1607 (texinfo-discard-line-with-args)
1608 (setq fill-column (- fill-column 5)))
1610 (put 'itemize 'texinfo-end 'texinfo-end-itemize)
1611 (defun texinfo-end-itemize ()
1612 (setq fill-column (+ fill-column 5))
1613 (texinfo-discard-command)
1614 (let ((stacktop
1615 (texinfo-pop-stack 'itemize)))
1616 (texinfo-do-itemize (nth 1 stacktop))))
1618 (put 'enumerate 'texinfo-format 'texinfo-enumerate)
1619 (defun texinfo-enumerate ()
1620 (texinfo-push-stack
1621 'enumerate
1622 (progn (skip-chars-forward " \t")
1623 (if (eolp)
1625 (read (current-buffer)))))
1626 (if (and (symbolp (car (cdr (car texinfo-stack))))
1627 (> 1 (length (symbol-name (car (cdr (car texinfo-stack)))))))
1628 (error
1629 "@enumerate: Use a number or letter, eg: 1, A, a, 3, B, or d." ))
1630 (texinfo-discard-line-with-args)
1631 (setq fill-column (- fill-column 5)))
1633 (put 'enumerate 'texinfo-end 'texinfo-end-enumerate)
1634 (defun texinfo-end-enumerate ()
1635 (setq fill-column (+ fill-column 5))
1636 (texinfo-discard-command)
1637 (let ((stacktop
1638 (texinfo-pop-stack 'enumerate)))
1639 (texinfo-do-itemize (nth 1 stacktop))))
1641 ;; @alphaenumerate never became a standard part of Texinfo
1642 (put 'alphaenumerate 'texinfo-format 'texinfo-alphaenumerate)
1643 (defun texinfo-alphaenumerate ()
1644 (texinfo-push-stack 'alphaenumerate (1- ?a))
1645 (setq fill-column (- fill-column 5))
1646 (texinfo-discard-line))
1648 (put 'alphaenumerate 'texinfo-end 'texinfo-end-alphaenumerate)
1649 (defun texinfo-end-alphaenumerate ()
1650 (setq fill-column (+ fill-column 5))
1651 (texinfo-discard-command)
1652 (let ((stacktop
1653 (texinfo-pop-stack 'alphaenumerate)))
1654 (texinfo-do-itemize (nth 1 stacktop))))
1656 ;; @capsenumerate never became a standard part of Texinfo
1657 (put 'capsenumerate 'texinfo-format 'texinfo-capsenumerate)
1658 (defun texinfo-capsenumerate ()
1659 (texinfo-push-stack 'capsenumerate (1- ?A))
1660 (setq fill-column (- fill-column 5))
1661 (texinfo-discard-line))
1663 (put 'capsenumerate 'texinfo-end 'texinfo-end-capsenumerate)
1664 (defun texinfo-end-capsenumerate ()
1665 (setq fill-column (+ fill-column 5))
1666 (texinfo-discard-command)
1667 (let ((stacktop
1668 (texinfo-pop-stack 'capsenumerate)))
1669 (texinfo-do-itemize (nth 1 stacktop))))
1671 ;; At the @end, indent all the lines within the construct
1672 ;; except those marked with backspace. FROM says where
1673 ;; construct started.
1674 (defun texinfo-do-itemize (from)
1675 (save-excursion
1676 (while (progn (forward-line -1)
1677 (>= (point) from))
1678 (if (= (following-char) ?\b)
1679 (save-excursion
1680 (delete-char 1)
1681 (end-of-line)
1682 (delete-char 6))
1683 (if (not (looking-at "[ \t]*$"))
1684 (save-excursion (insert " ")))))))
1686 (put 'item 'texinfo-format 'texinfo-item)
1687 (put 'itemx 'texinfo-format 'texinfo-item)
1688 (defun texinfo-item ()
1689 (funcall (get (car (car texinfo-stack)) 'texinfo-item)))
1691 (put 'itemize 'texinfo-item 'texinfo-itemize-item)
1692 (defun texinfo-itemize-item ()
1693 ;; (texinfo-discard-line) ; Did not handle text on same line as @item.
1694 (delete-region (1+ (point)) (save-excursion (beginning-of-line) (point)))
1695 (if (looking-at "[ \t]*[^ \t\n]+")
1696 ;; Text on same line as @item command.
1697 (insert "\b " (nth 1 (car texinfo-stack)) " \n")
1698 ;; Else text on next line.
1699 (insert "\b " (nth 1 (car texinfo-stack)) " "))
1700 (forward-line -1))
1702 (put 'enumerate 'texinfo-item 'texinfo-enumerate-item)
1703 (defun texinfo-enumerate-item ()
1704 (texinfo-discard-line)
1705 (let (enumerating-symbol)
1706 (cond ((integerp (car (cdr (car texinfo-stack))))
1707 (setq enumerating-symbol (car (cdr (car texinfo-stack))))
1708 (insert ?\b (format "%3d. " enumerating-symbol) ?\n)
1709 (setcar (cdr (car texinfo-stack)) (1+ enumerating-symbol)))
1710 ((symbolp (car (cdr (car texinfo-stack))))
1711 (setq enumerating-symbol
1712 (symbol-name (car (cdr (car texinfo-stack)))))
1713 (if (or (equal ?\[ (string-to-char enumerating-symbol))
1714 (equal ?\{ (string-to-char enumerating-symbol)))
1715 (error
1716 "Too many items in enumerated list; alphabet ends at Z."))
1717 (insert ?\b (format "%3s. " enumerating-symbol) ?\n)
1718 (setcar (cdr (car texinfo-stack))
1719 (make-symbol
1720 (char-to-string
1722 (string-to-char enumerating-symbol))))))
1724 (error
1725 "@enumerate: Use a number or letter, eg: 1, A, a, 3, B or d." )))
1726 (forward-line -1)))
1728 (put 'alphaenumerate 'texinfo-item 'texinfo-alphaenumerate-item)
1729 (defun texinfo-alphaenumerate-item ()
1730 (texinfo-discard-line)
1731 (let ((next (1+ (car (cdr (car texinfo-stack))))))
1732 (if (> next ?z)
1733 (error "More than 26 items in @alphaenumerate; get a bigger alphabet"))
1734 (setcar (cdr (car texinfo-stack)) next)
1735 (insert "\b " next ". \n"))
1736 (forward-line -1))
1738 (put 'capsenumerate 'texinfo-item 'texinfo-capsenumerate-item)
1739 (defun texinfo-capsenumerate-item ()
1740 (texinfo-discard-line)
1741 (let ((next (1+ (car (cdr (car texinfo-stack))))))
1742 (if (> next ?Z)
1743 (error "More than 26 items in @capsenumerate; get a bigger alphabet"))
1744 (setcar (cdr (car texinfo-stack)) next)
1745 (insert "\b " next ". \n"))
1746 (forward-line -1))
1749 ;;; @table
1751 ;; The `@table' command produces two-column tables.
1753 (put 'table 'texinfo-format 'texinfo-table)
1754 (defun texinfo-table ()
1755 (texinfo-push-stack
1756 'table
1757 (progn (skip-chars-forward " \t")
1758 (if (eolp)
1759 "@asis"
1760 (texinfo-parse-line-arg))))
1761 (texinfo-discard-line-with-args)
1762 (setq fill-column (- fill-column 5)))
1764 (put 'table 'texinfo-item 'texinfo-table-item)
1765 (defun texinfo-table-item ()
1766 (let ((arg (texinfo-parse-arg-discard))
1767 (itemfont (car (cdr (car texinfo-stack)))))
1768 (insert ?\b itemfont ?\{ arg "}\n \n"))
1769 (forward-line -2))
1771 (put 'table 'texinfo-end 'texinfo-end-table)
1772 (defun texinfo-end-table ()
1773 (setq fill-column (+ fill-column 5))
1774 (texinfo-discard-command)
1775 (let ((stacktop
1776 (texinfo-pop-stack 'table)))
1777 (texinfo-do-itemize (nth 1 stacktop))))
1779 ;; @description appears to be an undocumented variant on @table that
1780 ;; does not require an arg. It fails in texinfo.tex 2.58 and is not
1781 ;; part of makeinfo.c The command appears to be a relic of the past.
1782 (put 'description 'texinfo-end 'texinfo-end-table)
1783 (put 'description 'texinfo-format 'texinfo-description)
1784 (defun texinfo-description ()
1785 (texinfo-push-stack 'table "@asis")
1786 (setq fill-column (- fill-column 5))
1787 (texinfo-discard-line))
1790 ;;; @ftable, @vtable
1792 ;; The `@ftable' and `@vtable' commands are like the `@table' command
1793 ;; but they also insert each entry in the first column of the table
1794 ;; into the function or variable index.
1796 ;; Handle the @ftable and @vtable commands:
1798 (put 'ftable 'texinfo-format 'texinfo-ftable)
1799 (put 'vtable 'texinfo-format 'texinfo-vtable)
1801 (defun texinfo-ftable () (texinfo-indextable 'ftable))
1802 (defun texinfo-vtable () (texinfo-indextable 'vtable))
1804 (defun texinfo-indextable (table-type)
1805 (texinfo-push-stack table-type (texinfo-parse-arg-discard))
1806 (setq fill-column (- fill-column 5)))
1808 ;; Handle the @item commands within ftable and vtable:
1810 (put 'ftable 'texinfo-item 'texinfo-ftable-item)
1811 (put 'vtable 'texinfo-item 'texinfo-vtable-item)
1813 (defun texinfo-ftable-item () (texinfo-indextable-item 'texinfo-findex))
1814 (defun texinfo-vtable-item () (texinfo-indextable-item 'texinfo-vindex))
1816 (defun texinfo-indextable-item (index-type)
1817 (let ((item (texinfo-parse-arg-discard))
1818 (itemfont (car (cdr (car texinfo-stack))))
1819 (indexvar index-type))
1820 (insert ?\b itemfont ?\{ item "}\n \n")
1821 (set indexvar
1822 (cons
1823 (list item texinfo-last-node)
1824 (symbol-value indexvar)))
1825 (forward-line -2)))
1827 ;; Handle @end ftable, @end vtable
1829 (put 'ftable 'texinfo-end 'texinfo-end-ftable)
1830 (put 'vtable 'texinfo-end 'texinfo-end-vtable)
1832 (defun texinfo-end-ftable () (texinfo-end-indextable 'ftable))
1833 (defun texinfo-end-vtable () (texinfo-end-indextable 'vtable))
1835 (defun texinfo-end-indextable (table-type)
1836 (setq fill-column (+ fill-column 5))
1837 (texinfo-discard-command)
1838 (let ((stacktop
1839 (texinfo-pop-stack table-type)))
1840 (texinfo-do-itemize (nth 1 stacktop))))
1843 ;;; @multitable ... @end multitable
1845 ;; Produce a multi-column table, with as many columns as desired.
1847 ;; A multi-column table has this template:
1849 ;; @multitable {A1} {A2} {A3}
1850 ;; @item A1 @tab A2 @tab A3
1851 ;; @item B1 @tab B2 @tab B3
1852 ;; @item C1 @tab C2 @tab C3
1853 ;; @end multitable
1855 ;; where the width of the text in brackets specifies the width of the
1856 ;; respective column.
1858 ;; Or else:
1860 ;; @multitable @columnfractions .25 .3 .45
1861 ;; @item A1 @tab A2 @tab A3
1862 ;; @item B1 @tab B2 @tab B3
1863 ;; @end multitable
1865 ;; where the fractions specify the width of each column as a percent
1866 ;; of the current width of the text (i.e., of the fill-column).
1868 ;; Long lines of text are filled within columns.
1870 ;; Using the Emacs Lisp formatter, texinfmt.el,
1871 ;; the whitespace between columns can be increased by setting
1872 ;; `texinfo-extra-inter-column-width' to a value greater than 0. By default,
1873 ;; there is at least one blank space between columns.
1875 ;; The Emacs Lisp formatter, texinfmt.el, ignores the following four
1876 ;; commands that are defined in texinfo.tex for printed output.
1878 ;; @multitableparskip,
1879 ;; @multitableparindent,
1880 ;; @multitablecolmargin,
1881 ;; @multitablelinespace.
1883 ;; How @multitable works.
1884 ;; =====================
1886 ;; `texinfo-multitable' reads the @multitable line and determines from it
1887 ;; how wide each column should be.
1889 ;; Also, it pushes this information, along with an identifying symbol,
1890 ;; onto the `texinfo-stack'. At the @end multitable command, the stack
1891 ;; is checked for its matching @multitable command, and then popped, or
1892 ;; else an error is signaled. Also, this command pushes the location of
1893 ;; the start of the table onto the stack.
1895 ;; `texinfo-end-multitable' checks the `texinfo-stack' that the @end
1896 ;; multitable truly is ending a corresponding beginning, and if it is,
1897 ;; pops the stack.
1899 ;; `texinfo-multitable-widths' is called by `texinfo-multitable'.
1900 ;; The function returns a list of the widths of each column in a
1901 ;; multi-column table, based on the information supplied by the arguments
1902 ;; to the @multitable command (by arguments, I mean the text on the rest
1903 ;; of the @multitable line, not the remainder of the multi-column table
1904 ;; environment).
1906 ;; `texinfo-multitable-item' formats a row within a multicolumn table.
1907 ;; This command is executed when texinfmt sees @item inside @multitable.
1908 ;; Cells in row are separated by `@tab's. Widths of cells are specified
1909 ;; by the arguments in the @multitable line. Cells are filled. All cells
1910 ;; are made to be the same height by padding their bottoms, as needed,
1911 ;; with blanks.
1913 ;; `texinfo-multitable-extract-row' is called by `texinfo-multitable-item'.
1914 ;; This function returns the text in a multitable row, as a string.
1915 ;; The start of a row is marked by an @item and the end of row is the
1916 ;; beginning of next @item or beginning of the @end multitable line.
1917 ;; Cells within a row are separated by @tab.
1919 ;; Note that @tab, the cell separators, are not treated as independent
1920 ;; Texinfo commands.
1922 (defvar texinfo-extra-inter-column-width 0
1923 "*Number of extra spaces between entries (columns) in @multitable.")
1925 (defvar texinfo-multitable-buffer-name "*multitable-temporary-buffer*")
1926 (defvar texinfo-multitable-rectangle-name "texinfo-multitable-temp-")
1928 ;; These commands are defined in texinfo.tex for printed output.
1929 (put 'multitableparskip 'texinfo-format 'texinfo-discard-line-with-args)
1930 (put 'multitableparindent 'texinfo-format 'texinfo-discard-line-with-args)
1931 (put 'multitablecolmargin 'texinfo-format 'texinfo-discard-line-with-args)
1932 (put 'multitablelinespace 'texinfo-format 'texinfo-discard-line-with-args)
1934 (put 'multitable 'texinfo-format 'texinfo-multitable)
1936 (defun texinfo-multitable ()
1937 "Produce multi-column tables.
1939 A multi-column table has this template:
1941 @multitable {A1} {A2} {A3}
1942 @item A1 @tab A2 @tab A3
1943 @item B1 @tab B2 @tab B3
1944 @item C1 @tab C2 @tab C3
1945 @end multitable
1947 where the width of the text in brackets specifies the width of the
1948 respective column.
1950 Or else:
1952 @multitable @columnfractions .25 .3 .45
1953 @item A1 @tab A2 @tab A3
1954 @item B1 @tab B2 @tab B3
1955 @end multitable
1957 where the fractions specify the width of each column as a percent
1958 of the current width of the text (i.e., of the `fill-column').
1960 Long lines of text are filled within columns.
1962 Using the Emacs Lisp formatter, texinfmt.el,
1963 the whitespace between columns can be increased by setting
1964 `texinfo-extra-inter-column-width' to a value greater than 0. By default,
1965 there is at least one blank space between columns.
1967 The Emacs Lisp formatter, texinfmt.el, ignores the following four
1968 commands that are defined in texinfo.tex for printed output.
1970 @multitableparskip,
1971 @multitableparindent,
1972 @multitablecolmargin,
1973 @multitablelinespace."
1975 ;; This function pushes information onto the `texinfo-stack'.
1976 ;; A stack element consists of:
1977 ;; - type-of-command, i.e., multitable
1978 ;; - the information about column widths, and
1979 ;; - the position of texinfo-command-start.
1980 ;; e.g., ('multitable (1 2 3 4) 123)
1981 ;; The command line is then deleted.
1982 (texinfo-push-stack
1983 'multitable
1984 ;; push width information on stack
1985 (texinfo-multitable-widths))
1986 (texinfo-discard-line-with-args))
1988 (put 'multitable 'texinfo-end 'texinfo-end-multitable)
1989 (defun texinfo-end-multitable ()
1990 "Discard the @end multitable line and pop the stack of multitable."
1991 (texinfo-discard-command)
1992 (texinfo-pop-stack 'multitable))
1994 (defun texinfo-multitable-widths ()
1995 "Return list of widths of each column in a multi-column table."
1996 (let (texinfo-multitable-width-list)
1997 ;; Fractions format:
1998 ;; @multitable @columnfractions .25 .3 .45
2000 ;; Template format:
2001 ;; @multitable {Column 1 template} {Column 2} {Column 3 example}
2002 ;; Place point before first argument
2003 (skip-chars-forward " \t")
2004 (cond
2005 ;; Check for common misspelling
2006 ((looking-at "@columnfraction ")
2007 (error "In @multitable, @columnfractions misspelled"))
2008 ;; Case 1: @columnfractions .25 .3 .45
2009 ((looking-at "@columnfractions")
2010 (forward-word 1)
2011 (while (not (eolp))
2012 (push (truncate
2014 (* fill-column (read (get-buffer (current-buffer))))))
2015 texinfo-multitable-width-list)))
2017 ;; Case 2: {Column 1 template} {Column 2} {Column 3 example}
2018 ((looking-at "{")
2019 (let ((start-of-templates (point)))
2020 (while (not (eolp))
2021 (skip-chars-forward " \t")
2022 (let* ((start-of-template (1+ (point)))
2023 (end-of-template
2024 ;; forward-sexp works with braces in Texinfo mode
2025 (progn (forward-sexp 1) (1- (point)))))
2026 (push (- end-of-template start-of-template)
2027 texinfo-multitable-width-list)
2028 ;; Remove carriage return from within a template, if any.
2029 ;; This helps those those who want to use more than
2030 ;; one line's worth of words in @multitable line.
2031 (narrow-to-region start-of-template end-of-template)
2032 (goto-char (point-min))
2033 (while (search-forward "
2034 " nil t)
2035 (delete-char -1))
2036 (goto-char (point-max))
2037 (widen)
2038 (forward-char 1)))))
2040 ;; Case 3: Trouble
2042 (error
2043 "You probably need to specify column widths for @multitable correctly.")))
2044 ;; Check whether columns fit on page.
2045 (let ((desired-columns
2047 ;; between column spaces
2048 (length texinfo-multitable-width-list)
2049 ;; additional between column spaces, if any
2050 texinfo-extra-inter-column-width
2051 ;; sum of spaces for each entry
2052 (apply '+ texinfo-multitable-width-list))))
2053 (if (> desired-columns fill-column)
2054 (error
2055 "Multi-column table width, %d chars, is greater than page width, %d chars."
2056 desired-columns fill-column)))
2057 texinfo-multitable-width-list))
2059 ;; @item A1 @tab A2 @tab A3
2060 (defun texinfo-multitable-extract-row ()
2061 "Return multitable row, as a string.
2062 End of row is beginning of next @item or beginning of @end.
2063 Cells within rows are separated by @tab."
2064 (skip-chars-forward " \t")
2065 (let* ((start (point))
2066 (end (progn
2067 (re-search-forward "@item\\|@end")
2068 (match-beginning 0)))
2069 (row (progn (goto-char end)
2070 (skip-chars-backward " ")
2071 ;; remove whitespace at end of argument
2072 (delete-region (point) end)
2073 (buffer-substring-no-properties start (point)))))
2074 (delete-region texinfo-command-start end)
2075 row))
2077 (put 'multitable 'texinfo-item 'texinfo-multitable-item)
2078 (defun texinfo-multitable-item ()
2079 "Format a row within a multicolumn table.
2080 Cells in row are separated by @tab.
2081 Widths of cells are specified by the arguments in the @multitable line.
2082 All cells are made to be the same height.
2083 This command is executed when texinfmt sees @item inside @multitable."
2084 (let ((original-buffer (current-buffer))
2085 (table-widths (reverse (car (cdr (car texinfo-stack)))))
2086 (existing-fill-column fill-column)
2087 start
2089 (table-column 0)
2090 (table-entry-height 0)
2091 ;; unformatted row looks like: A1 @tab A2 @tab A3
2092 ;; extract-row command deletes the source line in the table.
2093 (unformated-row (texinfo-multitable-extract-row)))
2094 ;; Use a temporary buffer
2095 (set-buffer (get-buffer-create texinfo-multitable-buffer-name))
2096 (delete-region (point-min) (point-max))
2097 (insert unformated-row)
2098 (goto-char (point-min))
2099 ;; 1. Check for correct number of @tab in line.
2100 (let ((tab-number 1)) ; one @tab between two columns
2101 (while (search-forward "@tab" nil t)
2102 (setq tab-number (1+ tab-number)))
2103 (let ((needed-tabs (- (length table-widths) tab-number)))
2104 (when (> needed-tabs 0)
2105 (goto-char (point-min))
2106 (end-of-line)
2107 (while (> needed-tabs 0)
2108 (insert "@w{ }\n@tab")
2109 (setq needed-tabs (1- needed-tabs))
2110 (message
2111 "Added @tabs and empty spaces to a @multitable row")))))
2112 (goto-char (point-min))
2113 ;; 2. Format each cell, and copy to a rectangle
2114 ;; buffer looks like this: A1 @tab A2 @tab A3
2115 ;; Cell #1: format up to @tab
2116 ;; Cell #2: format up to @tab
2117 ;; Cell #3: format up to eob
2118 (while (not (eobp))
2119 (setq start (point))
2120 (setq end (save-excursion
2121 (if (search-forward "@tab" nil 'move)
2122 ;; Delete the @tab command, including the @-sign
2123 (delete-region
2124 (point)
2125 (progn (forward-word -1) (1- (point)))))
2126 (point)))
2127 ;; Set fill-column *wider* than needed to produce inter-column space
2128 (setq fill-column (+ 1
2129 texinfo-extra-inter-column-width
2130 (nth table-column table-widths)))
2131 (narrow-to-region start end)
2132 ;; Remove whitespace before and after entry.
2133 (skip-chars-forward " ")
2134 (delete-region (point) (save-excursion (beginning-of-line) (point)))
2135 (goto-char (point-max))
2136 (skip-chars-backward " ")
2137 (delete-region (point) (save-excursion (end-of-line) (point)))
2138 ;; Temporarily set texinfo-stack to nil so texinfo-format-scan
2139 ;; does not see an unterminated @multitable.
2140 (let (texinfo-stack) ; nil
2141 (texinfo-format-scan))
2142 (let (fill-prefix) ; no fill prefix
2143 (fill-region (point-min) (point-max)))
2144 (setq table-entry-height
2145 (max table-entry-height (count-lines (point-min) (point-max))))
2146 ;; 3. Move point to end of bottom line, and pad that line to fill column.
2147 (goto-char (point-min))
2148 (forward-line (1- table-entry-height))
2149 (let* ((beg (point)) ; beginning of line
2150 ;; add one more space for inter-column spacing
2151 (needed-whitespace
2153 (- fill-column
2155 (progn (end-of-line) (point)) ; end of existing line
2156 beg)))))
2157 (insert (make-string
2158 (if (> needed-whitespace 0) needed-whitespace 1)
2159 ? )))
2160 ;; now, put formatted cell into a rectangle
2161 (set (intern (concat texinfo-multitable-rectangle-name
2162 (int-to-string table-column)))
2163 (extract-rectangle (point-min) (point)))
2164 (delete-region (point-min) (point))
2165 (goto-char (point-max))
2166 (setq table-column (1+ table-column))
2167 (widen))
2168 ;; 4. Add extra lines to rectangles so all are of same height
2169 (let ((total-number-of-columns table-column)
2170 (column-number 0)
2171 here)
2172 (while (> table-column 0)
2173 (let ((this-rectangle (int-to-string table-column)))
2174 (while (< (length this-rectangle) table-entry-height)
2175 (setq this-rectangle (append this-rectangle '("")))))
2176 (setq table-column (1- table-column)))
2177 ;; 5. Insert formatted rectangles in original buffer
2178 (switch-to-buffer original-buffer)
2179 (open-line table-entry-height)
2180 (while (< column-number total-number-of-columns)
2181 (setq here (point))
2182 (insert-rectangle
2183 (eval (intern
2184 (concat texinfo-multitable-rectangle-name
2185 (int-to-string column-number)))))
2186 (goto-char here)
2187 (end-of-line)
2188 (setq column-number (1+ column-number))))
2189 (kill-buffer texinfo-multitable-buffer-name)
2190 (setq fill-column existing-fill-column)))
2193 ;;; @image
2194 ;; Use only the FILENAME argument to the command.
2195 ;; In Info, ignore the other arguments.
2197 (put 'image 'texinfo-format 'texinfo-format-image)
2198 (defun texinfo-format-image ()
2199 "Insert an image from an an file ending in .txt.
2200 Use only the FILENAME arg; for Info, ignore the other arguments to @image."
2201 (let ((args (texinfo-format-parse-args))
2202 filename)
2203 (when (null (nth 0 args))
2204 (error "Invalid image command"))
2205 (texinfo-discard-command)
2206 ;; makeinfo uses FILENAME.txt
2207 (setq filename (format "%s.txt" (nth 0 args)))
2208 (message "Reading included file: %s" filename)
2209 ;; verbatim for Info output
2210 (goto-char (+ (point) (cadr (insert-file-contents filename))))
2211 (message "Reading included file: %s...done" filename)))
2214 ;;; @ifinfo, @iftex, @tex, @ifhtml, @html, @ifplaintext, @ifxml, @xml
2215 ;; @ifnottex, @ifnotinfo, @ifnothtml, @ifnotplaintext, @ifnotxml
2217 (put 'ifinfo 'texinfo-format 'texinfo-discard-line)
2218 (put 'ifinfo 'texinfo-end 'texinfo-discard-command)
2220 (put 'iftex 'texinfo-format 'texinfo-format-iftex)
2221 (defun texinfo-format-iftex ()
2222 (delete-region texinfo-command-start
2223 (re-search-forward "@end iftex[ \t]*\n")))
2225 (put 'ifhtml 'texinfo-format 'texinfo-format-ifhtml)
2226 (defun texinfo-format-ifhtml ()
2227 (delete-region texinfo-command-start
2228 (re-search-forward "@end ifhtml[ \t]*\n")))
2230 (put 'ifplaintext 'texinfo-format 'texinfo-format-ifplaintext)
2231 (defun texinfo-format-ifplaintext ()
2232 (delete-region texinfo-command-start
2233 (re-search-forward "@end ifplaintext[ \t]*\n")))
2235 (put 'ifxml 'texinfo-format 'texinfo-format-ifxml)
2236 (defun texinfo-format-ifxml ()
2237 (delete-region texinfo-command-start
2238 (progn (re-search-forward "^@end ifxml[ \t]*\n")
2239 (point))))
2241 (put 'tex 'texinfo-format 'texinfo-format-tex)
2242 (defun texinfo-format-tex ()
2243 (delete-region texinfo-command-start
2244 (re-search-forward "@end tex[ \t]*\n")))
2246 (put 'html 'texinfo-format 'texinfo-format-html)
2247 (defun texinfo-format-html ()
2248 (delete-region texinfo-command-start
2249 (re-search-forward "@end html[ \t]*\n")))
2251 (put 'xml 'texinfo-format 'texinfo-format-xml)
2252 (defun texinfo-format-xml ()
2253 (delete-region texinfo-command-start
2254 (progn (re-search-forward "^@end xml[ \t]*\n")
2255 (point))))
2257 (put 'ifnotinfo 'texinfo-format 'texinfo-format-ifnotinfo)
2258 (defun texinfo-format-ifnotinfo ()
2259 (delete-region texinfo-command-start
2260 (re-search-forward "@end ifnotinfo[ \t]*\n")))
2262 (put 'ifnotplaintext 'texinfo-format 'texinfo-discard-line)
2263 (put 'ifnotplaintext 'texinfo-end 'texinfo-discard-command)
2265 (put 'ifnottex 'texinfo-format 'texinfo-discard-line)
2266 (put 'ifnottex 'texinfo-end 'texinfo-discard-command)
2268 (put 'ifnothtml 'texinfo-format 'texinfo-discard-line)
2269 (put 'ifnothtml 'texinfo-end 'texinfo-discard-command)
2271 (put 'ifnotxml 'texinfo-format 'texinfo-discard-line)
2272 (put 'ifnotxml 'texinfo-end 'texinfo-discard-command)
2275 ;;; @titlepage
2277 (put 'titlepage 'texinfo-format 'texinfo-format-titlepage)
2278 (defun texinfo-format-titlepage ()
2279 (delete-region texinfo-command-start
2280 (re-search-forward "@end titlepage[ \t]*\n")))
2282 (put 'endtitlepage 'texinfo-format 'texinfo-discard-line)
2284 ;; @titlespec an alternative titling command; ignored by Info
2286 (put 'titlespec 'texinfo-format 'texinfo-format-titlespec)
2287 (defun texinfo-format-titlespec ()
2288 (delete-region texinfo-command-start
2289 (re-search-forward "@end titlespec[ \t]*\n")))
2291 (put 'endtitlespec 'texinfo-format 'texinfo-discard-line)
2294 ;;; @today
2296 (put 'today 'texinfo-format 'texinfo-format-today)
2298 ;; Produces Day Month Year style of output. eg `1 Jan 1900'
2299 ;; The `@today{}' command requires a pair of braces, like `@dots{}'.
2300 (defun texinfo-format-today ()
2301 (texinfo-parse-arg-discard)
2302 (insert (format-time-string "%e %b %Y")))
2305 ;;; @timestamp{}
2306 ;; Produce `Day Month Year Hour:Min' style of output.
2307 ;; eg `1 Jan 1900 13:52'
2309 (put 'timestamp 'texinfo-format 'texinfo-format-timestamp)
2311 ;; The `@timestamp{}' command requires a pair of braces, like `@dots{}'.
2312 (defun texinfo-format-timestamp ()
2313 "Insert the current local time and date."
2314 (texinfo-parse-arg-discard)
2315 ;; For seconds and time zone, replace format string with "%e %b %Y %T %Z"
2316 (insert (format-time-string "%e %b %Y %R")))
2319 ;;; @ignore
2321 (put 'ignore 'texinfo-format 'texinfo-format-ignore)
2322 (defun texinfo-format-ignore ()
2323 (delete-region texinfo-command-start
2324 (re-search-forward "@end ignore[ \t]*\n")))
2326 (put 'endignore 'texinfo-format 'texinfo-discard-line)
2329 ;;; Define the Info enclosure command: @definfoenclose
2331 ;; A `@definfoenclose' command may be used to define a highlighting
2332 ;; command for Info, but not for TeX. A command defined using
2333 ;; `@definfoenclose' marks text by enclosing it in strings that precede
2334 ;; and follow the text.
2336 ;; Presumably, if you define a command with `@definfoenclose` for Info,
2337 ;; you will also define the same command in the TeX definitions file,
2338 ;; `texinfo.tex' in a manner appropriate for typesetting.
2340 ;; Write a `@definfoenclose' command on a line and follow it with three
2341 ;; arguments separated by commas (commas are used as separators in an
2342 ;; `@node' line in the same way). The first argument to
2343 ;; `@definfoenclose' is the @-command name \(without the `@'\); the
2344 ;; second argument is the Info start delimiter string; and the third
2345 ;; argument is the Info end delimiter string. The latter two arguments
2346 ;; enclose the highlighted text in the Info file. A delimiter string
2347 ;; may contain spaces. Neither the start nor end delimiter is
2348 ;; required. However, if you do not provide a start delimiter, you
2349 ;; must follow the command name with two commas in a row; otherwise,
2350 ;; the Info formatting commands will misinterpret the end delimiter
2351 ;; string as a start delimiter string.
2353 ;; If you do a @definfoenclose{} on the name of a pre-defined macro (such
2354 ;; as @emph{}, @strong{}, @tt{}, or @i{}) the enclosure definition will
2355 ;; override the built-in definition.
2357 ;; An enclosure command defined this way takes one argument in braces.
2359 ;; For example, you can write:
2361 ;; @ifinfo
2362 ;; @definfoenclose phoo, //, \\
2363 ;; @end ifinfo
2365 ;; near the beginning of a Texinfo file at the beginning of the lines
2366 ;; to define `@phoo' as an Info formatting command that inserts `//'
2367 ;; before and `\\' after the argument to `@phoo'. You can then write
2368 ;; `@phoo{bar}' wherever you want `//bar\\' highlighted in Info.
2370 ;; Also, for TeX formatting, you could write
2372 ;; @iftex
2373 ;; @global@let@phoo=@i
2374 ;; @end iftex
2376 ;; to define `@phoo' as a command that causes TeX to typeset
2377 ;; the argument to `@phoo' in italics.
2379 ;; Note that each definition applies to its own formatter: one for TeX,
2380 ;; the other for texinfo-format-buffer or texinfo-format-region.
2382 ;; Here is another example: write
2384 ;; @definfoenclose headword, , :
2386 ;; near the beginning of the file, to define `@headword' as an Info
2387 ;; formatting command that inserts nothing before and a colon after the
2388 ;; argument to `@headword'.
2390 (put 'definfoenclose 'texinfo-format 'texinfo-define-info-enclosure)
2391 (defun texinfo-define-info-enclosure ()
2392 (let* ((args (texinfo-format-parse-line-args))
2393 (command-name (nth 0 args))
2394 (beginning-delimiter (or (nth 1 args) ""))
2395 (end-delimiter (or (nth 2 args) "")))
2396 (texinfo-discard-command)
2397 (push (list command-name
2398 (list
2399 beginning-delimiter
2400 end-delimiter))
2401 texinfo-enclosure-list)))
2404 ;;; @alias
2406 (put 'alias 'texinfo-format 'texinfo-alias)
2407 (defun texinfo-alias ()
2408 (let ((start (1- (point)))
2409 args)
2410 (skip-chars-forward " ")
2411 (save-excursion (end-of-line) (setq texinfo-command-end (point)))
2412 (if (not (looking-at "\\([^=]+\\)=\\(.*\\)"))
2413 (error "Invalid alias command")
2414 (push (cons
2415 (match-string-no-properties 1)
2416 (match-string-no-properties 2))
2417 texinfo-alias-list)
2418 (texinfo-discard-command))
2423 ;;; @var, @code and the like
2425 (put 'var 'texinfo-format 'texinfo-format-var)
2426 ;; @sc a small caps font for TeX; formatted as `var' in Info
2427 (put 'sc 'texinfo-format 'texinfo-format-var)
2428 ;; @acronym for abbreviations in all caps, such as `NASA'.
2429 ;; Convert all letters to uppercase if they are not already.
2430 (put 'acronym 'texinfo-format 'texinfo-format-var)
2431 (defun texinfo-format-var ()
2432 (let ((arg (texinfo-parse-expanded-arg)))
2433 (texinfo-discard-command)
2434 (insert (upcase arg))))
2436 (put 'cite 'texinfo-format 'texinfo-format-code)
2437 (put 'code 'texinfo-format 'texinfo-format-code)
2438 ;; @command (for command names)
2439 (put 'command 'texinfo-format 'texinfo-format-code)
2440 ;; @env (for environment variables)
2441 (put 'env 'texinfo-format 'texinfo-format-code)
2442 (put 'file 'texinfo-format 'texinfo-format-code)
2443 (put 'samp 'texinfo-format 'texinfo-format-code)
2444 (put 'url 'texinfo-format 'texinfo-format-code)
2445 (defun texinfo-format-code ()
2446 (insert "`" (texinfo-parse-arg-discard) "'")
2447 (goto-char texinfo-command-start))
2449 ;; @option (for command-line options) must be different from @code
2450 ;; because of its special formatting in @table; namely that it does
2451 ;; not lead to inserted ` ... ' in a table, but does elsewhere.
2452 (put 'option 'texinfo-format 'texinfo-format-option)
2453 (defun texinfo-format-option ()
2454 "Insert ` ... ' around arg unless inside a table; in that case, no quotes."
2455 ;; `looking-at-backward' not available in v. 18.57, 20.2
2456 (if (not (search-backward "\b" ; searched-for character is a control-H
2457 (save-excursion (beginning-of-line) (point))
2459 (insert "`" (texinfo-parse-arg-discard) "'")
2460 (insert (texinfo-parse-arg-discard)))
2461 (goto-char texinfo-command-start))
2463 (put 'emph 'texinfo-format 'texinfo-format-emph)
2464 (put 'strong 'texinfo-format 'texinfo-format-emph)
2465 (defun texinfo-format-emph ()
2466 (insert "*" (texinfo-parse-arg-discard) "*")
2467 (goto-char texinfo-command-start))
2469 (put 'dfn 'texinfo-format 'texinfo-format-defn)
2470 (put 'defn 'texinfo-format 'texinfo-format-defn)
2471 (defun texinfo-format-defn ()
2472 (insert "\"" (texinfo-parse-arg-discard) "\"")
2473 (goto-char texinfo-command-start))
2475 (put 'email 'texinfo-format 'texinfo-format-email)
2476 (defun texinfo-format-email ()
2477 "Format email address and optional following full name.
2478 Insert full name, if present, followed by email address
2479 surrounded by in angle brackets."
2480 (let ((args (texinfo-format-parse-args)))
2481 (texinfo-discard-command)
2482 ;; if full-name
2483 (if (nth 1 args)
2484 (insert (nth 1 args) " "))
2485 (insert "<" (nth 0 args) ">")))
2487 (put 'key 'texinfo-format 'texinfo-format-key)
2488 ;; I've decided not want to have angle brackets around these -- rms.
2489 (defun texinfo-format-key ()
2490 (insert (texinfo-parse-arg-discard))
2491 (goto-char texinfo-command-start))
2493 ;; @verb{<char>TEXT<char>} (in `makeinfo' 4.1 and later)
2494 (put 'verb 'texinfo-format 'texinfo-format-verb)
2495 (defun texinfo-format-verb ()
2496 "Format text between non-quoted unique delimiter characters verbatim.
2497 Enclose the verbatim text, including the delimiters, in braces. Print
2498 text exactly as written (but not the delimiters) in a fixed-width.
2500 For example, @verb\{|@|\} results in @ and
2501 @verb\{+@'e?`!`+} results in @'e?`!`."
2503 (let ((delimiter (buffer-substring-no-properties
2504 (1+ texinfo-command-end) (+ 2 texinfo-command-end))))
2505 (unless (looking-at "{")
2506 (error "Not found: @verb start brace"))
2507 (delete-region texinfo-command-start (+ 2 texinfo-command-end))
2508 (search-forward delimiter))
2509 (delete-backward-char 1)
2510 (unless (looking-at "}")
2511 (error "Not found: @verb end brace"))
2512 (delete-char 1))
2514 ;; as of 2002 Dec 10
2515 ;; see (texinfo)Block Enclosing Commands
2516 ;; need: @verbatim
2518 ;; as of 2002 Dec 10
2519 ;; see (texinfo)verbatiminclude
2520 ;; need: @verbatiminclude FILENAME
2522 (put 'bullet 'texinfo-format 'texinfo-format-bullet)
2523 (defun texinfo-format-bullet ()
2524 "Insert an asterisk.
2525 If used within a line, follow `@bullet' with braces."
2526 (texinfo-optional-braces-discard)
2527 (insert "*"))
2530 ;;; @kbd
2532 ;; Inside of @example ... @end example and similar environments,
2533 ;; @kbd does nothing; but outside of such environments, it places
2534 ;; single quotation marks around its argument.
2536 (defvar texinfo-format-kbd-regexp
2537 (concat
2538 "^@"
2539 "\\("
2540 "display\\|"
2541 "example\\|"
2542 "smallexample\\|"
2543 "lisp\\|"
2544 "smalllisp"
2545 "\\)")
2546 "Regexp matching environments in which @kbd does not put `...' around arg.")
2548 (defvar texinfo-format-kbd-end-regexp
2549 (concat
2550 "^@end "
2551 "\\("
2552 "display\\|"
2553 "example\\|"
2554 "smallexample\\|"
2555 "lisp\\|"
2556 "smalllisp"
2557 "\\)")
2558 "Regexp specifying end of environments in which @kbd does not put `...'
2559 around argument. (See `texinfo-format-kbd-regexp')")
2561 (put 'kbd 'texinfo-format 'texinfo-format-kbd)
2562 (defun texinfo-format-kbd ()
2563 "Place single quote marks around arg, except in @example and similar."
2564 ;; Search forward for @end example closer than an @example.
2565 ;; Can stop search at nearest @node or texinfo-section-types-regexp
2566 (let* ((stop
2567 (save-excursion
2568 (re-search-forward
2569 (concat "^@node\\|\\(" texinfo-section-types-regexp "\\)")
2571 'move-to-end) ; if necessary, return point at end of buffer
2572 (point)))
2573 (example-location
2574 (save-excursion
2575 (re-search-forward texinfo-format-kbd-regexp stop 'move-to-end)
2576 (point)))
2577 (end-example-location
2578 (save-excursion
2579 (re-search-forward texinfo-format-kbd-end-regexp stop 'move-to-end)
2580 (point))))
2581 ;; If inside @example, @end example will be closer than @example
2582 ;; or end of search i.e., end-example-location less than example-location
2583 (if (>= end-example-location example-location)
2584 ;; outside an @example or equivalent
2585 (insert "`" (texinfo-parse-arg-discard) "'")
2586 ;; else, in @example; do not surround with `...'
2587 (insert (texinfo-parse-arg-discard)))
2588 (goto-char texinfo-command-start)))
2591 ;;; @example, @lisp, @quotation, @display, @smalllisp, @smallexample,
2592 ;; @smalldisplay
2594 (put 'display 'texinfo-format 'texinfo-format-example)
2595 (put 'smalldisplay 'texinfo-format 'texinfo-format-example)
2596 (put 'example 'texinfo-format 'texinfo-format-example)
2597 (put 'lisp 'texinfo-format 'texinfo-format-example)
2598 (put 'quotation 'texinfo-format 'texinfo-format-example)
2599 (put 'smallexample 'texinfo-format 'texinfo-format-example)
2600 (put 'smalllisp 'texinfo-format 'texinfo-format-example)
2601 (defun texinfo-format-example ()
2602 (texinfo-push-stack 'example nil)
2603 (setq fill-column (- fill-column 5))
2604 (texinfo-discard-line))
2606 (put 'example 'texinfo-end 'texinfo-end-example)
2607 (put 'display 'texinfo-end 'texinfo-end-example)
2608 (put 'smalldisplay 'texinfo-end 'texinfo-end-example)
2609 (put 'lisp 'texinfo-end 'texinfo-end-example)
2610 (put 'quotation 'texinfo-end 'texinfo-end-example)
2611 (put 'smallexample 'texinfo-end 'texinfo-end-example)
2612 (put 'smalllisp 'texinfo-end 'texinfo-end-example)
2613 (defun texinfo-end-example ()
2614 (setq fill-column (+ fill-column 5))
2615 (texinfo-discard-command)
2616 (let ((stacktop
2617 (texinfo-pop-stack 'example)))
2618 (texinfo-do-itemize (nth 1 stacktop))))
2620 (put 'exdent 'texinfo-format 'texinfo-format-exdent)
2621 (defun texinfo-format-exdent ()
2622 (texinfo-discard-command)
2623 (delete-region (point)
2624 (progn
2625 (skip-chars-forward " ")
2626 (point)))
2627 (insert ?\b)
2628 ;; Cancel out the deletion that texinfo-do-itemize
2629 ;; is going to do at the end of this line.
2630 (save-excursion
2631 (end-of-line)
2632 (insert "\n ")))
2635 ;; @direntry and @dircategory
2637 (put 'direntry 'texinfo-format 'texinfo-format-direntry)
2638 (defun texinfo-format-direntry ()
2639 (texinfo-push-stack 'direntry nil)
2640 (texinfo-discard-line)
2641 (insert "START-INFO-DIR-ENTRY\n"))
2643 (put 'direntry 'texinfo-end 'texinfo-end-direntry)
2644 (defun texinfo-end-direntry ()
2645 (texinfo-discard-command)
2646 (insert "END-INFO-DIR-ENTRY\n\n")
2647 (texinfo-pop-stack 'direntry))
2649 (put 'dircategory 'texinfo-format 'texinfo-format-dircategory)
2650 (defun texinfo-format-dircategory ()
2651 (let ((str (texinfo-parse-arg-discard)))
2652 (delete-region (point)
2653 (progn
2654 (skip-chars-forward " ")
2655 (point)))
2656 (insert "INFO-DIR-SECTION " str "\n")))
2658 ;;; @cartouche
2660 ;; The @cartouche command is a noop in Info; in a printed manual,
2661 ;; it makes a box with rounded corners.
2663 (put 'cartouche 'texinfo-format 'texinfo-discard-line)
2664 (put 'cartouche 'texinfo-end 'texinfo-discard-command)
2667 ;;; @flushleft and @format
2669 ;; The @flushleft command left justifies every line but leaves the
2670 ;; right end ragged. As far as Info is concerned, @flushleft is a
2671 ;; `do-nothing' command
2673 ;; The @format command is similar to @example except that it does not
2674 ;; indent; this means that in Info, @format is similar to @flushleft.
2676 (put 'format 'texinfo-format 'texinfo-format-flushleft)
2677 (put 'smallformat 'texinfo-format 'texinfo-format-flushleft)
2678 (put 'flushleft 'texinfo-format 'texinfo-format-flushleft)
2679 (defun texinfo-format-flushleft ()
2680 (texinfo-discard-line))
2682 (put 'format 'texinfo-end 'texinfo-end-flushleft)
2683 (put 'smallformat 'texinfo-end 'texinfo-end-flushleft)
2684 (put 'flushleft 'texinfo-end 'texinfo-end-flushleft)
2685 (defun texinfo-end-flushleft ()
2686 (texinfo-discard-command))
2689 ;;; @flushright
2691 ;; The @flushright command right justifies every line but leaves the
2692 ;; left end ragged. Spaces and tabs at the right ends of lines are
2693 ;; removed so that visible text lines up on the right side.
2695 (put 'flushright 'texinfo-format 'texinfo-format-flushright)
2696 (defun texinfo-format-flushright ()
2697 (texinfo-push-stack 'flushright nil)
2698 (texinfo-discard-line))
2700 (put 'flushright 'texinfo-end 'texinfo-end-flushright)
2701 (defun texinfo-end-flushright ()
2702 (texinfo-discard-command)
2704 (let ((stacktop
2705 (texinfo-pop-stack 'flushright)))
2707 (texinfo-do-flushright (nth 1 stacktop))))
2709 (defun texinfo-do-flushright (from)
2710 (save-excursion
2711 (while (progn (forward-line -1)
2712 (>= (point) from))
2714 (beginning-of-line)
2715 (insert
2716 (make-string
2717 (- fill-column
2718 (save-excursion
2719 (end-of-line)
2720 (skip-chars-backward " \t")
2721 (delete-region (point) (progn (end-of-line) (point)))
2722 (current-column)))
2723 ? )))))
2726 ;;; @ctrl, @TeX, @copyright, @minus, @dots, @enddots, @pounds
2728 (put 'ctrl 'texinfo-format 'texinfo-format-ctrl)
2729 (defun texinfo-format-ctrl ()
2730 (let ((str (texinfo-parse-arg-discard)))
2731 (insert (logand 31 (aref str 0)))))
2733 (put 'TeX 'texinfo-format 'texinfo-format-TeX)
2734 (defun texinfo-format-TeX ()
2735 (texinfo-parse-arg-discard)
2736 (insert "TeX"))
2738 (put 'copyright 'texinfo-format 'texinfo-format-copyright)
2739 (defun texinfo-format-copyright ()
2740 (texinfo-parse-arg-discard)
2741 (insert "(C)"))
2743 (put 'minus 'texinfo-format 'texinfo-format-minus)
2744 (defun texinfo-format-minus ()
2745 "Insert a minus sign.
2746 If used within a line, follow `@minus' with braces."
2747 (texinfo-optional-braces-discard)
2748 (insert "-"))
2750 (put 'dots 'texinfo-format 'texinfo-format-dots)
2751 (defun texinfo-format-dots ()
2752 (texinfo-parse-arg-discard)
2753 (insert "..."))
2755 (put 'enddots 'texinfo-format 'texinfo-format-enddots)
2756 (defun texinfo-format-enddots ()
2757 (texinfo-parse-arg-discard)
2758 (insert "...."))
2760 (put 'pounds 'texinfo-format 'texinfo-format-pounds)
2761 (defun texinfo-format-pounds ()
2762 (texinfo-parse-arg-discard)
2763 (insert "#"))
2766 ;;; Refilling and indenting: @refill, @paragraphindent, @noindent
2768 ;; Indent only those paragraphs that are refilled as a result of an
2769 ;; @refill command.
2771 ;; * If the value is `asis', do not change the existing indentation at
2772 ;; the starts of paragraphs.
2774 ;; * If the value zero, delete any existing indentation.
2776 ;; * If the value is greater than zero, indent each paragraph by that
2777 ;; number of spaces.
2779 ;; But do not refill paragraphs with an @refill command that are
2780 ;; preceded by @noindent or are part of a table, list, or deffn.
2782 (defvar texinfo-paragraph-indent "asis"
2783 "Number of spaces for @refill to indent a paragraph; else to leave as is.")
2785 (put 'paragraphindent 'texinfo-format 'texinfo-paragraphindent)
2787 (defun texinfo-paragraphindent ()
2788 "Specify the number of spaces for @refill to indent a paragraph.
2789 Default is to leave the number of spaces as is."
2790 (let ((arg (texinfo-parse-arg-discard)))
2791 (if (string= "asis" arg)
2792 (setq texinfo-paragraph-indent "asis")
2793 (setq texinfo-paragraph-indent (string-to-number arg)))))
2795 (put 'refill 'texinfo-format 'texinfo-format-refill)
2796 (defun texinfo-format-refill ()
2797 "Refill paragraph. Also, indent first line as set by @paragraphindent.
2798 Default is to leave paragraph indentation as is."
2799 (texinfo-discard-command)
2800 (let ((position (point-marker)))
2801 (forward-paragraph -1)
2802 (if (looking-at "[ \t\n]*$") (forward-line 1))
2803 ;; Do not indent if an entry in a list, table, or deffn,
2804 ;; or if paragraph is preceded by @noindent.
2805 ;; Otherwise, indent
2806 (cond
2807 ;; delete a @noindent line and do not indent paragraph
2808 ((save-excursion (forward-line -1)
2809 (looking-at "^@noindent"))
2810 (forward-line -1)
2811 (delete-region (point) (progn (forward-line 1) (point))))
2812 ;; do nothing if "asis"
2813 ((equal texinfo-paragraph-indent "asis"))
2814 ;; do no indenting in list, etc.
2815 ((> texinfo-stack-depth 0))
2816 ;; otherwise delete existing whitespace and indent
2818 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
2819 (insert (make-string texinfo-paragraph-indent ? ))))
2820 (forward-paragraph 1)
2821 (forward-line -1)
2822 (end-of-line)
2823 ;; Do not fill a section title line with asterisks, hyphens, etc. that
2824 ;; are used to underline it. This could occur if the line following
2825 ;; the underlining is not an index entry and has text within it.
2826 (let* ((previous-paragraph-separate paragraph-separate)
2827 (paragraph-separate
2828 (concat paragraph-separate "\\|[-=.]+\\|\\*\\*+"))
2829 (previous-paragraph-start paragraph-start)
2830 (paragraph-start
2831 (concat paragraph-start "\\|[-=.]+\\|\\*\\*+")))
2832 (unwind-protect
2833 (fill-paragraph nil)
2834 (setq paragraph-separate previous-paragraph-separate)
2835 (setq paragraph-start previous-paragraph-start)))
2836 (goto-char position)))
2838 (put 'noindent 'texinfo-format 'texinfo-noindent)
2839 (defun texinfo-noindent ()
2840 (save-excursion
2841 (forward-paragraph 1)
2842 (if (search-backward "@refill"
2843 (save-excursion (forward-line -1) (point)) t)
2844 () ; leave @noindent command so @refill command knows not to indent
2845 ;; else
2846 (texinfo-discard-line))))
2849 ;;; Index generation
2851 (put 'vindex 'texinfo-format 'texinfo-format-vindex)
2852 (defun texinfo-format-vindex ()
2853 (texinfo-index 'texinfo-vindex))
2855 (put 'cindex 'texinfo-format 'texinfo-format-cindex)
2856 (defun texinfo-format-cindex ()
2857 (texinfo-index 'texinfo-cindex))
2859 (put 'findex 'texinfo-format 'texinfo-format-findex)
2860 (defun texinfo-format-findex ()
2861 (texinfo-index 'texinfo-findex))
2863 (put 'pindex 'texinfo-format 'texinfo-format-pindex)
2864 (defun texinfo-format-pindex ()
2865 (texinfo-index 'texinfo-pindex))
2867 (put 'tindex 'texinfo-format 'texinfo-format-tindex)
2868 (defun texinfo-format-tindex ()
2869 (texinfo-index 'texinfo-tindex))
2871 (put 'kindex 'texinfo-format 'texinfo-format-kindex)
2872 (defun texinfo-format-kindex ()
2873 (texinfo-index 'texinfo-kindex))
2875 (defun texinfo-index (indexvar)
2876 (let ((arg (texinfo-parse-expanded-arg)))
2877 (texinfo-discard-command)
2878 (set indexvar
2879 (cons (list arg
2880 texinfo-last-node
2881 ;; Region formatting may not provide last node position.
2882 (if texinfo-last-node-pos
2883 (1+ (count-lines texinfo-last-node-pos (point)))
2885 (symbol-value indexvar)))))
2887 (defvar texinfo-indexvar-alist
2888 '(("cp" . texinfo-cindex)
2889 ("fn" . texinfo-findex)
2890 ("vr" . texinfo-vindex)
2891 ("tp" . texinfo-tindex)
2892 ("pg" . texinfo-pindex)
2893 ("ky" . texinfo-kindex)))
2896 ;;; @defindex @defcodeindex
2897 (put 'defindex 'texinfo-format 'texinfo-format-defindex)
2898 (put 'defcodeindex 'texinfo-format 'texinfo-format-defindex)
2900 (defun texinfo-format-defindex ()
2901 (let* ((index-name (texinfo-parse-arg-discard)) ; eg: `aa'
2902 (indexing-command (intern (concat index-name "index")))
2903 (index-formatting-command ; eg: `texinfo-format-aaindex'
2904 (intern (concat "texinfo-format-" index-name "index")))
2905 (index-alist-name ; eg: `texinfo-aaindex'
2906 (intern (concat "texinfo-" index-name "index"))))
2908 (set index-alist-name nil)
2910 (put indexing-command ; eg, aaindex
2911 'texinfo-format
2912 index-formatting-command) ; eg, texinfo-format-aaindex
2914 ;; eg: "aa" . texinfo-aaindex
2915 (or (assoc index-name texinfo-indexvar-alist)
2916 (push (cons index-name
2917 index-alist-name)
2918 texinfo-indexvar-alist))
2920 (fset index-formatting-command
2921 (list 'lambda 'nil
2922 (list 'texinfo-index
2923 (list 'quote index-alist-name))))))
2926 ;;; @synindex @syncodeindex
2928 (put 'synindex 'texinfo-format 'texinfo-format-synindex)
2929 (put 'syncodeindex 'texinfo-format 'texinfo-format-synindex)
2931 (defun texinfo-format-synindex ()
2932 (let* ((args (texinfo-parse-arg-discard))
2933 (second (cdr (read-from-string args)))
2934 (joiner (symbol-name (car (read-from-string args))))
2935 (joined (symbol-name (car (read-from-string args second)))))
2937 (if (assoc joiner texinfo-short-index-cmds-alist)
2938 (put
2939 (cdr (assoc joiner texinfo-short-index-cmds-alist))
2940 'texinfo-format
2941 (or (cdr (assoc joined texinfo-short-index-format-cmds-alist))
2942 (intern (concat "texinfo-format-" joined "index"))))
2943 (put
2944 (intern (concat joiner "index"))
2945 'texinfo-format
2946 (or (cdr(assoc joined texinfo-short-index-format-cmds-alist))
2947 (intern (concat "texinfo-format-" joined "index")))))))
2949 (defconst texinfo-short-index-cmds-alist
2950 '(("cp" . cindex)
2951 ("fn" . findex)
2952 ("vr" . vindex)
2953 ("tp" . tindex)
2954 ("pg" . pindex)
2955 ("ky" . kindex)))
2957 (defconst texinfo-short-index-format-cmds-alist
2958 '(("cp" . texinfo-format-cindex)
2959 ("fn" . texinfo-format-findex)
2960 ("vr" . texinfo-format-vindex)
2961 ("tp" . texinfo-format-tindex)
2962 ("pg" . texinfo-format-pindex)
2963 ("ky" . texinfo-format-kindex)))
2966 ;;; Sort and index (for VMS)
2968 ;; Sort an index which is in the current buffer between START and END.
2969 ;; Used on VMS, where the `sort' utility is not available.
2970 (defun texinfo-sort-region (start end)
2971 (require 'sort)
2972 (save-restriction
2973 (narrow-to-region start end)
2974 (goto-char (point-min))
2975 (sort-subr nil 'forward-line 'end-of-line 'texinfo-sort-startkeyfun)))
2977 ;; Subroutine for sorting an index.
2978 ;; At start of a line, return a string to sort the line under.
2979 (defun texinfo-sort-startkeyfun ()
2980 (let ((line (buffer-substring-no-properties (point) (line-end-position))))
2981 ;; Canonicalize whitespace and eliminate funny chars.
2982 (while (string-match "[ \t][ \t]+\\|[^a-z0-9 ]+" line)
2983 (setq line (concat (substring line 0 (match-beginning 0))
2985 (substring line (match-end 0)))))
2986 line))
2989 ;;; @printindex
2991 (put 'printindex 'texinfo-format 'texinfo-format-printindex)
2993 (defun texinfo-format-printindex ()
2994 (let* ((arg (texinfo-parse-arg-discard))
2995 (fmt (cdr (assoc arg texinfo-short-index-format-cmds-alist)))
2996 (index-list (delq nil (mapcar (lambda (e)
2997 (and (eq fmt (get (cdr e) 'texinfo-format))
2998 (cdr (assoc (car e) texinfo-indexvar-alist))))
2999 texinfo-short-index-cmds-alist)))
3000 (indexelts (apply #'append nil (mapcar #'symbol-value index-list)))
3001 opoint)
3002 (insert "\n* Menu:\n\n")
3003 (setq opoint (point))
3004 (texinfo-print-index nil indexelts)
3005 (if (memq system-type '(vax-vms windows-nt ms-dos))
3006 (texinfo-sort-region opoint (point))
3007 (shell-command-on-region opoint (point) "sort -fd" 1))))
3009 (defun texinfo-print-index (file indexelts)
3010 (while indexelts
3011 (if (stringp (car (car indexelts)))
3012 (progn
3013 (insert "* " (car (car indexelts)) ": " )
3014 (indent-to 32)
3015 (insert
3016 (if file (concat "(" file ")") "")
3017 (nth 1 (car indexelts)) ".")
3018 (indent-to 54)
3019 (insert
3020 (if (nth 2 (car indexelts))
3021 (format " (line %3d)" (1+ (nth 2 (car indexelts))))
3023 "\n"))
3024 ;; index entries from @include'd file
3025 (texinfo-print-index (nth 1 (car indexelts))
3026 (nth 2 (car indexelts))))
3027 (setq indexelts (cdr indexelts))))
3030 ;;; Glyphs: @equiv, @error, etc
3032 ;; @equiv to show that two expressions are equivalent
3033 ;; @error to show an error message
3034 ;; @expansion to show what a macro expands to
3035 ;; @point to show the location of point in an example
3036 ;; @print to show what an evaluated expression prints
3037 ;; @result to indicate the value returned by an expression
3039 (put 'equiv 'texinfo-format 'texinfo-format-equiv)
3040 (defun texinfo-format-equiv ()
3041 (texinfo-parse-arg-discard)
3042 (insert "=="))
3044 (put 'error 'texinfo-format 'texinfo-format-error)
3045 (defun texinfo-format-error ()
3046 (texinfo-parse-arg-discard)
3047 (insert "error-->"))
3049 (put 'expansion 'texinfo-format 'texinfo-format-expansion)
3050 (defun texinfo-format-expansion ()
3051 (texinfo-parse-arg-discard)
3052 (insert "==>"))
3054 (put 'point 'texinfo-format 'texinfo-format-point)
3055 (defun texinfo-format-point ()
3056 (texinfo-parse-arg-discard)
3057 (insert "-!-"))
3059 (put 'print 'texinfo-format 'texinfo-format-print)
3060 (defun texinfo-format-print ()
3061 (texinfo-parse-arg-discard)
3062 (insert "-|"))
3064 (put 'result 'texinfo-format 'texinfo-format-result)
3065 (defun texinfo-format-result ()
3066 (texinfo-parse-arg-discard)
3067 (insert "=>"))
3070 ;;; Accent commands
3072 ;; Info presumes a plain ASCII output, so the accented characters do
3073 ;; not look as they would if typeset, or output with a different
3074 ;; character set.
3076 ;; See the `texinfo-accent-commands' variable
3077 ;; in the section for `texinfo-append-refill'.
3078 ;; Also, see the defun for `texinfo-format-scan'
3079 ;; for single-character accent commands.
3081 ;; Command Info output Name
3083 ;; These do not have braces:
3084 ;; @^ ==> ^ circumflex accent
3085 ;; @` ==> ` grave accent
3086 ;; @' ==> ' acute accent
3087 ;; @" ==> " umlaut accent
3088 ;; @= ==> = overbar accent
3089 ;; @~ ==> ~ tilde accent
3091 ;; These have braces, but take no argument:
3092 ;; @OE{} ==> OE French-OE-ligature
3093 ;; @oe{} ==> oe
3094 ;; @AA{} ==> AA Scandinavian-A-with-circle
3095 ;; @aa{} ==> aa
3096 ;; @AE{} ==> AE Latin-Scandinavian-AE
3097 ;; @ae{} ==> ae
3098 ;; @ss{} ==> ss German-sharp-S
3100 ;; @questiondown{} ==> ? upside-down-question-mark
3101 ;; @exclamdown{} ==> ! upside-down-exclamation-mark
3102 ;; @L{} ==> L/ Polish suppressed-L (Lslash)
3103 ;; @l{} ==> l/ Polish suppressed-L (Lslash) (lower case)
3104 ;; @O{} ==> O/ Scandinavian O-with-slash
3105 ;; @o{} ==> o/ Scandinavian O-with-slash (lower case)
3107 ;; These have braces, and take an argument:
3108 ;; @,{c} ==> c, cedilla accent
3109 ;; @dotaccent{o} ==> .o overdot-accent
3110 ;; @ubaraccent{o} ==> _o underbar-accent
3111 ;; @udotaccent{o} ==> o-. underdot-accent
3112 ;; @H{o} ==> ""o long Hungarian umlaut
3113 ;; @ringaccent{o} ==> *o ring accent
3114 ;; @tieaccent{oo} ==> [oo tie after accent
3115 ;; @u{o} ==> (o breve accent
3116 ;; @v{o} ==> <o hacek accent
3117 ;; @dotless{i} ==> i dotless i and dotless j
3119 ;; ==========
3121 ;; Note: The defun texinfo-format-scan
3122 ;; looks at "[@{}^'`\",=~ *?!-]"
3123 ;; In the case of @*, a line break is inserted;
3124 ;; in the other cases, the characters are simply quoted and the @ is deleted.
3125 ;; Thus, `texinfo-format-scan' handles the following
3126 ;; single-character accent commands: @^ @` @' @" @, @- @= @~
3128 ;; @^ ==> ^ circumflex accent
3129 ;; (put '^ 'texinfo-format 'texinfo-format-circumflex-accent)
3130 ;; (defun texinfo-format-circumflex-accent ()
3131 ;; (texinfo-discard-command)
3132 ;; (insert "^"))
3134 ;; @` ==> ` grave accent
3135 ;; (put '\` 'texinfo-format 'texinfo-format-grave-accent)
3136 ;; (defun texinfo-format-grave-accent ()
3137 ;; (texinfo-discard-command)
3138 ;; (insert "\`"))
3140 ;; @' ==> ' acute accent
3141 ;; (put '\' 'texinfo-format 'texinfo-format-acute-accent)
3142 ;; (defun texinfo-format-acute-accent ()
3143 ;; (texinfo-discard-command)
3144 ;; (insert "'"))
3146 ;; @" ==> " umlaut accent
3147 ;; (put '\" 'texinfo-format 'texinfo-format-umlaut-accent)
3148 ;; (defun texinfo-format-umlaut-accent ()
3149 ;; (texinfo-discard-command)
3150 ;; (insert "\""))
3152 ;; @= ==> = overbar accent
3153 ;; (put '= 'texinfo-format 'texinfo-format-overbar-accent)
3154 ;; (defun texinfo-format-overbar-accent ()
3155 ;; (texinfo-discard-command)
3156 ;; (insert "="))
3158 ;; @~ ==> ~ tilde accent
3159 ;; (put '~ 'texinfo-format 'texinfo-format-tilde-accent)
3160 ;; (defun texinfo-format-tilde-accent ()
3161 ;; (texinfo-discard-command)
3162 ;; (insert "~"))
3164 ;; @OE{} ==> OE French-OE-ligature
3165 (put 'OE 'texinfo-format 'texinfo-format-French-OE-ligature)
3166 (defun texinfo-format-French-OE-ligature ()
3167 (insert "OE" (texinfo-parse-arg-discard))
3168 (goto-char texinfo-command-start))
3170 ;; @oe{} ==> oe
3171 (put 'oe 'texinfo-format 'texinfo-format-French-oe-ligature)
3172 (defun texinfo-format-French-oe-ligature () ; lower case
3173 (insert "oe" (texinfo-parse-arg-discard))
3174 (goto-char texinfo-command-start))
3176 ;; @AA{} ==> AA Scandinavian-A-with-circle
3177 (put 'AA 'texinfo-format 'texinfo-format-Scandinavian-A-with-circle)
3178 (defun texinfo-format-Scandinavian-A-with-circle ()
3179 (insert "AA" (texinfo-parse-arg-discard))
3180 (goto-char texinfo-command-start))
3182 ;; @aa{} ==> aa
3183 (put 'aa 'texinfo-format 'texinfo-format-Scandinavian-a-with-circle)
3184 (defun texinfo-format-Scandinavian-a-with-circle () ; lower case
3185 (insert "aa" (texinfo-parse-arg-discard))
3186 (goto-char texinfo-command-start))
3188 ;; @AE{} ==> AE Latin-Scandinavian-AE
3189 (put 'AE 'texinfo-format 'texinfo-format-Latin-Scandinavian-AE)
3190 (defun texinfo-format-Latin-Scandinavian-AE ()
3191 (insert "AE" (texinfo-parse-arg-discard))
3192 (goto-char texinfo-command-start))
3194 ;; @ae{} ==> ae
3195 (put 'ae 'texinfo-format 'texinfo-format-Latin-Scandinavian-ae)
3196 (defun texinfo-format-Latin-Scandinavian-ae () ; lower case
3197 (insert "ae" (texinfo-parse-arg-discard))
3198 (goto-char texinfo-command-start))
3200 ;; @ss{} ==> ss German-sharp-S
3201 (put 'ss 'texinfo-format 'texinfo-format-German-sharp-S)
3202 (defun texinfo-format-German-sharp-S ()
3203 (insert "ss" (texinfo-parse-arg-discard))
3204 (goto-char texinfo-command-start))
3206 ;; @questiondown{} ==> ? upside-down-question-mark
3207 (put 'questiondown 'texinfo-format 'texinfo-format-upside-down-question-mark)
3208 (defun texinfo-format-upside-down-question-mark ()
3209 (insert "?" (texinfo-parse-arg-discard))
3210 (goto-char texinfo-command-start))
3212 ;; @exclamdown{} ==> ! upside-down-exclamation-mark
3213 (put 'exclamdown 'texinfo-format 'texinfo-format-upside-down-exclamation-mark)
3214 (defun texinfo-format-upside-down-exclamation-mark ()
3215 (insert "!" (texinfo-parse-arg-discard))
3216 (goto-char texinfo-command-start))
3218 ;; @L{} ==> L/ Polish suppressed-L (Lslash)
3219 (put 'L 'texinfo-format 'texinfo-format-Polish-suppressed-L)
3220 (defun texinfo-format-Polish-suppressed-L ()
3221 (insert (texinfo-parse-arg-discard) "/L")
3222 (goto-char texinfo-command-start))
3224 ;; @l{} ==> l/ Polish suppressed-L (Lslash) (lower case)
3225 (put 'l 'texinfo-format 'texinfo-format-Polish-suppressed-l-lower-case)
3226 (defun texinfo-format-Polish-suppressed-l-lower-case ()
3227 (insert (texinfo-parse-arg-discard) "/l")
3228 (goto-char texinfo-command-start))
3231 ;; @O{} ==> O/ Scandinavian O-with-slash
3232 (put 'O 'texinfo-format 'texinfo-format-Scandinavian-O-with-slash)
3233 (defun texinfo-format-Scandinavian-O-with-slash ()
3234 (insert (texinfo-parse-arg-discard) "O/")
3235 (goto-char texinfo-command-start))
3237 ;; @o{} ==> o/ Scandinavian O-with-slash (lower case)
3238 (put 'o 'texinfo-format 'texinfo-format-Scandinavian-o-with-slash-lower-case)
3239 (defun texinfo-format-Scandinavian-o-with-slash-lower-case ()
3240 (insert (texinfo-parse-arg-discard) "o/")
3241 (goto-char texinfo-command-start))
3243 ;; Take arguments
3245 ;; @,{c} ==> c, cedilla accent
3246 (put '\, 'texinfo-format 'texinfo-format-cedilla-accent)
3247 (defun texinfo-format-cedilla-accent ()
3248 (insert (texinfo-parse-arg-discard) ",")
3249 (goto-char texinfo-command-start))
3252 ;; @dotaccent{o} ==> .o overdot-accent
3253 (put 'dotaccent 'texinfo-format 'texinfo-format-overdot-accent)
3254 (defun texinfo-format-overdot-accent ()
3255 (insert "." (texinfo-parse-arg-discard))
3256 (goto-char texinfo-command-start))
3258 ;; @ubaraccent{o} ==> _o underbar-accent
3259 (put 'ubaraccent 'texinfo-format 'texinfo-format-underbar-accent)
3260 (defun texinfo-format-underbar-accent ()
3261 (insert "_" (texinfo-parse-arg-discard))
3262 (goto-char texinfo-command-start))
3264 ;; @udotaccent{o} ==> o-. underdot-accent
3265 (put 'udotaccent 'texinfo-format 'texinfo-format-underdot-accent)
3266 (defun texinfo-format-underdot-accent ()
3267 (insert (texinfo-parse-arg-discard) "-.")
3268 (goto-char texinfo-command-start))
3270 ;; @H{o} ==> ""o long Hungarian umlaut
3271 (put 'H 'texinfo-format 'texinfo-format-long-Hungarian-umlaut)
3272 (defun texinfo-format-long-Hungarian-umlaut ()
3273 (insert "\"\"" (texinfo-parse-arg-discard))
3274 (goto-char texinfo-command-start))
3276 ;; @ringaccent{o} ==> *o ring accent
3277 (put 'ringaccent 'texinfo-format 'texinfo-format-ring-accent)
3278 (defun texinfo-format-ring-accent ()
3279 (insert "*" (texinfo-parse-arg-discard))
3280 (goto-char texinfo-command-start))
3282 ;; @tieaccent{oo} ==> [oo tie after accent
3283 (put 'tieaccent 'texinfo-format 'texinfo-format-tie-after-accent)
3284 (defun texinfo-format-tie-after-accent ()
3285 (insert "[" (texinfo-parse-arg-discard))
3286 (goto-char texinfo-command-start))
3289 ;; @u{o} ==> (o breve accent
3290 (put 'u 'texinfo-format 'texinfo-format-breve-accent)
3291 (defun texinfo-format-breve-accent ()
3292 (insert "(" (texinfo-parse-arg-discard))
3293 (goto-char texinfo-command-start))
3295 ;; @v{o} ==> <o hacek accent
3296 (put 'v 'texinfo-format 'texinfo-format-hacek-accent)
3297 (defun texinfo-format-hacek-accent ()
3298 (insert "<" (texinfo-parse-arg-discard))
3299 (goto-char texinfo-command-start))
3302 ;; @dotless{i} ==> i dotless i and dotless j
3303 (put 'dotless 'texinfo-format 'texinfo-format-dotless)
3304 (defun texinfo-format-dotless ()
3305 (insert (texinfo-parse-arg-discard))
3306 (goto-char texinfo-command-start))
3309 ;;; Definition formatting: @deffn, @defun, etc
3311 ;; What definition formatting produces:
3313 ;; @deffn category name args...
3314 ;; In Info, `Category: name ARGS'
3315 ;; In index: name: node. line#.
3317 ;; @defvr category name
3318 ;; In Info, `Category: name'
3319 ;; In index: name: node. line#.
3321 ;; @deftp category name attributes...
3322 ;; `category name attributes...' Note: @deftp args in lower case.
3323 ;; In index: name: node. line#.
3325 ;; Specialized function-like or variable-like entity:
3327 ;; @defun, @defmac, @defspec, @defvar, @defopt
3329 ;; @defun name args In Info, `Function: name ARGS'
3330 ;; @defmac name args In Info, `Macro: name ARGS'
3331 ;; @defvar name In Info, `Variable: name'
3332 ;; etc.
3333 ;; In index: name: node. line#.
3335 ;; Generalized typed-function-like or typed-variable-like entity:
3336 ;; @deftypefn category data-type name args...
3337 ;; In Info, `Category: data-type name args...'
3338 ;; @deftypevr category data-type name
3339 ;; In Info, `Category: data-type name'
3340 ;; In index: name: node. line#.
3342 ;; Specialized typed-function-like or typed-variable-like entity:
3343 ;; @deftypefun data-type name args...
3344 ;; In Info, `Function: data-type name ARGS'
3345 ;; In index: name: node. line#.
3347 ;; @deftypevar data-type name
3348 ;; In Info, `Variable: data-type name'
3349 ;; In index: name: node. line#. but include args after name!?
3351 ;; Generalized object oriented entity:
3352 ;; @defop category class name args...
3353 ;; In Info, `Category on class: name ARG'
3354 ;; In index: name on class: node. line#.
3356 ;; @defcv category class name
3357 ;; In Info, `Category of class: name'
3358 ;; In index: name of class: node. line#.
3360 ;; Specialized object oriented entity:
3361 ;; @defmethod class name args...
3362 ;; In Info, `Method on class: name ARGS'
3363 ;; In index: name on class: node. line#.
3365 ;; @defivar class name
3366 ;; In Info, `Instance variable of class: name'
3367 ;; In index: name of class: node. line#.
3370 ;;; The definition formatting functions
3372 (defun texinfo-format-defun ()
3373 (texinfo-push-stack 'defun nil)
3374 (setq fill-column (- fill-column 5))
3375 (texinfo-format-defun-1 t))
3377 (defun texinfo-end-defun ()
3378 (setq fill-column (+ fill-column 5))
3379 (texinfo-discard-command)
3380 (let ((start (nth 1 (texinfo-pop-stack 'defun))))
3381 (texinfo-do-itemize start)
3382 ;; Delete extra newline inserted after header.
3383 (save-excursion
3384 (goto-char start)
3385 (delete-char -1))))
3387 (defun texinfo-format-defunx ()
3388 (texinfo-format-defun-1 nil))
3390 (defun texinfo-format-defun-1 (first-p)
3391 (let ((parse-args (texinfo-format-parse-defun-args))
3392 (texinfo-defun-type (get texinfo-command-name 'texinfo-defun-type)))
3393 (texinfo-discard-command)
3394 ;; Delete extra newline inserted after previous header line.
3395 (if (not first-p)
3396 (delete-char -1))
3397 (funcall
3398 (get texinfo-command-name 'texinfo-deffn-formatting-property) parse-args)
3399 ;; Insert extra newline so that paragraph filling does not mess
3400 ;; with header line.
3401 (insert "\n\n")
3402 (rplaca (cdr (cdr (car texinfo-stack))) (point))
3403 (funcall
3404 (get texinfo-command-name 'texinfo-defun-indexing-property) parse-args)))
3406 ;;; Formatting the first line of a definition
3408 ;; @deffn, @defvr, @deftp
3409 (put 'deffn 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3410 (put 'deffnx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3411 (put 'defvr 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3412 (put 'defvrx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3413 (put 'deftp 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3414 (put 'deftpx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3415 (defun texinfo-format-deffn (parsed-args)
3416 ;; Generalized function-like, variable-like, or generic data-type entity:
3417 ;; @deffn category name args...
3418 ;; In Info, `Category: name ARGS'
3419 ;; @deftp category name attributes...
3420 ;; `category name attributes...' Note: @deftp args in lower case.
3421 (let ((category (car parsed-args))
3422 (name (car (cdr parsed-args)))
3423 (args (cdr (cdr parsed-args))))
3424 (insert " -- " category ": " name)
3425 (while args
3426 (insert " "
3427 (if (or (= ?& (aref (car args) 0))
3428 (eq (eval (car texinfo-defun-type)) 'deftp-type))
3429 (car args)
3430 (upcase (car args))))
3431 (setq args (cdr args)))))
3433 ;; @defun, @defmac, @defspec, @defvar, @defopt: Specialized, simple
3434 (put 'defun 'texinfo-deffn-formatting-property
3435 'texinfo-format-specialized-defun)
3436 (put 'defunx 'texinfo-deffn-formatting-property
3437 'texinfo-format-specialized-defun)
3438 (put 'defmac 'texinfo-deffn-formatting-property
3439 'texinfo-format-specialized-defun)
3440 (put 'defmacx 'texinfo-deffn-formatting-property
3441 'texinfo-format-specialized-defun)
3442 (put 'defspec 'texinfo-deffn-formatting-property
3443 'texinfo-format-specialized-defun)
3444 (put 'defspecx 'texinfo-deffn-formatting-property
3445 'texinfo-format-specialized-defun)
3446 (put 'defvar 'texinfo-deffn-formatting-property
3447 'texinfo-format-specialized-defun)
3448 (put 'defvarx 'texinfo-deffn-formatting-property
3449 'texinfo-format-specialized-defun)
3450 (put 'defopt 'texinfo-deffn-formatting-property
3451 'texinfo-format-specialized-defun)
3452 (put 'defoptx 'texinfo-deffn-formatting-property
3453 'texinfo-format-specialized-defun)
3454 (defun texinfo-format-specialized-defun (parsed-args)
3455 ;; Specialized function-like or variable-like entity:
3456 ;; @defun name args In Info, `Function: Name ARGS'
3457 ;; @defmac name args In Info, `Macro: Name ARGS'
3458 ;; @defvar name In Info, `Variable: Name'
3459 ;; Use cdr of texinfo-defun-type to determine category:
3460 (let ((category (car (cdr texinfo-defun-type)))
3461 (name (car parsed-args))
3462 (args (cdr parsed-args)))
3463 (insert " -- " category ": " name)
3464 (while args
3465 (insert " "
3466 (if (= ?& (aref (car args) 0))
3467 (car args)
3468 (upcase (car args))))
3469 (setq args (cdr args)))))
3471 ;; @deftypefn, @deftypevr: Generalized typed
3472 (put 'deftypefn 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3473 (put 'deftypefnx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3474 (put 'deftypevr 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3475 (put 'deftypevrx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3476 (defun texinfo-format-deftypefn (parsed-args)
3477 ;; Generalized typed-function-like or typed-variable-like entity:
3478 ;; @deftypefn category data-type name args...
3479 ;; In Info, `Category: data-type name args...'
3480 ;; @deftypevr category data-type name
3481 ;; In Info, `Category: data-type name'
3482 ;; Note: args in lower case, unless modified in command line.
3483 (let ((category (car parsed-args))
3484 (data-type (car (cdr parsed-args)))
3485 (name (car (cdr (cdr parsed-args))))
3486 (args (cdr (cdr (cdr parsed-args)))))
3487 (insert " -- " category ": " data-type " " name)
3488 (while args
3489 (insert " " (car args))
3490 (setq args (cdr args)))))
3492 ;; @deftypefun, @deftypevar: Specialized typed
3493 (put 'deftypefun 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
3494 (put 'deftypefunx 'texinfo-deffn-formatting-property
3495 'texinfo-format-deftypefun)
3496 (put 'deftypevar 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
3497 (put 'deftypevarx 'texinfo-deffn-formatting-property
3498 'texinfo-format-deftypefun)
3499 (defun texinfo-format-deftypefun (parsed-args)
3500 ;; Specialized typed-function-like or typed-variable-like entity:
3501 ;; @deftypefun data-type name args...
3502 ;; In Info, `Function: data-type name ARGS'
3503 ;; @deftypevar data-type name
3504 ;; In Info, `Variable: data-type name'
3505 ;; Note: args in lower case, unless modified in command line.
3506 ;; Use cdr of texinfo-defun-type to determine category:
3507 (let ((category (car (cdr texinfo-defun-type)))
3508 (data-type (car parsed-args))
3509 (name (car (cdr parsed-args)))
3510 (args (cdr (cdr parsed-args))))
3511 (insert " -- " category ": " data-type " " name)
3512 (while args
3513 (insert " " (car args))
3514 (setq args (cdr args)))))
3516 ;; @defop: Generalized object-oriented
3517 (put 'defop 'texinfo-deffn-formatting-property 'texinfo-format-defop)
3518 (put 'defopx 'texinfo-deffn-formatting-property 'texinfo-format-defop)
3519 (defun texinfo-format-defop (parsed-args)
3520 ;; Generalized object oriented entity:
3521 ;; @defop category class name args...
3522 ;; In Info, `Category on class: name ARG'
3523 ;; Note: args in upper case; use of `on'
3524 (let ((category (car parsed-args))
3525 (class (car (cdr parsed-args)))
3526 (name (car (cdr (cdr parsed-args))))
3527 (args (cdr (cdr (cdr parsed-args)))))
3528 (insert " -- " category " on " class ": " name)
3529 (while args
3530 (insert " " (upcase (car args)))
3531 (setq args (cdr args)))))
3533 ;; @defcv: Generalized object-oriented
3534 (put 'defcv 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
3535 (put 'defcvx 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
3536 (defun texinfo-format-defcv (parsed-args)
3537 ;; Generalized object oriented entity:
3538 ;; @defcv category class name
3539 ;; In Info, `Category of class: name'
3540 ;; Note: args in upper case; use of `of'
3541 (let ((category (car parsed-args))
3542 (class (car (cdr parsed-args)))
3543 (name (car (cdr (cdr parsed-args))))
3544 (args (cdr (cdr (cdr parsed-args)))))
3545 (insert " -- " category " of " class ": " name)
3546 (while args
3547 (insert " " (upcase (car args)))
3548 (setq args (cdr args)))))
3550 ;; @defmethod: Specialized object-oriented
3551 (put 'defmethod 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
3552 (put 'defmethodx 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
3553 (defun texinfo-format-defmethod (parsed-args)
3554 ;; Specialized object oriented entity:
3555 ;; @defmethod class name args...
3556 ;; In Info, `Method on class: name ARGS'
3557 ;; Note: args in upper case; use of `on'
3558 ;; Use cdr of texinfo-defun-type to determine category:
3559 (let ((category (car (cdr texinfo-defun-type)))
3560 (class (car parsed-args))
3561 (name (car (cdr parsed-args)))
3562 (args (cdr (cdr parsed-args))))
3563 (insert " -- " category " on " class ": " name)
3564 (while args
3565 (insert " " (upcase (car args)))
3566 (setq args (cdr args)))))
3568 ;; @defivar: Specialized object-oriented
3569 (put 'defivar 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
3570 (put 'defivarx 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
3571 (defun texinfo-format-defivar (parsed-args)
3572 ;; Specialized object oriented entity:
3573 ;; @defivar class name
3574 ;; In Info, `Instance variable of class: name'
3575 ;; Note: args in upper case; use of `of'
3576 ;; Use cdr of texinfo-defun-type to determine category:
3577 (let ((category (car (cdr texinfo-defun-type)))
3578 (class (car parsed-args))
3579 (name (car (cdr parsed-args)))
3580 (args (cdr (cdr parsed-args))))
3581 (insert " -- " category " of " class ": " name)
3582 (while args
3583 (insert " " (upcase (car args)))
3584 (setq args (cdr args)))))
3587 ;;; Indexing for definitions
3589 ;; An index entry has three parts: the `entry proper', the node name, and the
3590 ;; line number. Depending on the which command is used, the entry is
3591 ;; formatted differently:
3593 ;; @defun,
3594 ;; @defmac,
3595 ;; @defspec,
3596 ;; @defvar,
3597 ;; @defopt all use their 1st argument as the entry-proper
3599 ;; @deffn,
3600 ;; @defvr,
3601 ;; @deftp
3602 ;; @deftypefun
3603 ;; @deftypevar all use their 2nd argument as the entry-proper
3605 ;; @deftypefn,
3606 ;; @deftypevr both use their 3rd argument as the entry-proper
3608 ;; @defmethod uses its 2nd and 1st arguments as an entry-proper
3609 ;; formatted: NAME on CLASS
3611 ;; @defop uses its 3rd and 2nd arguments as an entry-proper
3612 ;; formatted: NAME on CLASS
3614 ;; @defivar uses its 2nd and 1st arguments as an entry-proper
3615 ;; formatted: NAME of CLASS
3617 ;; @defcv uses its 3rd and 2nd argument as an entry-proper
3618 ;; formatted: NAME of CLASS
3620 (put 'defun 'texinfo-defun-indexing-property 'texinfo-index-defun)
3621 (put 'defunx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3622 (put 'defmac 'texinfo-defun-indexing-property 'texinfo-index-defun)
3623 (put 'defmacx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3624 (put 'defspec 'texinfo-defun-indexing-property 'texinfo-index-defun)
3625 (put 'defspecx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3626 (put 'defvar 'texinfo-defun-indexing-property 'texinfo-index-defun)
3627 (put 'defvarx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3628 (put 'defopt 'texinfo-defun-indexing-property 'texinfo-index-defun)
3629 (put 'defoptx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3630 (defun texinfo-index-defun (parsed-args)
3631 ;; use 1st parsed-arg as entry-proper
3632 ;; `index-list' will be texinfo-findex or the like
3633 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3634 (set index-list
3635 (cons
3636 ;; Three elements: entry-proper, node-name, line-number
3637 (list
3638 (car parsed-args)
3639 texinfo-last-node
3640 ;; Region formatting may not provide last node position.
3641 (if texinfo-last-node-pos
3642 (1+ (count-lines texinfo-last-node-pos (point)))
3644 (symbol-value index-list)))))
3646 (put 'deffn 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3647 (put 'deffnx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3648 (put 'defvr 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3649 (put 'defvrx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3650 (put 'deftp 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3651 (put 'deftpx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3652 (put 'deftypefun 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3653 (put 'deftypefunx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3654 (put 'deftypevar 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3655 (put 'deftypevarx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3656 (defun texinfo-index-deffn (parsed-args)
3657 ;; use 2nd parsed-arg as entry-proper
3658 ;; `index-list' will be texinfo-findex or the like
3659 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3660 (set index-list
3661 (cons
3662 ;; Three elements: entry-proper, node-name, line-number
3663 (list
3664 (car (cdr parsed-args))
3665 texinfo-last-node
3666 ;; Region formatting may not provide last node position.
3667 (if texinfo-last-node-pos
3668 (1+ (count-lines texinfo-last-node-pos (point)))
3670 (symbol-value index-list)))))
3672 (put 'deftypefn 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3673 (put 'deftypefnx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3674 (put 'deftypevr 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3675 (put 'deftypevrx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3676 (defun texinfo-index-deftypefn (parsed-args)
3677 ;; use 3rd parsed-arg as entry-proper
3678 ;; `index-list' will be texinfo-findex or the like
3679 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3680 (set index-list
3681 (cons
3682 ;; Three elements: entry-proper, node-name, line-number
3683 (list
3684 (car (cdr (cdr parsed-args)))
3685 texinfo-last-node
3686 ;; Region formatting may not provide last node position.
3687 (if texinfo-last-node-pos
3688 (1+ (count-lines texinfo-last-node-pos (point)))
3690 (symbol-value index-list)))))
3692 (put 'defmethod 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
3693 (put 'defmethodx 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
3694 (defun texinfo-index-defmethod (parsed-args)
3695 ;; use 2nd on 1st parsed-arg as entry-proper
3696 ;; `index-list' will be texinfo-findex or the like
3697 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3698 (set index-list
3699 (cons
3700 ;; Three elements: entry-proper, node-name, line-number
3701 (list
3702 (format "%s on %s"
3703 (car (cdr parsed-args))
3704 (car parsed-args))
3705 texinfo-last-node
3706 ;; Region formatting may not provide last node position.
3707 (if texinfo-last-node-pos
3708 (1+ (count-lines texinfo-last-node-pos (point)))
3710 (symbol-value index-list)))))
3712 (put 'defop 'texinfo-defun-indexing-property 'texinfo-index-defop)
3713 (put 'defopx 'texinfo-defun-indexing-property 'texinfo-index-defop)
3714 (defun texinfo-index-defop (parsed-args)
3715 ;; use 3rd on 2nd parsed-arg as entry-proper
3716 ;; `index-list' will be texinfo-findex or the like
3717 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3718 (set index-list
3719 (cons
3720 ;; Three elements: entry-proper, node-name, line-number
3721 (list
3722 (format "%s on %s"
3723 (car (cdr (cdr parsed-args)))
3724 (car (cdr parsed-args)))
3725 texinfo-last-node
3726 ;; Region formatting may not provide last node position.
3727 (if texinfo-last-node-pos
3728 (1+ (count-lines texinfo-last-node-pos (point)))
3730 (symbol-value index-list)))))
3732 (put 'defivar 'texinfo-defun-indexing-property 'texinfo-index-defivar)
3733 (put 'defivarx 'texinfo-defun-indexing-property 'texinfo-index-defivar)
3734 (defun texinfo-index-defivar (parsed-args)
3735 ;; use 2nd of 1st parsed-arg as entry-proper
3736 ;; `index-list' will be texinfo-findex or the like
3737 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3738 (set index-list
3739 (cons
3740 ;; Three elements: entry-proper, node-name, line-number
3741 (list
3742 (format "%s of %s"
3743 (car (cdr parsed-args))
3744 (car parsed-args))
3745 texinfo-last-node
3746 ;; Region formatting may not provide last node position.
3747 (if texinfo-last-node-pos
3748 (1+ (count-lines texinfo-last-node-pos (point)))
3750 (symbol-value index-list)))))
3752 (put 'defcv 'texinfo-defun-indexing-property 'texinfo-index-defcv)
3753 (put 'defcvx 'texinfo-defun-indexing-property 'texinfo-index-defcv)
3754 (defun texinfo-index-defcv (parsed-args)
3755 ;; use 3rd of 2nd parsed-arg as entry-proper
3756 ;; `index-list' will be texinfo-findex or the like
3757 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3758 (set index-list
3759 (cons
3760 ;; Three elements: entry-proper, node-name, line-number
3761 (list
3762 (format "%s of %s"
3763 (car (cdr (cdr parsed-args)))
3764 (car (cdr parsed-args)))
3765 texinfo-last-node
3766 ;; Region formatting may not provide last node position.
3767 (if texinfo-last-node-pos
3768 (1+ (count-lines texinfo-last-node-pos (point)))
3770 (symbol-value index-list)))))
3773 ;;; Properties for definitions
3775 ;; Each definition command has six properties:
3777 ;; 1. texinfo-deffn-formatting-property to format definition line
3778 ;; 2. texinfo-defun-indexing-property to create index entry
3779 ;; 3. texinfo-format formatting command
3780 ;; 4. texinfo-end end formatting command
3781 ;; 5. texinfo-defun-type type of deffn to format
3782 ;; 6. texinfo-defun-index type of index to use
3784 ;; The `x' forms of each definition command are used for the second
3785 ;; and subsequent header lines.
3787 ;; The texinfo-deffn-formatting-property and texinfo-defun-indexing-property
3788 ;; are listed just before the appropriate formatting and indexing commands.
3790 (put 'deffn 'texinfo-format 'texinfo-format-defun)
3791 (put 'deffnx 'texinfo-format 'texinfo-format-defunx)
3792 (put 'deffn 'texinfo-end 'texinfo-end-defun)
3793 (put 'deffn 'texinfo-defun-type '('deffn-type nil))
3794 (put 'deffnx 'texinfo-defun-type '('deffn-type nil))
3795 (put 'deffn 'texinfo-defun-index 'texinfo-findex)
3796 (put 'deffnx 'texinfo-defun-index 'texinfo-findex)
3798 (put 'defun 'texinfo-format 'texinfo-format-defun)
3799 (put 'defunx 'texinfo-format 'texinfo-format-defunx)
3800 (put 'defun 'texinfo-end 'texinfo-end-defun)
3801 (put 'defun 'texinfo-defun-type '('defun-type "Function"))
3802 (put 'defunx 'texinfo-defun-type '('defun-type "Function"))
3803 (put 'defun 'texinfo-defun-index 'texinfo-findex)
3804 (put 'defunx 'texinfo-defun-index 'texinfo-findex)
3806 (put 'defmac 'texinfo-format 'texinfo-format-defun)
3807 (put 'defmacx 'texinfo-format 'texinfo-format-defunx)
3808 (put 'defmac 'texinfo-end 'texinfo-end-defun)
3809 (put 'defmac 'texinfo-defun-type '('defun-type "Macro"))
3810 (put 'defmacx 'texinfo-defun-type '('defun-type "Macro"))
3811 (put 'defmac 'texinfo-defun-index 'texinfo-findex)
3812 (put 'defmacx 'texinfo-defun-index 'texinfo-findex)
3814 (put 'defspec 'texinfo-format 'texinfo-format-defun)
3815 (put 'defspecx 'texinfo-format 'texinfo-format-defunx)
3816 (put 'defspec 'texinfo-end 'texinfo-end-defun)
3817 (put 'defspec 'texinfo-defun-type '('defun-type "Special form"))
3818 (put 'defspecx 'texinfo-defun-type '('defun-type "Special form"))
3819 (put 'defspec 'texinfo-defun-index 'texinfo-findex)
3820 (put 'defspecx 'texinfo-defun-index 'texinfo-findex)
3822 (put 'defvr 'texinfo-format 'texinfo-format-defun)
3823 (put 'defvrx 'texinfo-format 'texinfo-format-defunx)
3824 (put 'defvr 'texinfo-end 'texinfo-end-defun)
3825 (put 'defvr 'texinfo-defun-type '('deffn-type nil))
3826 (put 'defvrx 'texinfo-defun-type '('deffn-type nil))
3827 (put 'defvr 'texinfo-defun-index 'texinfo-vindex)
3828 (put 'defvrx 'texinfo-defun-index 'texinfo-vindex)
3830 (put 'defvar 'texinfo-format 'texinfo-format-defun)
3831 (put 'defvarx 'texinfo-format 'texinfo-format-defunx)
3832 (put 'defvar 'texinfo-end 'texinfo-end-defun)
3833 (put 'defvar 'texinfo-defun-type '('defun-type "Variable"))
3834 (put 'defvarx 'texinfo-defun-type '('defun-type "Variable"))
3835 (put 'defvar 'texinfo-defun-index 'texinfo-vindex)
3836 (put 'defvarx 'texinfo-defun-index 'texinfo-vindex)
3838 (put 'defconst 'texinfo-format 'texinfo-format-defun)
3839 (put 'defconstx 'texinfo-format 'texinfo-format-defunx)
3840 (put 'defconst 'texinfo-end 'texinfo-end-defun)
3841 (put 'defconst 'texinfo-defun-type '('defun-type "Constant"))
3842 (put 'defconstx 'texinfo-defun-type '('defun-type "Constant"))
3843 (put 'defconst 'texinfo-defun-index 'texinfo-vindex)
3844 (put 'defconstx 'texinfo-defun-index 'texinfo-vindex)
3846 (put 'defcmd 'texinfo-format 'texinfo-format-defun)
3847 (put 'defcmdx 'texinfo-format 'texinfo-format-defunx)
3848 (put 'defcmd 'texinfo-end 'texinfo-end-defun)
3849 (put 'defcmd 'texinfo-defun-type '('defun-type "Command"))
3850 (put 'defcmdx 'texinfo-defun-type '('defun-type "Command"))
3851 (put 'defcmd 'texinfo-defun-index 'texinfo-findex)
3852 (put 'defcmdx 'texinfo-defun-index 'texinfo-findex)
3854 (put 'defopt 'texinfo-format 'texinfo-format-defun)
3855 (put 'defoptx 'texinfo-format 'texinfo-format-defunx)
3856 (put 'defopt 'texinfo-end 'texinfo-end-defun)
3857 (put 'defopt 'texinfo-defun-type '('defun-type "User Option"))
3858 (put 'defoptx 'texinfo-defun-type '('defun-type "User Option"))
3859 (put 'defopt 'texinfo-defun-index 'texinfo-vindex)
3860 (put 'defoptx 'texinfo-defun-index 'texinfo-vindex)
3862 (put 'deftp 'texinfo-format 'texinfo-format-defun)
3863 (put 'deftpx 'texinfo-format 'texinfo-format-defunx)
3864 (put 'deftp 'texinfo-end 'texinfo-end-defun)
3865 (put 'deftp 'texinfo-defun-type '('deftp-type nil))
3866 (put 'deftpx 'texinfo-defun-type '('deftp-type nil))
3867 (put 'deftp 'texinfo-defun-index 'texinfo-tindex)
3868 (put 'deftpx 'texinfo-defun-index 'texinfo-tindex)
3870 ;;; Object-oriented stuff is a little hairier.
3872 (put 'defop 'texinfo-format 'texinfo-format-defun)
3873 (put 'defopx 'texinfo-format 'texinfo-format-defunx)
3874 (put 'defop 'texinfo-end 'texinfo-end-defun)
3875 (put 'defop 'texinfo-defun-type '('defop-type nil))
3876 (put 'defopx 'texinfo-defun-type '('defop-type nil))
3877 (put 'defop 'texinfo-defun-index 'texinfo-findex)
3878 (put 'defopx 'texinfo-defun-index 'texinfo-findex)
3880 (put 'defmethod 'texinfo-format 'texinfo-format-defun)
3881 (put 'defmethodx 'texinfo-format 'texinfo-format-defunx)
3882 (put 'defmethod 'texinfo-end 'texinfo-end-defun)
3883 (put 'defmethod 'texinfo-defun-type '('defmethod-type "Method"))
3884 (put 'defmethodx 'texinfo-defun-type '('defmethod-type "Method"))
3885 (put 'defmethod 'texinfo-defun-index 'texinfo-findex)
3886 (put 'defmethodx 'texinfo-defun-index 'texinfo-findex)
3888 (put 'defcv 'texinfo-format 'texinfo-format-defun)
3889 (put 'defcvx 'texinfo-format 'texinfo-format-defunx)
3890 (put 'defcv 'texinfo-end 'texinfo-end-defun)
3891 (put 'defcv 'texinfo-defun-type '('defop-type nil))
3892 (put 'defcvx 'texinfo-defun-type '('defop-type nil))
3893 (put 'defcv 'texinfo-defun-index 'texinfo-vindex)
3894 (put 'defcvx 'texinfo-defun-index 'texinfo-vindex)
3896 (put 'defivar 'texinfo-format 'texinfo-format-defun)
3897 (put 'defivarx 'texinfo-format 'texinfo-format-defunx)
3898 (put 'defivar 'texinfo-end 'texinfo-end-defun)
3899 (put 'defivar 'texinfo-defun-type '('defmethod-type "Instance variable"))
3900 (put 'defivarx 'texinfo-defun-type '('defmethod-type "Instance variable"))
3901 (put 'defivar 'texinfo-defun-index 'texinfo-vindex)
3902 (put 'defivarx 'texinfo-defun-index 'texinfo-vindex)
3904 ;;; Typed functions and variables
3906 (put 'deftypefn 'texinfo-format 'texinfo-format-defun)
3907 (put 'deftypefnx 'texinfo-format 'texinfo-format-defunx)
3908 (put 'deftypefn 'texinfo-end 'texinfo-end-defun)
3909 (put 'deftypefn 'texinfo-defun-type '('deftypefn-type nil))
3910 (put 'deftypefnx 'texinfo-defun-type '('deftypefn-type nil))
3911 (put 'deftypefn 'texinfo-defun-index 'texinfo-findex)
3912 (put 'deftypefnx 'texinfo-defun-index 'texinfo-findex)
3914 (put 'deftypefun 'texinfo-format 'texinfo-format-defun)
3915 (put 'deftypefunx 'texinfo-format 'texinfo-format-defunx)
3916 (put 'deftypefun 'texinfo-end 'texinfo-end-defun)
3917 (put 'deftypefun 'texinfo-defun-type '('deftypefun-type "Function"))
3918 (put 'deftypefunx 'texinfo-defun-type '('deftypefun-type "Function"))
3919 (put 'deftypefun 'texinfo-defun-index 'texinfo-findex)
3920 (put 'deftypefunx 'texinfo-defun-index 'texinfo-findex)
3922 (put 'deftypevr 'texinfo-format 'texinfo-format-defun)
3923 (put 'deftypevrx 'texinfo-format 'texinfo-format-defunx)
3924 (put 'deftypevr 'texinfo-end 'texinfo-end-defun)
3925 (put 'deftypevr 'texinfo-defun-type '('deftypefn-type nil))
3926 (put 'deftypevrx 'texinfo-defun-type '('deftypefn-type nil))
3927 (put 'deftypevr 'texinfo-defun-index 'texinfo-vindex)
3928 (put 'deftypevrx 'texinfo-defun-index 'texinfo-vindex)
3930 (put 'deftypevar 'texinfo-format 'texinfo-format-defun)
3931 (put 'deftypevarx 'texinfo-format 'texinfo-format-defunx)
3932 (put 'deftypevar 'texinfo-end 'texinfo-end-defun)
3933 (put 'deftypevar 'texinfo-defun-type '('deftypevar-type "Variable"))
3934 (put 'deftypevarx 'texinfo-defun-type '('deftypevar-type "Variable"))
3935 (put 'deftypevar 'texinfo-defun-index 'texinfo-vindex)
3936 (put 'deftypevarx 'texinfo-defun-index 'texinfo-vindex)
3939 ;;; @set, @clear, @ifset, @ifclear
3941 ;; If a flag is set with @set FLAG, then text between @ifset and @end
3942 ;; ifset is formatted normally, but if the flag is is cleared with
3943 ;; @clear FLAG, then the text is not formatted; it is ignored.
3945 ;; If a flag is cleared with @clear FLAG, then text between @ifclear
3946 ;; and @end ifclear is formatted normally, but if the flag is is set with
3947 ;; @set FLAG, then the text is not formatted; it is ignored. @ifclear
3948 ;; is the opposite of @ifset.
3950 ;; If a flag is set to a string with @set FLAG,
3951 ;; replace @value{FLAG} with the string.
3952 ;; If a flag with a value is cleared,
3953 ;; @value{FLAG} is invalid,
3954 ;; as if there had never been any @set FLAG previously.
3956 (put 'clear 'texinfo-format 'texinfo-clear)
3957 (defun texinfo-clear ()
3958 "Clear the value of the flag."
3959 (let* ((arg (texinfo-parse-arg-discard))
3960 (flag (car (read-from-string arg)))
3961 (value (substring arg (cdr (read-from-string arg)))))
3962 (put flag 'texinfo-whether-setp 'flag-cleared)
3963 (put flag 'texinfo-set-value "")))
3965 (put 'set 'texinfo-format 'texinfo-set)
3966 (defun texinfo-set ()
3967 "Set the value of the flag, optionally to a string.
3968 The command `@set foo This is a string.'
3969 sets flag foo to the value: `This is a string.'
3970 The command `@value{foo}' expands to the value."
3971 (let* ((arg (texinfo-parse-arg-discard))
3972 (flag (car (read-from-string arg)))
3973 (value (substring arg (cdr (read-from-string arg)))))
3974 (if (string-match "^[ \t]+" value)
3975 (setq value (substring value (match-end 0))))
3976 (put flag 'texinfo-whether-setp 'flag-set)
3977 (put flag 'texinfo-set-value value)))
3979 (put 'value 'texinfo-format 'texinfo-value)
3980 (defun texinfo-value ()
3981 "Insert the string to which the flag is set.
3982 The command `@set foo This is a string.'
3983 sets flag foo to the value: `This is a string.'
3984 The command `@value{foo}' expands to the value."
3985 (let ((arg (texinfo-parse-arg-discard)))
3986 (cond ((and
3987 (eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3988 'flag-set)
3989 (get (car (read-from-string arg)) 'texinfo-set-value))
3990 (insert (get (car (read-from-string arg)) 'texinfo-set-value)))
3991 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3992 'flag-cleared)
3993 (insert (format "{No value for \"%s\"}" arg)))
3994 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp) nil)
3995 (insert (format "{No value for \"%s\"}" arg))))))
3997 (put 'ifset 'texinfo-end 'texinfo-discard-command)
3998 (put 'ifset 'texinfo-format 'texinfo-if-set)
3999 (defun texinfo-if-set ()
4000 "If set, continue formatting; else do not format region up to @end ifset."
4001 (let ((arg (texinfo-parse-arg-discard)))
4002 (cond
4003 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4004 'flag-set)
4005 ;; Format the text (i.e., do not remove it); do nothing here.
4007 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4008 'flag-cleared)
4009 ;; Clear region (i.e., cause the text to be ignored).
4010 (delete-region texinfo-command-start
4011 (re-search-forward "@end ifset[ \t]*\n")))
4012 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4013 nil)
4014 ;; In this case flag is neither set nor cleared.
4015 ;; Act as if set, i.e. do nothing.
4016 ()))))
4018 (put 'ifclear 'texinfo-end 'texinfo-discard-command)
4019 (put 'ifclear 'texinfo-format 'texinfo-if-clear)
4020 (defun texinfo-if-clear ()
4021 "If clear, continue formatting; if set, do not format up to @end ifset."
4022 (let ((arg (texinfo-parse-arg-discard)))
4023 (cond
4024 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4025 'flag-set)
4026 ;; Clear region (i.e., cause the text to be ignored).
4027 (delete-region texinfo-command-start
4028 (re-search-forward "@end ifclear[ \t]*\n")))
4029 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4030 'flag-cleared)
4031 ;; Format the text (i.e., do not remove it); do nothing here.
4033 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
4034 nil)
4035 ;; In this case flag is neither set nor cleared.
4036 ;; Act as if clear, i.e. do nothing.
4037 ()))))
4039 ;;; @ifeq
4041 (put 'ifeq 'texinfo-format 'texinfo-format-ifeq)
4042 (defun texinfo-format-ifeq ()
4043 "If ARG1 and ARG2 caselessly string compare to same string, perform COMMAND.
4044 Otherwise produces no output.
4046 Thus:
4047 @ifeq{ arg1 , arg1 , @code{foo}} bar
4049 ==> `foo' bar.
4051 @ifeq{ arg1 , arg2 , @code{foo}} bar
4053 ==> bar
4055 Note that the Texinfo command and its arguments must be arguments to
4056 the @ifeq command."
4057 ;; compare-buffer-substrings does not exist in version 18; don't use
4058 (goto-char texinfo-command-end)
4059 (let* ((case-fold-search t)
4060 (stop (save-excursion (forward-sexp 1) (point)))
4061 start end
4062 ;; @ifeq{arg1, arg2, @command{optional-args}}
4063 (arg1
4064 (progn
4065 (forward-char 1)
4066 (skip-chars-forward " ")
4067 (setq start (point))
4068 (search-forward "," stop t)
4069 (skip-chars-backward ", ")
4070 (buffer-substring-no-properties start (point))))
4071 (arg2
4072 (progn
4073 (search-forward "," stop t)
4074 (skip-chars-forward " ")
4075 (setq start (point))
4076 (search-forward "," stop t)
4077 (skip-chars-backward ", ")
4078 (buffer-substring-no-properties start (point))))
4079 (texinfo-command
4080 (progn
4081 (search-forward "," stop t)
4082 (skip-chars-forward " ")
4083 (setq start (point))
4084 (goto-char (1- stop))
4085 (skip-chars-backward " ")
4086 (buffer-substring-no-properties start (point)))))
4087 (delete-region texinfo-command-start stop)
4088 (if (equal arg1 arg2)
4089 (insert texinfo-command))
4090 (goto-char texinfo-command-start)))
4093 ;;; Process included files: `@include' command
4095 ;; Updated 19 October 1990
4096 ;; In the original version, include files were ignored by Info but
4097 ;; incorporated in to the printed manual. To make references to the
4098 ;; included file, the Texinfo source file has to refer to the included
4099 ;; files using the `(filename)nodename' format for referring to other
4100 ;; Info files. Also, the included files had to be formatted on their
4101 ;; own. It was just like they were another file.
4103 ;; Currently, include files are inserted into the buffer that is
4104 ;; formatted for Info. If large, the resulting info file is split and
4105 ;; tagified. For current include files to work, the master menu must
4106 ;; refer to all the nodes, and the highest level nodes in the include
4107 ;; files must have the correct next, prev, and up pointers.
4109 ;; The included file may have an @setfilename and even an @settitle,
4110 ;; but not an `\input texinfo' line.
4112 ;; Updated 24 March 1993
4113 ;; In order for @raisesections and @lowersections to work, included
4114 ;; files must be inserted into the buffer holding the outer file
4115 ;; before other Info formatting takes place. So @include is no longer
4116 ;; is treated like other @-commands.
4117 (put 'include 'texinfo-format 'texinfo-format-noop)
4119 ;; Original definition:
4120 ;; (defun texinfo-format-include ()
4121 ;; (let ((filename (texinfo-parse-arg-discard))
4122 ;; (default-directory input-directory)
4123 ;; subindex)
4124 ;; (setq subindex
4125 ;; (save-excursion
4126 ;; (progn (find-file
4127 ;; (cond ((file-readable-p (concat filename ".texinfo"))
4128 ;; (concat filename ".texinfo"))
4129 ;; ((file-readable-p (concat filename ".texi"))
4130 ;; (concat filename ".texi"))
4131 ;; ((file-readable-p (concat filename ".tex"))
4132 ;; (concat filename ".tex"))
4133 ;; ((file-readable-p filename)
4134 ;; filename)
4135 ;; (t (error "@include'd file %s not found"
4136 ;; filename))))
4137 ;; (texinfo-format-buffer-1))))
4138 ;; (texinfo-subindex 'texinfo-vindex (car subindex) (nth 1 subindex))
4139 ;; (texinfo-subindex 'texinfo-findex (car subindex) (nth 2 subindex))
4140 ;; (texinfo-subindex 'texinfo-cindex (car subindex) (nth 3 subindex))
4141 ;; (texinfo-subindex 'texinfo-pindex (car subindex) (nth 4 subindex))
4142 ;; (texinfo-subindex 'texinfo-tindex (car subindex) (nth 5 subindex))
4143 ;; (texinfo-subindex 'texinfo-kindex (car subindex) (nth 6 subindex))))
4145 ;;(defun texinfo-subindex (indexvar file content)
4146 ;; (set indexvar (cons (list 'recurse file content)
4147 ;; (symbol-value indexvar))))
4149 ;; Second definition:
4150 ;; (put 'include 'texinfo-format 'texinfo-format-include)
4151 ;; (defun texinfo-format-include ()
4152 ;; (let ((filename (concat input-directory
4153 ;; (texinfo-parse-arg-discard)))
4154 ;; (default-directory input-directory))
4155 ;; (message "Reading: %s" filename)
4156 ;; (save-excursion
4157 ;; (save-restriction
4158 ;; (narrow-to-region
4159 ;; (point)
4160 ;; (+ (point) (car (cdr (insert-file-contents filename)))))
4161 ;; (goto-char (point-min))
4162 ;; (texinfo-append-refill)
4163 ;; (texinfo-format-convert (point-min) (point-max))))
4164 ;; (setq last-input-buffer input-buffer) ; to bypass setfilename
4165 ;; ))
4168 ;;; Numerous commands do nothing in Info
4169 ;; These commands are defined in texinfo.tex for printed output.
4172 ;;; various noops, such as @b{foo}, that take arguments in braces
4174 (put 'b 'texinfo-format 'texinfo-format-noop)
4175 (put 'i 'texinfo-format 'texinfo-format-noop)
4176 (put 'r 'texinfo-format 'texinfo-format-noop)
4177 (put 't 'texinfo-format 'texinfo-format-noop)
4178 (put 'w 'texinfo-format 'texinfo-format-noop)
4179 (put 'asis 'texinfo-format 'texinfo-format-noop)
4180 (put 'dmn 'texinfo-format 'texinfo-format-noop)
4181 (put 'math 'texinfo-format 'texinfo-format-noop)
4182 (put 'titlefont 'texinfo-format 'texinfo-format-noop)
4183 (defun texinfo-format-noop ()
4184 (insert (texinfo-parse-arg-discard))
4185 (goto-char texinfo-command-start))
4187 ;; @hyphenation command discards an argument within braces
4188 (put 'hyphenation 'texinfo-format 'texinfo-discard-command-and-arg)
4189 (defun texinfo-discard-command-and-arg ()
4190 "Discard both @-command and its argument in braces."
4191 (goto-char texinfo-command-end)
4192 (forward-list 1)
4193 (setq texinfo-command-end (point))
4194 (delete-region texinfo-command-start texinfo-command-end))
4197 ;;; Do nothing commands, such as @smallbook, that have no args and no braces
4198 ;; These must appear on a line of their own
4200 (put 'bye 'texinfo-format 'texinfo-discard-line)
4201 (put 'smallbook 'texinfo-format 'texinfo-discard-line)
4202 (put 'finalout 'texinfo-format 'texinfo-discard-line)
4203 (put 'overfullrule 'texinfo-format 'texinfo-discard-line)
4204 (put 'smallbreak 'texinfo-format 'texinfo-discard-line)
4205 (put 'medbreak 'texinfo-format 'texinfo-discard-line)
4206 (put 'bigbreak 'texinfo-format 'texinfo-discard-line)
4207 (put 'afourpaper 'texinfo-format 'texinfo-discard-line)
4208 (put 'afivepaper 'texinfo-format 'texinfo-discard-line)
4209 (put 'afourlatex 'texinfo-format 'texinfo-discard-line)
4210 (put 'afourwide 'texinfo-format 'texinfo-discard-line)
4213 ;;; These noop commands discard the rest of the line.
4215 (put 'c 'texinfo-format 'texinfo-discard-line-with-args)
4216 (put 'comment 'texinfo-format 'texinfo-discard-line-with-args)
4217 (put 'contents 'texinfo-format 'texinfo-discard-line-with-args)
4218 (put 'group 'texinfo-end 'texinfo-discard-line-with-args)
4219 (put 'group 'texinfo-format 'texinfo-discard-line-with-args)
4220 (put 'headings 'texinfo-format 'texinfo-discard-line-with-args)
4221 (put 'setchapterstyle 'texinfo-format 'texinfo-discard-line-with-args)
4222 (put 'hsize 'texinfo-format 'texinfo-discard-line-with-args)
4223 (put 'itemindent 'texinfo-format 'texinfo-discard-line-with-args)
4224 (put 'lispnarrowing 'texinfo-format 'texinfo-discard-line-with-args)
4225 (put 'need 'texinfo-format 'texinfo-discard-line-with-args)
4226 (put 'nopara 'texinfo-format 'texinfo-discard-line-with-args)
4228 ;; @novalidate suppresses cross-reference checking and auxiliary file
4229 ;; creation with TeX. The Info-validate command checks that every
4230 ;; node pointer points to an existing node. Since this Info command
4231 ;; is not invoked automatically, the @novalidate command is irrelevant
4232 ;; and not supported by texinfmt.el
4233 (put 'novalidate 'texinfo-format 'texinfo-discard-line-with-args)
4235 (put 'page 'texinfo-format 'texinfo-discard-line-with-args)
4236 (put 'pagesizes 'texinfo-format 'texinfo-discard-line-with-args)
4237 (put 'parindent 'texinfo-format 'texinfo-discard-line-with-args)
4238 (put 'setchapternewpage 'texinfo-format 'texinfo-discard-line-with-args)
4239 (put 'setq 'texinfo-format 'texinfo-discard-line-with-args)
4241 (put 'setcontentsaftertitlepage
4242 'texinfo-format 'texinfo-discard-line-with-args)
4243 (put 'setshortcontentsaftertitlepage
4244 'texinfo-format 'texinfo-discard-line-with-args)
4246 (put 'settitle 'texinfo-format 'texinfo-discard-line-with-args)
4247 (put 'setx 'texinfo-format 'texinfo-discard-line-with-args)
4248 (put 'shortcontents 'texinfo-format 'texinfo-discard-line-with-args)
4249 (put 'shorttitlepage 'texinfo-format 'texinfo-discard-line-with-args)
4250 (put 'summarycontents 'texinfo-format 'texinfo-discard-line-with-args)
4251 (put 'input 'texinfo-format 'texinfo-discard-line-with-args)
4253 (put 'documentlanguage 'texinfo-format 'texinfo-discard-line-with-args)
4254 (put 'documentencoding 'texinfo-format 'texinfo-discard-line-with-args)
4258 ;;; Some commands cannot be handled
4260 (defun texinfo-unsupported ()
4261 (error "%s is not handled by texinfo"
4262 (buffer-substring-no-properties texinfo-command-start texinfo-command-end)))
4264 ;;; Batch formatting
4266 (defun batch-texinfo-format ()
4267 "Run `texinfo-format-buffer' on the files remaining on the command line.
4268 Must be used only with -batch, and kills Emacs on completion.
4269 Each file will be processed even if an error occurred previously.
4270 For example, invoke
4271 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"."
4272 (if (not noninteractive)
4273 (error "batch-texinfo-format may only be used -batch"))
4274 (let ((version-control t)
4275 (auto-save-default nil)
4276 (find-file-run-dired nil)
4277 (kept-old-versions 259259)
4278 (kept-new-versions 259259))
4279 (let ((error 0)
4280 file
4281 (files ()))
4282 (while command-line-args-left
4283 (setq file (expand-file-name (car command-line-args-left)))
4284 (cond ((not (file-exists-p file))
4285 (message ">> %s does not exist!" file)
4286 (setq error 1
4287 command-line-args-left (cdr command-line-args-left)))
4288 ((file-directory-p file)
4289 (setq command-line-args-left
4290 (nconc (directory-files file)
4291 (cdr command-line-args-left))))
4293 (push file files)
4294 (setq command-line-args-left (cdr command-line-args-left)))))
4295 (while files
4296 (setq file (car files)
4297 files (cdr files))
4298 (condition-case err
4299 (progn
4300 (if buffer-file-name (kill-buffer (current-buffer)))
4301 (find-file file)
4302 (buffer-disable-undo (current-buffer))
4303 (set-buffer-modified-p nil)
4304 (texinfo-mode)
4305 (message "texinfo formatting %s..." file)
4306 (texinfo-format-buffer nil)
4307 (if (buffer-modified-p)
4308 (progn (message "Saving modified %s" (buffer-file-name))
4309 (save-buffer))))
4310 (error
4311 (message ">> Error: %s" (prin1-to-string err))
4312 (message ">> point at")
4313 (let ((s (buffer-substring-no-properties (point)
4314 (min (+ (point) 100)
4315 (point-max))))
4316 (tem 0))
4317 (while (setq tem (string-match "\n+" s tem))
4318 (setq s (concat (substring s 0 (match-beginning 0))
4319 "\n>> "
4320 (substring s (match-end 0)))
4321 tem (1+ tem)))
4322 (message ">> %s" s))
4323 (setq error 1))))
4324 (kill-emacs error))))
4327 ;;; Place `provide' at end of file.
4328 (provide 'texinfmt)
4330 ;; arch-tag: 1e8d9a2d-bca0-40a0-ac6c-dab01bc6f725
4331 ;;; texinfmt.el ends here