Move the (require 'cl) to the front of the
[emacs.git] / lisp / textmodes / texinfmt.el
blob822631e039becf737fb7f6dff728cdf2e8029df4
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 Free Software Foundation, Inc.
6 ;; Maintainer: Robert J. Chassell <bug-texinfo@gnu.org>
7 ;; Keywords: maint, tex, docs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Code:
28 ;;; Emacs lisp functions to convert Texinfo files to Info files.
30 (or (fboundp 'defgroup)
31 (defmacro defgroup (&rest ignore) nil))
33 (or (fboundp 'defcustom)
34 (defmacro defcustom (var value doc &rest ignore)
35 `(defvar ,var ,value ,doc)))
37 (defvar texinfmt-version "2.38 of 3 July 1998")
39 (defun texinfmt-version (&optional here)
40 "Show the version of texinfmt.el in the minibuffer.
41 If optional argument HERE is non-nil, insert info at point."
42 (interactive "P")
43 (let ((version-string
44 (format "Version of \`texinfmt.el\': %s" texinfmt-version)))
45 (if here
46 (insert version-string)
47 (if (interactive-p)
48 (message "%s" version-string)
49 version-string))))
52 ;;; Variable definitions
54 (require 'texinfo) ; So `texinfo-footnote-style' is defined.
55 (require 'texnfo-upd) ; So `texinfo-section-types-regexp' is defined.
57 (defvar texinfo-format-syntax-table nil)
59 (defvar texinfo-vindex)
60 (defvar texinfo-findex)
61 (defvar texinfo-cindex)
62 (defvar texinfo-pindex)
63 (defvar texinfo-tindex)
64 (defvar texinfo-kindex)
65 (defvar texinfo-last-node)
66 (defvar texinfo-node-names)
67 (defvar texinfo-enclosure-list)
68 (defvar texinfo-alias-list)
69 (defvar texinfo-fold-nodename-case nil)
71 (defvar texinfo-command-start)
72 (defvar texinfo-command-end)
73 (defvar texinfo-command-name)
74 (defvar texinfo-defun-type)
75 (defvar texinfo-last-node-pos)
76 (defvar texinfo-stack)
77 (defvar texinfo-short-index-cmds-alist)
78 (defvar texinfo-short-index-format-cmds-alist)
79 (defvar texinfo-format-filename)
80 (defvar texinfo-footnote-number)
81 (defvar texinfo-start-of-header)
82 (defvar texinfo-end-of-header)
83 (defvar texinfo-raisesections-alist)
84 (defvar texinfo-lowersections-alist)
86 ;;; Syntax table
88 (if texinfo-format-syntax-table
89 nil
90 (setq texinfo-format-syntax-table (make-syntax-table))
91 (modify-syntax-entry ?\" " " texinfo-format-syntax-table)
92 (modify-syntax-entry ?\\ " " texinfo-format-syntax-table)
93 (modify-syntax-entry ?@ "\\" texinfo-format-syntax-table)
94 (modify-syntax-entry ?\^q "\\" texinfo-format-syntax-table)
95 (modify-syntax-entry ?\[ "." texinfo-format-syntax-table)
96 (modify-syntax-entry ?\] "." texinfo-format-syntax-table)
97 (modify-syntax-entry ?\( "." texinfo-format-syntax-table)
98 (modify-syntax-entry ?\) "." texinfo-format-syntax-table)
99 (modify-syntax-entry ?{ "(}" texinfo-format-syntax-table)
100 (modify-syntax-entry ?} "){" texinfo-format-syntax-table)
101 (modify-syntax-entry ?\' "." texinfo-format-syntax-table))
104 ;;; Top level buffer and region formatting functions
106 ;;;###autoload
107 (defun texinfo-format-buffer (&optional nosplit)
108 "Process the current buffer as texinfo code, into an Info file.
109 The Info file output is generated in a buffer visiting the Info file
110 name specified in the @setfilename command.
112 Non-nil argument (prefix, if interactive) means don't make tag table
113 and don't split the file if large. You can use Info-tagify and
114 Info-split to do these manually."
115 (interactive "P")
116 (let ((lastmessage "Formatting Info file...")
117 (coding-system-for-write buffer-file-coding-system))
118 (message lastmessage)
119 (widen)
120 (texinfo-format-buffer-1)
121 (Info-tagify)
122 (if nosplit
124 (if (> (buffer-size) 100000)
125 (progn
126 (message (setq lastmessage "Splitting Info file..."))
127 (Info-split))))
128 (message (concat lastmessage
129 (if (interactive-p) "done. Now save it." "done.")))))
131 (defvar texinfo-region-buffer-name "*Info Region*"
132 "*Name of the temporary buffer used by \\[texinfo-format-region].")
134 ;;;###autoload
135 (defun texinfo-format-region (region-beginning region-end)
136 "Convert the current region of the Texinfo file to Info format.
137 This lets you see what that part of the file will look like in Info.
138 The command is bound to \\[texinfo-format-region]. The text that is
139 converted to Info is stored in a temporary buffer."
140 (interactive "r")
141 (message "Converting region to Info format...")
142 (let (texinfo-command-start
143 texinfo-command-end
144 texinfo-command-name
145 texinfo-vindex
146 texinfo-findex
147 texinfo-cindex
148 texinfo-pindex
149 texinfo-tindex
150 texinfo-kindex
151 texinfo-stack
152 (texinfo-format-filename "")
153 texinfo-example-start
154 texinfo-last-node-pos
155 texinfo-last-node
156 texinfo-node-names
157 (texinfo-footnote-number 0)
158 last-input-buffer
159 (fill-column-for-info fill-column)
160 (input-buffer (current-buffer))
161 (input-directory default-directory)
162 (header-text "")
163 (header-beginning 1)
164 (header-end 1))
166 ;;; Copy lines between beginning and end of header lines,
167 ;;; if any, or else copy the `@setfilename' line, if any.
168 (save-excursion
169 (save-restriction
170 (widen)
171 (goto-char (point-min))
172 (let ((search-end (save-excursion (forward-line 100) (point))))
173 (if (or
174 ;; Either copy header text.
175 (and
176 (prog1
177 (search-forward tex-start-of-header search-end t)
178 (forward-line 1)
179 ;; Mark beginning of header.
180 (setq header-beginning (point)))
181 (prog1
182 (search-forward tex-end-of-header nil t)
183 (beginning-of-line)
184 ;; Mark end of header
185 (setq header-end (point))))
186 ;; Or copy @filename line.
187 (prog2
188 (goto-char (point-min))
189 (search-forward "@setfilename" search-end t)
190 (beginning-of-line)
191 (setq header-beginning (point))
192 (forward-line 1)
193 (setq header-end (point))))
195 ;; Copy header
196 (setq header-text
197 (buffer-substring
198 (min header-beginning region-beginning)
199 header-end))))))
201 ;;; Find a buffer to use.
202 (switch-to-buffer (get-buffer-create texinfo-region-buffer-name))
203 (erase-buffer)
204 ;; Insert the header into the buffer.
205 (insert header-text)
206 ;; Insert the region into the buffer.
207 (insert-buffer-substring
208 input-buffer
209 (max region-beginning header-end)
210 region-end)
211 ;; Make sure region ends in a newline.
212 (or (= (preceding-char) ?\n)
213 (insert "\n"))
215 (goto-char (point-min))
216 (texinfo-mode)
217 (message "Converting region to Info format...")
218 (setq fill-column fill-column-for-info)
219 ;; Install a syntax table useful for scanning command operands.
220 (set-syntax-table texinfo-format-syntax-table)
222 ;; Insert @include files so `texinfo-raise-lower-sections' can
223 ;; work on them without losing track of multiple
224 ;; @raise/@lowersections commands.
225 (while (re-search-forward "^@include" nil t)
226 (setq texinfo-command-end (point))
227 (let ((filename (concat input-directory
228 (texinfo-parse-line-arg))))
229 (re-search-backward "^@include")
230 (delete-region (point) (save-excursion (forward-line 1) (point)))
231 (message "Reading included file: %s" filename)
232 (save-excursion
233 (save-restriction
234 (narrow-to-region
235 (point)
236 (+ (point) (car (cdr (insert-file-contents filename)))))
237 (goto-char (point-min))
238 ;; Remove `@setfilename' line from included file, if any,
239 ;; so @setfilename command not duplicated.
240 (if (re-search-forward
241 "^@setfilename" (save-excursion (forward-line 100) (point)) t)
242 (progn
243 (beginning-of-line)
244 (delete-region
245 (point) (save-excursion (forward-line 1) (point)))))))))
247 ;; Raise or lower level of each section, if necessary.
248 (goto-char (point-min))
249 (texinfo-raise-lower-sections)
250 ;; Append @refill to appropriate paragraphs for filling.
251 (goto-char (point-min))
252 (texinfo-append-refill)
253 ;; If the region includes the effective end of the data,
254 ;; discard everything after that.
255 (goto-char (point-max))
256 (if (re-search-backward "^@bye" nil t)
257 (delete-region (point) (point-max)))
258 ;; Make sure buffer ends in a newline.
259 (or (= (preceding-char) ?\n)
260 (insert "\n"))
261 ;; Don't use a previous value of texinfo-enclosure-list.
262 (setq texinfo-enclosure-list nil)
263 (setq texinfo-alias-list nil)
265 (goto-char (point-min))
266 (if (looking-at "\\\\input[ \t]+texinfo")
267 (delete-region (point) (save-excursion (forward-line 1) (point))))
269 ;; Insert Info region title text.
270 (goto-char (point-min))
271 (if (search-forward
272 "@setfilename" (save-excursion (forward-line 100) (point)) t)
273 (progn
274 (setq texinfo-command-end (point))
275 (beginning-of-line)
276 (setq texinfo-command-start (point))
277 (let ((arg (texinfo-parse-arg-discard)))
278 (insert " "
279 texinfo-region-buffer-name
280 " buffer for: `")
281 (insert (file-name-nondirectory (expand-file-name arg)))
282 (insert "', -*-Text-*-\n")))
283 ;; Else no `@setfilename' line
284 (insert " "
285 texinfo-region-buffer-name
286 " buffer -*-Text-*-\n"))
287 (insert "produced by `texinfo-format-region'\n"
288 "from a region in: "
289 (if (buffer-file-name input-buffer)
290 (concat "`"
291 (file-name-sans-versions
292 (file-name-nondirectory
293 (buffer-file-name input-buffer)))
294 "'")
295 (concat "buffer `" (buffer-name input-buffer) "'"))
296 "\nusing `texinfmt.el' version "
297 texinfmt-version
298 ".\n\n")
300 ;; Now convert for real.
301 (goto-char (point-min))
302 (texinfo-format-scan)
303 (goto-char (point-min))
304 (Info-tagify input-buffer)
305 (goto-char (point-min))
306 (message "Done.")))
308 ;;;###autoload
309 (defun texi2info (&optional nosplit)
310 "Convert the current buffer (written in Texinfo code) into an Info file.
311 The Info file output is generated in a buffer visiting the Info file
312 names specified in the @setfilename command.
314 This function automatically updates all node pointers and menus, and
315 creates a master menu. This work is done on a temporary buffer that
316 is automatically removed when the Info file is created. The original
317 Texinfo source buffer is not changed.
319 Non-nil argument (prefix, if interactive) means don't split the file
320 if large. You can use Info-split to do this manually."
321 (interactive "P")
322 (let ((temp-buffer (concat "*--" (buffer-name) "--temporary-buffer*" )))
323 (message "First updating nodes and menus, then creating Info file.")
324 ;; (sit-for 2)
325 (copy-to-buffer temp-buffer (point-min) (point-max))
326 (switch-to-buffer temp-buffer)
327 (texinfo-master-menu t)
328 (message "Now creating Info file.")
329 (sit-for 2)
330 (texinfo-format-buffer nosplit)
331 (save-buffer)
332 (kill-buffer temp-buffer)))
335 ;;; Primary internal formatting function for the whole buffer.
337 (defun texinfo-format-buffer-1 ()
338 (let (texinfo-format-filename
339 texinfo-example-start
340 texinfo-command-start
341 texinfo-command-end
342 texinfo-command-name
343 texinfo-last-node
344 texinfo-last-node-pos
345 texinfo-vindex
346 texinfo-findex
347 texinfo-cindex
348 texinfo-pindex
349 texinfo-tindex
350 texinfo-kindex
351 texinfo-stack
352 texinfo-node-names
353 (texinfo-footnote-number 0)
354 last-input-buffer
355 outfile
356 (fill-column-for-info fill-column)
357 (input-buffer (current-buffer))
358 (input-directory default-directory))
359 (setq texinfo-enclosure-list nil)
360 (setq texinfo-alias-list nil)
361 (save-excursion
362 (goto-char (point-min))
363 (or (search-forward "@setfilename" nil t)
364 (error "Texinfo file needs an `@setfilename FILENAME' line."))
365 (setq texinfo-command-end (point))
366 (setq outfile (texinfo-parse-line-arg)))
368 (find-file outfile)
369 (texinfo-mode)
370 (erase-buffer)
372 (message "Formatting Info file: %s" outfile)
373 (setq texinfo-format-filename
374 (file-name-nondirectory (expand-file-name outfile)))
376 (setq fill-column fill-column-for-info)
377 (set-syntax-table texinfo-format-syntax-table)
379 (insert-buffer-substring input-buffer)
380 (message "Converting %s to Info format..." (buffer-name input-buffer))
382 ;; Insert @include files so `texinfo-raise-lower-sections' can
383 ;; work on them without losing track of multiple
384 ;; @raise/@lowersections commands.
385 (goto-char (point-min))
386 (while (re-search-forward "^@include" nil t)
387 (setq texinfo-command-end (point))
388 (let ((filename (concat input-directory
389 (texinfo-parse-line-arg))))
390 (re-search-backward "^@include")
391 (delete-region (point) (save-excursion (forward-line 1) (point)))
392 (message "Reading included file: %s" filename)
393 (save-excursion
394 (save-restriction
395 (narrow-to-region
396 (point)
397 (+ (point) (car (cdr (insert-file-contents filename)))))
398 (goto-char (point-min))
399 ;; Remove `@setfilename' line from included file, if any,
400 ;; so @setfilename command not duplicated.
401 (if (re-search-forward
402 "^@setfilename"
403 (save-excursion (forward-line 100) (point)) t)
404 (progn
405 (beginning-of-line)
406 (delete-region
407 (point) (save-excursion (forward-line 1) (point)))))))))
408 ;; Raise or lower level of each section, if necessary.
409 (goto-char (point-min))
410 (texinfo-raise-lower-sections)
411 ;; Append @refill to appropriate paragraphs
412 (goto-char (point-min))
413 (texinfo-append-refill)
414 (goto-char (point-min))
415 (search-forward "@setfilename")
416 (beginning-of-line)
417 (delete-region (point-min) (point))
418 ;; Remove @bye at end of file, if it is there.
419 (goto-char (point-max))
420 (if (search-backward "@bye" nil t)
421 (delete-region (point) (point-max)))
422 ;; Make sure buffer ends in a newline.
423 (or (= (preceding-char) ?\n)
424 (insert "\n"))
425 ;; Scan the whole buffer, converting to Info format.
426 (texinfo-format-scan)
427 (goto-char (point-min))
428 ;; Insert info about how this file was made.
429 (insert "Info file: "
430 texinfo-format-filename ", -*-Text-*-\n"
431 "produced by `texinfo-format-buffer'\n"
432 ;; Date string removed so that regression testing is easier.
433 ;; "on "
434 ;; (insert (format-time-string "%e %b %Y")) " "
435 "from file"
436 (if (buffer-file-name input-buffer)
437 (concat " `"
438 (file-name-sans-versions
439 (file-name-nondirectory
440 (buffer-file-name input-buffer)))
441 "'")
442 (concat "buffer `" (buffer-name input-buffer) "'"))
443 "\nusing `texinfmt.el' version "
444 texinfmt-version
445 ".\n\n")
446 ;; Return data for indices.
447 (list outfile
448 texinfo-vindex texinfo-findex texinfo-cindex
449 texinfo-pindex texinfo-tindex texinfo-kindex)))
452 ;;; Perform non-@-command file conversions: quotes and hyphens
454 (defun texinfo-format-convert (min max)
455 ;; Convert left and right quotes to typewriter font quotes.
456 (goto-char min)
457 (while (search-forward "``" max t)
458 (replace-match "\""))
459 (goto-char min)
460 (while (search-forward "''" max t)
461 (replace-match "\""))
462 ;; Convert three hyphens in a row to two.
463 (goto-char min)
464 (while (re-search-forward "\\( \\|\\w\\)\\(---\\)\\( \\|\\w\\)" max t)
465 (delete-region (1+ (match-beginning 2)) (+ 2 (match-beginning
466 2)))))
469 ;;; Handle paragraph filling
471 ;; Keep as concatinated lists for ease of maintenance
473 (defvar texinfo-no-refill-regexp
474 (concat
475 "^@"
476 "\\("
477 "direntry\\|"
478 "lisp\\|"
479 "smalllisp\\|"
480 "example\\|"
481 "smallexample\\|"
482 "display\\|"
483 "smalldisplay\\|"
484 "format\\|"
485 "smallformat\\|"
486 "flushleft\\|"
487 "flushright\\|"
488 "menu\\|"
489 "multitable\\|"
490 "titlepage\\|"
491 "iftex\\|"
492 "ifhtml\\|"
493 "tex\\|"
494 "html"
495 "\\)")
496 "Regexp specifying environments in which paragraphs are not filled.")
498 (defvar texinfo-accent-commands
499 (concat
500 "@^\\|"
501 "@`\\|"
502 "@'\\|"
503 "@\"\\|"
504 "@,\\|"
505 "@=\\|"
506 "@~\\|"
507 "@OE{\\|"
508 "@oe{\\|"
509 "@AA{\\|"
510 "@aa{\\|"
511 "@AE{\\|"
512 "@ae{\\|"
513 "@ss{\\|"
514 "@questiondown{\\|"
515 "@exclamdown{\\|"
516 "@L{\\|"
517 "@l{\\|"
518 "@O{\\|"
519 "@o{\\|"
520 "@dotaccent{\\|"
521 "@ubaraccent{\\|"
522 "@d{\\|"
523 "@H{\\|"
524 "@ringaccent{\\|"
525 "@tieaccent{\\|"
526 "@u{\\|"
527 "@v{\\|"
528 "@dotless{"
531 (defvar texinfo-part-of-para-regexp
532 (concat
533 "^@"
534 "\\("
535 "b{\\|"
536 "bullet{\\|"
537 "cite{\\|"
538 "code{\\|"
539 "email{\\|"
540 "emph{\\|"
541 "equiv{\\|"
542 "error{\\|"
543 "expansion{\\|"
544 "file{\\|"
545 "i{\\|"
546 "inforef{\\|"
547 "kbd{\\|"
548 "key{\\|"
549 "lisp{\\|"
550 "minus{\\|"
551 "point{\\|"
552 "print{\\|"
553 "pxref{\\|"
554 "r{\\|"
555 "ref{\\|"
556 "result{\\|"
557 "samp{\\|"
558 "sc{\\|"
559 "t{\\|"
560 "TeX{\\|"
561 "today{\\|"
562 "url{\\|"
563 "var{\\|"
564 "w{\\|"
565 "xref{\\|"
566 "@-\\|" ; @- is a descretionary hyphen (not an accent) (a noop).
567 texinfo-accent-commands
568 "\\)"
570 "Regexp specifying @-commands found within paragraphs.")
572 (defun texinfo-append-refill ()
573 "Append @refill at end of each paragraph that should be filled.
574 Do not append @refill to paragraphs within @example and similar environments.
575 Do not append @refill to paragraphs containing @w{TEXT} or @*."
577 ;; It is necessary to append @refill before other processing because
578 ;; the other processing removes information that tells Texinfo
579 ;; whether the text should or should not be filled.
581 (while (< (point) (point-max))
582 (let ((refill-blank-lines "^[ \t\n]*$")
583 (case-fold-search nil)) ; Don't confuse @TeX and @tex....
584 (beginning-of-line)
585 ;; 1. Skip over blank lines;
586 ;; skip over lines beginning with @-commands,
587 ;; but do not skip over lines
588 ;; that are no-refill environments such as @example or
589 ;; that begin with within-paragraph @-commands such as @code.
590 (while (and (looking-at (concat "^@\\|^\\\\\\|" refill-blank-lines))
591 (not (looking-at
592 (concat
593 "\\("
594 texinfo-no-refill-regexp
595 "\\|"
596 texinfo-part-of-para-regexp
597 "\\)")))
598 (< (point) (point-max)))
599 (forward-line 1))
600 ;; 2. Skip over @example and similar no-refill environments.
601 (if (looking-at texinfo-no-refill-regexp)
602 (let ((environment
603 (buffer-substring (match-beginning 1) (match-end 1))))
604 (progn (re-search-forward (concat "^@end " environment) nil t)
605 (forward-line 1)))
606 ;; Else
607 ;; 3. Do not refill a paragraph containing @w or @*, or ending
608 ;; with @<newline> followed by a newline.
609 (if (or
610 (>= (point) (point-max))
611 (re-search-forward
612 "@w{\\|@\\*\\|@\n\n"
613 (save-excursion
614 (forward-paragraph)
615 (forward-line 1)
616 (point)) t))
617 ;; Go to end of paragraph and do nothing.
618 (forward-paragraph)
619 ;; 4. Else go to end of paragraph and insert @refill
620 (forward-paragraph)
621 (forward-line -1)
622 (let ((line-beg (point)))
623 (end-of-line)
624 (delete-region
625 (point)
626 (save-excursion (skip-chars-backward " \t") (point)))
627 (forward-char 1)
628 (unless (re-search-backward "@c[ \t\n]\\|@comment[ \t\n]" line-beg t)
629 (forward-char -1))
630 (unless (re-search-backward "@refill\\|@bye" line-beg t)
631 (insert "@refill")))
632 (forward-line 1))))))
635 ;;; Handle `@raisesections' and `@lowersections' commands
637 ;; These commands change the hierarchical level of chapter structuring
638 ;; commands.
640 ;; @raisesections changes @subsection to @section,
641 ;; @section to @chapter,
642 ;; etc.
644 ;; @lowersections changes @chapter to @section
645 ;; @subsection to @subsubsection,
646 ;; etc.
648 ;; An @raisesections/@lowersections command changes only those
649 ;; structuring commands that follow the @raisesections/@lowersections
650 ;; command.
652 ;; Repeated @raisesections/@lowersections continue to raise or lower
653 ;; the heading level.
655 ;; An @lowersections command cancels an @raisesections command, and
656 ;; vice versa.
658 ;; You cannot raise or lower "beyond" chapters or subsubsections, but
659 ;; trying to do so does not elicit an error---you just get more
660 ;; headings that mean the same thing as you keep raising or lowering
661 ;; (for example, after a single @raisesections, both @chapter and
662 ;; @section produce chapter headings).
664 (defun texinfo-raise-lower-sections ()
665 "Raise or lower the hierarchical level of chapters, sections, etc.
667 This function acts according to `@raisesections' and `@lowersections'
668 commands in the Texinfo file.
670 For example, an `@lowersections' command is useful if you wish to
671 include what is written as an outer or standalone Texinfo file in
672 another Texinfo file as an inner, included file. The `@lowersections'
673 command changes chapters to sections, sections to subsections and so
676 @raisesections changes @subsection to @section,
677 @section to @chapter,
678 @heading to @chapheading,
679 etc.
681 @lowersections changes @chapter to @section,
682 @subsection to @subsubsection,
683 @heading to @subheading,
684 etc.
686 An `@raisesections' or `@lowersections' command changes only those
687 structuring commands that follow the `@raisesections' or
688 `@lowersections' command.
690 An `@lowersections' command cancels an `@raisesections' command, and
691 vice versa.
693 Repeated use of the commands continue to raise or lower the hierarchical
694 level a step at a time.
696 An attempt to raise above `chapters' reproduces chapter commands; an
697 attempt to lower below subsubsections reproduces subsubsection
698 commands."
700 ;; `texinfo-section-types-regexp' is defined in `texnfo-upd.el';
701 ;; it is a regexp matching chapter, section, other headings
702 ;; (but not the top node).
704 (let (type (level 0))
705 (while
706 (re-search-forward
707 (concat
708 "\\(\\(^@\\(raise\\|lower\\)sections\\)\\|\\("
709 texinfo-section-types-regexp
710 "\\)\\)")
711 nil t)
712 (beginning-of-line)
713 (save-excursion (setq type (read (current-buffer))))
714 (cond
716 ;; 1. Increment level
717 ((eq type '@raisesections)
718 (setq level (1+ level))
719 (delete-region
720 (point) (save-excursion (forward-line 1) (point))))
722 ;; 2. Decrement level
723 ((eq type '@lowersections)
724 (setq level (1- level))
725 (delete-region
726 (point) (save-excursion (forward-line 1) (point))))
728 ;; Now handle structuring commands
729 ((cond
731 ;; 3. Raise level when positive
732 ((> level 0)
733 (let ((count level)
734 (new-level type))
735 (while (> count 0)
736 (setq new-level
737 (cdr (assq new-level texinfo-raisesections-alist)))
738 (setq count (1- count)))
739 (kill-word 1)
740 (insert (symbol-name new-level))))
742 ;; 4. Do nothing except move point when level is zero
743 ((= level 0) (forward-line 1))
745 ;; 5. Lower level when positive
746 ((< level 0)
747 (let ((count level)
748 (new-level type))
749 (while (< count 0)
750 (setq new-level
751 (cdr (assq new-level texinfo-lowersections-alist)))
752 (setq count (1+ count)))
753 (kill-word 1)
754 (insert (symbol-name new-level))))))))))
756 (defvar texinfo-raisesections-alist
757 '((@chapter . @chapter) ; Cannot go higher
758 (@unnumbered . @unnumbered)
759 (@centerchap . @unnumbered)
761 (@majorheading . @majorheading)
762 (@chapheading . @chapheading)
763 (@appendix . @appendix)
765 (@section . @chapter)
766 (@unnumberedsec . @unnumbered)
767 (@heading . @chapheading)
768 (@appendixsec . @appendix)
770 (@subsection . @section)
771 (@unnumberedsubsec . @unnumberedsec)
772 (@subheading . @heading)
773 (@appendixsubsec . @appendixsec)
775 (@subsubsection . @subsection)
776 (@unnumberedsubsubsec . @unnumberedsubsec)
777 (@subsubheading . @subheading)
778 (@appendixsubsubsec . @appendixsubsec))
779 "*An alist of next higher levels for chapters, sections. etc.
780 For example, section to chapter, subsection to section.
781 Used by `texinfo-raise-lower-sections'.
782 The keys specify types of section; the values correspond to the next
783 higher types.")
785 (defvar texinfo-lowersections-alist
786 '((@chapter . @section)
787 (@unnumbered . @unnumberedsec)
788 (@centerchap . @unnumberedsec)
789 (@majorheading . @heading)
790 (@chapheading . @heading)
791 (@appendix . @appendixsec)
793 (@section . @subsection)
794 (@unnumberedsec . @unnumberedsubsec)
795 (@heading . @subheading)
796 (@appendixsec . @appendixsubsec)
798 (@subsection . @subsubsection)
799 (@unnumberedsubsec . @unnumberedsubsubsec)
800 (@subheading . @subsubheading)
801 (@appendixsubsec . @appendixsubsubsec)
803 (@subsubsection . @subsubsection) ; Cannot go lower.
804 (@unnumberedsubsubsec . @unnumberedsubsubsec)
805 (@subsubheading . @subsubheading)
806 (@appendixsubsubsec . @appendixsubsubsec))
807 "*An alist of next lower levels for chapters, sections. etc.
808 For example, chapter to section, section to subsection.
809 Used by `texinfo-raise-lower-sections'.
810 The keys specify types of section; the values correspond to the next
811 lower types.")
814 ;;; Perform those texinfo-to-info conversions that apply to the whole input
815 ;;; uniformly.
817 (defun texinfo-format-scan ()
818 (texinfo-format-convert (point-min) (point-max))
819 ;; Scan for @-commands.
820 (goto-char (point-min))
821 (while (search-forward "@" nil t)
823 ;; These are the single-character accent commands: @^ @` @' @" @= @~
824 ;; In Info, they are simply quoted and the @ deleted.
825 ;; Other single-character commands:
826 ;; @* forces a line break,
827 ;; @- is a discretionary hyphenation point; does nothing in Info.
828 ;; @<space>, @<tab>, @<newline> each produce a single space,
829 ;; unless followed by a newline.
831 ;; Old version 2.34 expression: (looking-at "[@{}^'` *\"?!]")
832 (if (looking-at "[@{}^'`\"=~ \t\n*?!-]")
833 ;; @*, causes a line break.
834 (cond
835 ;; @*, a line break
836 ((= (following-char) ?*)
837 ;; remove command
838 (delete-region (1- (point)) (1+ (point)))
839 ;; insert return if not at end of line;
840 ;; else line is already broken.
841 (if (not (= (following-char) ?\n))
842 (insert ?\n)))
843 ;; @-, deleted
844 ((= (following-char) ?-)
845 (delete-region (1- (point)) (1+ (point))))
846 ;; @<space>, @<tab>, @<newline>: produce a single space,
847 ;; unless followed by a newline.
848 ((= (following-char) ? )
849 (delete-region (1- (point)) (1+ (point)))
850 ;; insert single space if not at end of line;
851 ;; else line is already broken.
852 (if (not (= (following-char) ?\n))
853 (insert ? )))
854 ((= (following-char) ?\t)
855 (delete-region (1- (point)) (1+ (point)))
856 ;; insert single space if not at end of line;
857 ;; else line is already broken.
858 (if (not (= (following-char) ?\n))
859 (insert ? )))
860 ;; following char is a carriage return
861 ((= (following-char) ?\n)
862 ;; remove command
863 (delete-region (1- (point)) (1+ (point)))
864 ;; insert single space if not at end of line;
865 ;; else line is already broken.
866 (if (not (= (following-char) ?\n))
867 (insert ? )))
868 ;; Otherwise: the other characters are simply quoted. Delete the @.
870 (delete-char -1)
871 (forward-char 1)))
872 ;; @ is followed by a command-word; find the end of the word.
873 (setq texinfo-command-start (1- (point)))
874 (if (= (char-syntax (following-char)) ?w)
875 (forward-word 1)
876 (forward-char 1))
877 (setq texinfo-command-end (point))
878 ;; Detect the case of two @-commands in a row;
879 ;; process just the first one.
880 (goto-char (1+ texinfo-command-start))
881 (skip-chars-forward "^@" texinfo-command-end)
882 (setq texinfo-command-end (point))
883 ;; Handle let aliasing
884 (setq texinfo-command-name
885 (let (trial
886 (cmdname
887 (buffer-substring
888 (1+ texinfo-command-start) texinfo-command-end)))
889 (while (setq trial (assoc cmdname texinfo-alias-list))
890 (setq cmdname (cdr trial)))
891 (intern cmdname)))
892 ;; Call the handler for this command.
893 (let ((enclosure-type
894 (assoc
895 (symbol-name texinfo-command-name)
896 texinfo-enclosure-list)))
897 (if enclosure-type
898 (progn
899 (insert
900 (car (car (cdr enclosure-type)))
901 (texinfo-parse-arg-discard)
902 (car (cdr (car (cdr enclosure-type)))))
903 (goto-char texinfo-command-start))
904 (let ((cmd (get texinfo-command-name 'texinfo-format)))
905 (if cmd (funcall cmd) (texinfo-unsupported)))))))
907 (cond (texinfo-stack
908 (goto-char (nth 2 (car texinfo-stack)))
909 (error "Unterminated @%s" (car (car texinfo-stack))))))
911 (put 'begin 'texinfo-format 'texinfo-format-begin)
912 (defun texinfo-format-begin ()
913 (texinfo-format-begin-end 'texinfo-format))
915 (put 'end 'texinfo-format 'texinfo-format-end)
916 (defun texinfo-format-end ()
917 (texinfo-format-begin-end 'texinfo-end))
919 (defun texinfo-format-begin-end (prop)
920 (setq texinfo-command-name (intern (texinfo-parse-line-arg)))
921 (let ((cmd (get texinfo-command-name prop)))
922 (if cmd (funcall cmd)
923 (texinfo-unsupported))))
925 ;;; Parsing functions
927 (defun texinfo-parse-line-arg ()
928 "Return argument of @-command as string.
929 Argument is separated from command either by a space or by a brace.
930 If a space, return rest of line, with beginning and ending white
931 space removed. If a brace, return string between braces.
932 Leave point after argument."
933 (goto-char texinfo-command-end)
934 (let ((start (point)))
935 (cond ((looking-at " ")
936 (skip-chars-forward " ")
937 (setq start (point))
938 (end-of-line)
939 (skip-chars-backward " ")
940 (delete-region (point) (progn (end-of-line) (point)))
941 (setq texinfo-command-end (1+ (point))))
942 ((looking-at "{")
943 (setq start (1+ (point)))
944 (forward-list 1)
945 (setq texinfo-command-end (point))
946 (forward-char -1))
948 (error "Invalid texinfo command arg format")))
949 (prog1 (buffer-substring start (point))
950 (if (eolp) (forward-char 1)))))
952 (defun texinfo-parse-expanded-arg ()
953 (goto-char texinfo-command-end)
954 (let ((start (point))
955 marker)
956 (cond ((looking-at " ")
957 (skip-chars-forward " ")
958 (setq start (point))
959 (end-of-line)
960 (setq texinfo-command-end (1+ (point))))
961 ((looking-at "{")
962 (setq start (1+ (point)))
963 (forward-list 1)
964 (setq texinfo-command-end (point))
965 (forward-char -1))
967 (error "Invalid texinfo command arg format")))
968 (setq marker (move-marker (make-marker) texinfo-command-end))
969 (texinfo-format-expand-region start (point))
970 (setq texinfo-command-end (marker-position marker))
971 (move-marker marker nil)
972 (prog1 (buffer-substring start (point))
973 (if (eolp) (forward-char 1)))))
975 (defun texinfo-format-expand-region (start end)
976 (save-restriction
977 (narrow-to-region start end)
978 (let (texinfo-command-start
979 texinfo-command-end
980 texinfo-command-name
981 texinfo-stack)
982 (texinfo-format-scan))
983 (goto-char (point-max))))
985 (defun texinfo-parse-arg-discard ()
986 "Delete command and argument; return argument of command."
987 (prog1 (texinfo-parse-line-arg)
988 (texinfo-discard-command)))
990 (defun texinfo-discard-command ()
991 (delete-region texinfo-command-start texinfo-command-end))
993 (defun texinfo-optional-braces-discard ()
994 "Discard braces following command, if any."
995 (goto-char texinfo-command-end)
996 (let ((start (point)))
997 (cond ((looking-at "[ \t]*\n")) ; do nothing
998 ((looking-at "{") ; remove braces, if any
999 (forward-list 1)
1000 (setq texinfo-command-end (point)))
1002 (error
1003 "Invalid `texinfo-optional-braces-discard' format \(need braces?\)")))
1004 (delete-region texinfo-command-start texinfo-command-end)))
1006 (defun texinfo-format-parse-line-args ()
1007 (let ((start (1- (point)))
1008 next beg end
1009 args)
1010 (skip-chars-forward " ")
1011 (while (not (eolp))
1012 (setq beg (point))
1013 (re-search-forward "[\n,]")
1014 (setq next (point))
1015 (if (bolp) (setq next (1- next)))
1016 (forward-char -1)
1017 (skip-chars-backward " ")
1018 (setq end (point))
1019 (setq args (cons (if (> end beg) (buffer-substring beg end))
1020 args))
1021 (goto-char next)
1022 (skip-chars-forward " "))
1023 (if (eolp) (forward-char 1))
1024 (setq texinfo-command-end (point))
1025 (nreverse args)))
1027 (defun texinfo-format-parse-args ()
1028 (let ((start (1- (point)))
1029 next beg end
1030 args)
1031 (search-forward "{")
1032 (save-excursion
1033 (texinfo-format-expand-region
1034 (point)
1035 (save-excursion (up-list 1) (1- (point)))))
1036 ;; The following does not handle cross references of the form:
1037 ;; `@xref{bullet, , @code{@@bullet}@{@}}.' because the
1038 ;; re-search-forward finds the first right brace after the second
1039 ;; comma.
1040 (while (/= (preceding-char) ?\})
1041 (skip-chars-forward " \t\n")
1042 (setq beg (point))
1043 (re-search-forward "[},]")
1044 (setq next (point))
1045 (forward-char -1)
1046 (skip-chars-backward " \t\n")
1047 (setq end (point))
1048 (cond ((< beg end)
1049 (goto-char beg)
1050 (while (search-forward "\n" end t)
1051 (replace-match " "))))
1052 (setq args (cons (if (> end beg) (buffer-substring beg end))
1053 args))
1054 (goto-char next))
1055 (if (eolp) (forward-char 1))
1056 (setq texinfo-command-end (point))
1057 (nreverse args)))
1059 (defun texinfo-format-parse-defun-args ()
1060 (goto-char texinfo-command-end)
1061 (let ((start (point)))
1062 (end-of-line)
1063 (setq texinfo-command-end (1+ (point)))
1064 (let ((marker (move-marker (make-marker) texinfo-command-end)))
1065 (texinfo-format-expand-region start (point))
1066 (setq texinfo-command-end (marker-position marker))
1067 (move-marker marker nil))
1068 (goto-char start)
1069 (let ((args '())
1070 beg end)
1071 (skip-chars-forward " ")
1072 (while (not (eolp))
1073 (cond ((looking-at "{")
1074 (setq beg (1+ (point)))
1075 (forward-list 1)
1076 (setq end (1- (point))))
1078 (setq beg (point))
1079 (re-search-forward "[\n ]")
1080 (forward-char -1)
1081 (setq end (point))))
1082 (setq args (cons (buffer-substring beg end) args))
1083 (skip-chars-forward " "))
1084 (forward-char 1)
1085 (nreverse args))))
1087 (defun texinfo-discard-line ()
1088 (goto-char texinfo-command-end)
1089 (skip-chars-forward " \t")
1090 (or (eolp)
1091 (error "Extraneous text at end of command line."))
1092 (goto-char texinfo-command-start)
1093 (or (bolp)
1094 (error "Extraneous text at beginning of command line."))
1095 (delete-region (point) (progn (forward-line 1) (point))))
1097 (defun texinfo-discard-line-with-args ()
1098 (goto-char texinfo-command-start)
1099 (delete-region (point) (progn (forward-line 1) (point))))
1102 ;;; @setfilename
1104 ;; Only `texinfo-format-buffer' handles @setfilename with this
1105 ;; definition; `texinfo-format-region' handles @setfilename, if any,
1106 ;; specially.
1107 (put 'setfilename 'texinfo-format 'texinfo-format-setfilename)
1108 (defun texinfo-format-setfilename ()
1109 (texinfo-parse-arg-discard))
1111 ;;; @node, @menu, @detailmenu
1113 (put 'node 'texinfo-format 'texinfo-format-node)
1114 (put 'nwnode 'texinfo-format 'texinfo-format-node)
1115 (defun texinfo-format-node ()
1116 (let* ((args (texinfo-format-parse-line-args))
1117 (name (nth 0 args))
1118 (next (nth 1 args))
1119 (prev (nth 2 args))
1120 (up (nth 3 args)))
1121 (texinfo-discard-command)
1122 (setq texinfo-last-node name)
1123 (let ((tem (if texinfo-fold-nodename-case (downcase name) name)))
1124 (if (assoc tem texinfo-node-names)
1125 (error "Duplicate node name: %s" name)
1126 (setq texinfo-node-names (cons (list tem) texinfo-node-names))))
1127 (setq texinfo-footnote-number 0)
1128 ;; insert "\n\^_" unconditionally since this is what info is looking for
1129 (insert "\n\^_\nFile: " texinfo-format-filename
1130 ", Node: " name)
1131 (if next
1132 (insert ", Next: " next))
1133 (if prev
1134 (insert ", Prev: " prev))
1135 (if up
1136 (insert ", Up: " up))
1137 (insert ?\n)
1138 (setq texinfo-last-node-pos (point))))
1140 (put 'anchor 'texinfo-format 'texinfo-anchor)
1141 (defun texinfo-anchor ()
1142 (let (anchor-string
1143 (here (- (point) 7)) ; save location of beginning of `@anchor'
1144 (arg (texinfo-parse-arg-discard)))
1145 (if (looking-at " ") ; since a space may be left after -discard
1146 (delete-char 1))
1147 (forward-paragraph)
1148 (let ((end (point)))
1149 (if (save-excursion
1150 (backward-word 1)
1151 (search-forward "@refill" end t))
1152 (setq anchor-string "@anchor-yes-refill")
1153 (setq anchor-string "@anchor-no-refill")))
1154 (goto-char here)
1155 (insert anchor-string "{" arg "}")))
1157 (put 'menu 'texinfo-format 'texinfo-format-menu)
1158 (defun texinfo-format-menu ()
1159 (texinfo-discard-line)
1160 (insert "* Menu:\n\n"))
1162 (put 'menu 'texinfo-end 'texinfo-discard-command)
1164 ;; The @detailmenu should be removed eventually.
1166 ;; According to Karl Berry, 31 August 1996:
1168 ;; You don't like, I don't like it. I agree, it would be better just to
1169 ;; fix the bug [in `makeinfo']. .. At this point, since inserting those
1170 ;; two commands in the Elisp fn is trivial, I don't especially want to
1171 ;; expend more effort...
1173 ;; I added a couple sentences of documentation to the manual (putting the
1174 ;; blame on makeinfo where it belongs :-().
1176 (put 'detailmenu 'texinfo-format 'texinfo-discard-line)
1177 (put 'detailmenu 'texinfo-end 'texinfo-discard-command)
1179 ;; (Also see `texnfo-upd.el')
1182 ;;; Cross references
1184 ;; @xref {NODE, FNAME, NAME, FILE, DOCUMENT}
1185 ;; -> *Note FNAME: (FILE)NODE
1186 ;; If FILE is missing,
1187 ;; *Note FNAME: NODE
1188 ;; If FNAME is empty and NAME is present
1189 ;; *Note NAME: Node
1190 ;; If both NAME and FNAME are missing
1191 ;; *Note NODE::
1192 ;; texinfo ignores the DOCUMENT argument.
1193 ;; -> See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
1194 ;; If FILE is specified, (FILE)NODE is used for xrefs.
1195 ;; If fifth argument DOCUMENT is specified, produces
1196 ;; See section <xref to NODE> [NAME, else NODE], page <xref to NODE>
1197 ;; of DOCUMENT
1199 ;; @ref a reference that does not put `See' or `see' in
1200 ;; the hardcopy and is the same as @xref in Info
1201 (put 'ref 'texinfo-format 'texinfo-format-xref)
1203 (put 'xref 'texinfo-format 'texinfo-format-xref)
1204 (defun texinfo-format-xref ()
1205 (let ((args (texinfo-format-parse-args)))
1206 (texinfo-discard-command)
1207 (insert "*Note ")
1208 (let ((fname (or (nth 1 args) (nth 2 args))))
1209 (if (null (or fname (nth 3 args)))
1210 (insert (car args) "::")
1211 (insert (or fname (car args)) ": ")
1212 (if (nth 3 args)
1213 (insert "(" (nth 3 args) ")"))
1214 (and (car args) (insert (car args)))))))
1216 (put 'pxref 'texinfo-format 'texinfo-format-pxref)
1217 (defun texinfo-format-pxref ()
1218 (texinfo-format-xref)
1219 (or (save-excursion
1220 (forward-char -2)
1221 (looking-at "::"))
1222 (insert ".")))
1224 ;; @inforef{NODE, FNAME, FILE}
1225 ;; Like @xref{NODE, FNAME,,FILE} in texinfo.
1226 ;; In Tex, generates "See Info file FILE, node NODE"
1227 (put 'inforef 'texinfo-format 'texinfo-format-inforef)
1228 (defun texinfo-format-inforef ()
1229 (let ((args (texinfo-format-parse-args)))
1230 (texinfo-discard-command)
1231 (if (nth 1 args)
1232 (insert "*Note " (nth 1 args) ": (" (nth 2 args) ")" (car args))
1233 (insert "*Note " "(" (nth 2 args) ")" (car args) "::"))))
1236 ;;; URL Reference: @uref
1238 ;; @uref produces a reference to a uniform resource locator (URL).
1239 ;; It takes one mandatory argument, the URL, and one optional argument,
1240 ;; the text to display (the default is the URL itself).
1242 (put 'uref 'texinfo-format 'texinfo-format-uref)
1243 (defun texinfo-format-uref ()
1244 "Format URL and optional URL-TITLE.
1245 Insert ` ... ' around URL if no URL-TITLE argument;
1246 otherwise, insert URL-TITLE followed by URL in parentheses."
1247 (let ((args (texinfo-format-parse-args)))
1248 (texinfo-discard-command)
1249 ;; if url-title
1250 (if (nth 1 args)
1251 (insert (nth 1 args) " (" (nth 0 args) ")")
1252 (insert "`" (nth 0 args) "'"))
1253 (goto-char texinfo-command-start)))
1256 ;;; Section headings
1258 (put 'majorheading 'texinfo-format 'texinfo-format-chapter)
1259 (put 'chapheading 'texinfo-format 'texinfo-format-chapter)
1260 (put 'ichapter 'texinfo-format 'texinfo-format-chapter)
1261 (put 'chapter 'texinfo-format 'texinfo-format-chapter)
1262 (put 'iappendix 'texinfo-format 'texinfo-format-chapter)
1263 (put 'appendix 'texinfo-format 'texinfo-format-chapter)
1264 (put 'iunnumbered 'texinfo-format 'texinfo-format-chapter)
1265 (put 'top 'texinfo-format 'texinfo-format-chapter)
1266 (put 'unnumbered 'texinfo-format 'texinfo-format-chapter)
1267 (put 'centerchap 'texinfo-format 'texinfo-format-chapter)
1268 (defun texinfo-format-chapter ()
1269 (texinfo-format-chapter-1 ?*))
1271 (put 'heading 'texinfo-format 'texinfo-format-section)
1272 (put 'isection 'texinfo-format 'texinfo-format-section)
1273 (put 'section 'texinfo-format 'texinfo-format-section)
1274 (put 'iappendixsection 'texinfo-format 'texinfo-format-section)
1275 (put 'appendixsection 'texinfo-format 'texinfo-format-section)
1276 (put 'iappendixsec 'texinfo-format 'texinfo-format-section)
1277 (put 'appendixsec 'texinfo-format 'texinfo-format-section)
1278 (put 'iunnumberedsec 'texinfo-format 'texinfo-format-section)
1279 (put 'unnumberedsec 'texinfo-format 'texinfo-format-section)
1280 (defun texinfo-format-section ()
1281 (texinfo-format-chapter-1 ?=))
1283 (put 'subheading 'texinfo-format 'texinfo-format-subsection)
1284 (put 'isubsection 'texinfo-format 'texinfo-format-subsection)
1285 (put 'subsection 'texinfo-format 'texinfo-format-subsection)
1286 (put 'iappendixsubsec 'texinfo-format 'texinfo-format-subsection)
1287 (put 'appendixsubsec 'texinfo-format 'texinfo-format-subsection)
1288 (put 'iunnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
1289 (put 'unnumberedsubsec 'texinfo-format 'texinfo-format-subsection)
1290 (defun texinfo-format-subsection ()
1291 (texinfo-format-chapter-1 ?-))
1293 (put 'subsubheading 'texinfo-format 'texinfo-format-subsubsection)
1294 (put 'isubsubsection 'texinfo-format 'texinfo-format-subsubsection)
1295 (put 'subsubsection 'texinfo-format 'texinfo-format-subsubsection)
1296 (put 'iappendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1297 (put 'appendixsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1298 (put 'iunnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1299 (put 'unnumberedsubsubsec 'texinfo-format 'texinfo-format-subsubsection)
1300 (defun texinfo-format-subsubsection ()
1301 (texinfo-format-chapter-1 ?.))
1303 (defun texinfo-format-chapter-1 (belowchar)
1304 (let ((arg (texinfo-parse-arg-discard)))
1305 (message "Formatting: %s ... " arg) ; So we can see where we are.
1306 (insert ?\n arg ?\n "@SectionPAD " belowchar ?\n)
1307 (forward-line -2)))
1309 (put 'SectionPAD 'texinfo-format 'texinfo-format-sectionpad)
1310 (defun texinfo-format-sectionpad ()
1311 (let ((str (texinfo-parse-arg-discard)))
1312 (forward-char -1)
1313 (let ((column (current-column)))
1314 (forward-char 1)
1315 (while (> column 0)
1316 (insert str)
1317 (setq column (1- column))))
1318 (insert ?\n)))
1321 ;;; Space controlling commands: @. and @:, and the soft hyphen.
1323 (put '\. 'texinfo-format 'texinfo-format-\.)
1324 (defun texinfo-format-\. ()
1325 (texinfo-discard-command)
1326 (insert "."))
1328 (put '\: 'texinfo-format 'texinfo-format-\:)
1329 (defun texinfo-format-\: ()
1330 (texinfo-discard-command))
1332 (put '\- 'texinfo-format 'texinfo-format-soft-hyphen)
1333 (defun texinfo-format-soft-hyphen ()
1334 (texinfo-discard-command))
1337 ;;; @center, @sp, and @br
1339 (put 'center 'texinfo-format 'texinfo-format-center)
1340 (defun texinfo-format-center ()
1341 (let ((arg (texinfo-parse-expanded-arg)))
1342 (texinfo-discard-command)
1343 (insert arg)
1344 (insert ?\n)
1345 (save-restriction
1346 (goto-char (1- (point)))
1347 (let ((indent-tabs-mode nil))
1348 (center-line)))))
1350 (put 'sp 'texinfo-format 'texinfo-format-sp)
1351 (defun texinfo-format-sp ()
1352 (let* ((arg (texinfo-parse-arg-discard))
1353 (num (read arg)))
1354 (insert-char ?\n num)))
1356 (put 'br 'texinfo-format 'texinfo-format-paragraph-break)
1357 (defun texinfo-format-paragraph-break ()
1358 "Force a paragraph break.
1359 If used within a line, follow `@br' with braces."
1360 (texinfo-optional-braces-discard)
1361 ;; insert one return if at end of line;
1362 ;; else insert two returns, to generate a blank line.
1363 (if (= (following-char) ?\n)
1364 (insert ?\n)
1365 (insert-char ?\n 2)))
1368 ;;; @footnote and @footnotestyle
1370 ;; In Texinfo, footnotes are created with the `@footnote' command.
1371 ;; This command is followed immediately by a left brace, then by the text of
1372 ;; the footnote, and then by a terminating right brace. The
1373 ;; template for a footnote is:
1375 ;; @footnote{TEXT}
1377 ;; Info has two footnote styles:
1379 ;; * In the End of node style, all the footnotes for a single node
1380 ;; are placed at the end of that node. The footnotes are
1381 ;; separated from the rest of the node by a line of dashes with
1382 ;; the word `Footnotes' within it.
1384 ;; * In the Separate node style, all the footnotes for a single node
1385 ;; are placed in an automatically constructed node of their own.
1387 ;; Footnote style is specified by the @footnotestyle command, either
1388 ;; @footnotestyle separate
1389 ;; or
1390 ;; @footnotestyle end
1392 ;; The default is separate
1394 (defvar texinfo-footnote-style "separate"
1395 "Footnote style, either separate or end.")
1397 (put 'footnotestyle 'texinfo-format 'texinfo-footnotestyle)
1398 (defun texinfo-footnotestyle ()
1399 "Specify whether footnotes are at end of node or in separate nodes.
1400 Argument is either end or separate."
1401 (setq texinfo-footnote-style (texinfo-parse-arg-discard)))
1403 (defvar texinfo-footnote-number)
1405 (put 'footnote 'texinfo-format 'texinfo-format-footnote)
1406 (defun texinfo-format-footnote ()
1407 "Format a footnote in either end of node or separate node style.
1408 The texinfo-footnote-style variable controls which style is used."
1409 (setq texinfo-footnote-number (1+ texinfo-footnote-number))
1410 (cond ((string= texinfo-footnote-style "end")
1411 (texinfo-format-end-node))
1412 ((string= texinfo-footnote-style "separate")
1413 (texinfo-format-separate-node))))
1415 (defun texinfo-format-separate-node ()
1416 "Format footnote in Separate node style, with notes in own node.
1417 The node is constructed automatically."
1418 (let* (start
1419 (arg (texinfo-parse-line-arg))
1420 (node-name-beginning
1421 (save-excursion
1422 (re-search-backward
1423 "^File: \\w+\\(\\w\\|\\s_\\|\\.\\|,\\)*[ \t]+Node:")
1424 (match-end 0)))
1425 (node-name
1426 (save-excursion
1427 (buffer-substring
1428 (progn (goto-char node-name-beginning) ; skip over node command
1429 (skip-chars-forward " \t") ; and over spaces
1430 (point))
1431 (if (search-forward
1433 (save-excursion (end-of-line) (point)) t) ; bound search
1434 (1- (point))
1435 (end-of-line) (point))))))
1436 (texinfo-discard-command) ; remove or insert whitespace, as needed
1437 (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
1438 (point))
1439 (insert (format " (%d) (*Note %s-Footnotes::)"
1440 texinfo-footnote-number node-name))
1441 (fill-paragraph nil)
1442 (save-excursion
1443 (if (re-search-forward "^@node" nil 'move)
1444 (forward-line -1))
1446 ;; two cases: for the first footnote, we must insert a node header;
1447 ;; for the second and subsequent footnotes, we need only insert
1448 ;; the text of the footnote.
1450 (if (save-excursion
1451 (re-search-backward
1452 (concat node-name "-Footnotes, Up: ")
1453 node-name-beginning
1455 (progn ; already at least one footnote
1456 (setq start (point))
1457 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1458 (fill-region start (point)))
1459 ;; else not yet a footnote
1460 (insert "\n\^_\nFile: " texinfo-format-filename
1461 " Node: " node-name "-Footnotes, Up: " node-name "\n")
1462 (setq start (point))
1463 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1464 (fill-region start (point))))))
1466 (defun texinfo-format-end-node ()
1467 "Format footnote in the End of node style, with notes at end of node."
1468 (let (start
1469 (arg (texinfo-parse-line-arg)))
1470 (texinfo-discard-command) ; remove or insert whitespace, as needed
1471 (delete-region (save-excursion (skip-chars-backward " \t\n") (point))
1472 (point))
1473 (insert (format " (%d) " texinfo-footnote-number))
1474 (fill-paragraph nil)
1475 (save-excursion
1476 (if (search-forward "\n--------- Footnotes ---------\n" nil t)
1477 (progn ; already have footnote, put new one before end of node
1478 (if (re-search-forward "^@node" nil 'move)
1479 (forward-line -1))
1480 (setq start (point))
1481 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))
1482 (fill-region start (point)))
1483 ;; else no prior footnote
1484 (if (re-search-forward "^@node" nil 'move)
1485 (forward-line -1))
1486 (insert "\n--------- Footnotes ---------\n")
1487 (setq start (point))
1488 (insert (format "\n(%d) %s\n" texinfo-footnote-number arg))))))
1491 ;;; @itemize, @enumerate, and similar commands
1493 ;; @itemize pushes (itemize "COMMANDS" STARTPOS) on texinfo-stack.
1494 ;; @enumerate pushes (enumerate 0 STARTPOS).
1495 ;; @item dispatches to the texinfo-item prop of the first elt of the list.
1496 ;; For itemize, this puts in and rescans the COMMANDS.
1497 ;; For enumerate, this increments the number and puts it in.
1498 ;; In either case, it puts a Backspace at the front of the line
1499 ;; which marks it not to be indented later.
1500 ;; All other lines get indented by 5 when the @end is reached.
1502 (defvar texinfo-stack-depth 0
1503 "Count of number of unpopped texinfo-push-stack calls.
1504 Used by @refill indenting command to avoid indenting within lists, etc.")
1506 (defun texinfo-push-stack (check arg)
1507 (setq texinfo-stack-depth (1+ texinfo-stack-depth))
1508 (setq texinfo-stack
1509 (cons (list check arg texinfo-command-start)
1510 texinfo-stack)))
1512 (defun texinfo-pop-stack (check)
1513 (setq texinfo-stack-depth (1- texinfo-stack-depth))
1514 (if (null texinfo-stack)
1515 (error "Unmatched @end %s" check))
1516 (if (not (eq (car (car texinfo-stack)) check))
1517 (error "@end %s matches @%s"
1518 check (car (car texinfo-stack))))
1519 (prog1 (cdr (car texinfo-stack))
1520 (setq texinfo-stack (cdr texinfo-stack))))
1522 (put 'itemize 'texinfo-format 'texinfo-itemize)
1523 (defun texinfo-itemize ()
1524 (texinfo-push-stack
1525 'itemize
1526 (progn (skip-chars-forward " \t")
1527 (if (eolp)
1528 "@bullet"
1529 (texinfo-parse-line-arg))))
1530 (texinfo-discard-line-with-args)
1531 (setq fill-column (- fill-column 5)))
1533 (put 'itemize 'texinfo-end 'texinfo-end-itemize)
1534 (defun texinfo-end-itemize ()
1535 (setq fill-column (+ fill-column 5))
1536 (texinfo-discard-command)
1537 (let ((stacktop
1538 (texinfo-pop-stack 'itemize)))
1539 (texinfo-do-itemize (nth 1 stacktop))))
1541 (put 'enumerate 'texinfo-format 'texinfo-enumerate)
1542 (defun texinfo-enumerate ()
1543 (texinfo-push-stack
1544 'enumerate
1545 (progn (skip-chars-forward " \t")
1546 (if (eolp)
1548 (read (current-buffer)))))
1549 (if (and (symbolp (car (cdr (car texinfo-stack))))
1550 (> 1 (length (symbol-name (car (cdr (car texinfo-stack)))))))
1551 (error
1552 "@enumerate: Use a number or letter, eg: 1, A, a, 3, B, or d." ))
1553 (texinfo-discard-line-with-args)
1554 (setq fill-column (- fill-column 5)))
1556 (put 'enumerate 'texinfo-end 'texinfo-end-enumerate)
1557 (defun texinfo-end-enumerate ()
1558 (setq fill-column (+ fill-column 5))
1559 (texinfo-discard-command)
1560 (let ((stacktop
1561 (texinfo-pop-stack 'enumerate)))
1562 (texinfo-do-itemize (nth 1 stacktop))))
1564 ;; @alphaenumerate never became a standard part of Texinfo
1565 (put 'alphaenumerate 'texinfo-format 'texinfo-alphaenumerate)
1566 (defun texinfo-alphaenumerate ()
1567 (texinfo-push-stack 'alphaenumerate (1- ?a))
1568 (setq fill-column (- fill-column 5))
1569 (texinfo-discard-line))
1571 (put 'alphaenumerate 'texinfo-end 'texinfo-end-alphaenumerate)
1572 (defun texinfo-end-alphaenumerate ()
1573 (setq fill-column (+ fill-column 5))
1574 (texinfo-discard-command)
1575 (let ((stacktop
1576 (texinfo-pop-stack 'alphaenumerate)))
1577 (texinfo-do-itemize (nth 1 stacktop))))
1579 ;; @capsenumerate never became a standard part of Texinfo
1580 (put 'capsenumerate 'texinfo-format 'texinfo-capsenumerate)
1581 (defun texinfo-capsenumerate ()
1582 (texinfo-push-stack 'capsenumerate (1- ?A))
1583 (setq fill-column (- fill-column 5))
1584 (texinfo-discard-line))
1586 (put 'capsenumerate 'texinfo-end 'texinfo-end-capsenumerate)
1587 (defun texinfo-end-capsenumerate ()
1588 (setq fill-column (+ fill-column 5))
1589 (texinfo-discard-command)
1590 (let ((stacktop
1591 (texinfo-pop-stack 'capsenumerate)))
1592 (texinfo-do-itemize (nth 1 stacktop))))
1594 ;; At the @end, indent all the lines within the construct
1595 ;; except those marked with backspace. FROM says where
1596 ;; construct started.
1597 (defun texinfo-do-itemize (from)
1598 (save-excursion
1599 (while (progn (forward-line -1)
1600 (>= (point) from))
1601 (if (= (following-char) ?\b)
1602 (save-excursion
1603 (delete-char 1)
1604 (end-of-line)
1605 (delete-char 6))
1606 (if (not (looking-at "[ \t]*$"))
1607 (save-excursion (insert " ")))))))
1609 (put 'item 'texinfo-format 'texinfo-item)
1610 (put 'itemx 'texinfo-format 'texinfo-item)
1611 (defun texinfo-item ()
1612 (funcall (get (car (car texinfo-stack)) 'texinfo-item)))
1614 (put 'itemize 'texinfo-item 'texinfo-itemize-item)
1615 (defun texinfo-itemize-item ()
1616 ;; (texinfo-discard-line) ; Did not handle text on same line as @item.
1617 (delete-region (1+ (point)) (save-excursion (beginning-of-line) (point)))
1618 (if (looking-at "[ \t]*[^ \t\n]+")
1619 ;; Text on same line as @item command.
1620 (insert "\b " (nth 1 (car texinfo-stack)) " \n")
1621 ;; Else text on next line.
1622 (insert "\b " (nth 1 (car texinfo-stack)) " "))
1623 (forward-line -1))
1625 (put 'enumerate 'texinfo-item 'texinfo-enumerate-item)
1626 (defun texinfo-enumerate-item ()
1627 (texinfo-discard-line)
1628 (let (enumerating-symbol)
1629 (cond ((integerp (car (cdr (car texinfo-stack))))
1630 (setq enumerating-symbol (car (cdr (car texinfo-stack))))
1631 (insert ?\b (format "%3d. " enumerating-symbol) ?\n)
1632 (setcar (cdr (car texinfo-stack)) (1+ enumerating-symbol)))
1633 ((symbolp (car (cdr (car texinfo-stack))))
1634 (setq enumerating-symbol
1635 (symbol-name (car (cdr (car texinfo-stack)))))
1636 (if (or (equal ?\[ (string-to-char enumerating-symbol))
1637 (equal ?\{ (string-to-char enumerating-symbol)))
1638 (error
1639 "Too many items in enumerated list; alphabet ends at Z."))
1640 (insert ?\b (format "%3s. " enumerating-symbol) ?\n)
1641 (setcar (cdr (car texinfo-stack))
1642 (make-symbol
1643 (char-to-string
1644 (1+
1645 (string-to-char enumerating-symbol))))))
1647 (error
1648 "@enumerate: Use a number or letter, eg: 1, A, a, 3, B or d." )))
1649 (forward-line -1)))
1651 (put 'alphaenumerate 'texinfo-item 'texinfo-alphaenumerate-item)
1652 (defun texinfo-alphaenumerate-item ()
1653 (texinfo-discard-line)
1654 (let ((next (1+ (car (cdr (car texinfo-stack))))))
1655 (if (> next ?z)
1656 (error "More than 26 items in @alphaenumerate; get a bigger alphabet."))
1657 (setcar (cdr (car texinfo-stack)) next)
1658 (insert "\b " next ". \n"))
1659 (forward-line -1))
1661 (put 'capsenumerate 'texinfo-item 'texinfo-capsenumerate-item)
1662 (defun texinfo-capsenumerate-item ()
1663 (texinfo-discard-line)
1664 (let ((next (1+ (car (cdr (car texinfo-stack))))))
1665 (if (> next ?Z)
1666 (error "More than 26 items in @capsenumerate; get a bigger alphabet."))
1667 (setcar (cdr (car texinfo-stack)) next)
1668 (insert "\b " next ". \n"))
1669 (forward-line -1))
1672 ;;; @table
1674 ;; The `@table' command produces two-column tables.
1676 (put 'table 'texinfo-format 'texinfo-table)
1677 (defun texinfo-table ()
1678 (texinfo-push-stack
1679 'table
1680 (progn (skip-chars-forward " \t")
1681 (if (eolp)
1682 "@asis"
1683 (texinfo-parse-line-arg))))
1684 (texinfo-discard-line-with-args)
1685 (setq fill-column (- fill-column 5)))
1687 (put 'table 'texinfo-item 'texinfo-table-item)
1688 (defun texinfo-table-item ()
1689 (let ((arg (texinfo-parse-arg-discard))
1690 (itemfont (car (cdr (car texinfo-stack)))))
1691 (insert ?\b itemfont ?\{ arg "}\n \n"))
1692 (forward-line -2))
1694 (put 'table 'texinfo-end 'texinfo-end-table)
1695 (defun texinfo-end-table ()
1696 (setq fill-column (+ fill-column 5))
1697 (texinfo-discard-command)
1698 (let ((stacktop
1699 (texinfo-pop-stack 'table)))
1700 (texinfo-do-itemize (nth 1 stacktop))))
1702 ;; @description appears to be an undocumented variant on @table that
1703 ;; does not require an arg. It fails in texinfo.tex 2.58 and is not
1704 ;; part of makeinfo.c The command appears to be a relic of the past.
1705 (put 'description 'texinfo-end 'texinfo-end-table)
1706 (put 'description 'texinfo-format 'texinfo-description)
1707 (defun texinfo-description ()
1708 (texinfo-push-stack 'table "@asis")
1709 (setq fill-column (- fill-column 5))
1710 (texinfo-discard-line))
1713 ;;; @ftable, @vtable
1715 ;; The `@ftable' and `@vtable' commands are like the `@table' command
1716 ;; but they also insert each entry in the first column of the table
1717 ;; into the function or variable index.
1719 ;; Handle the @ftable and @vtable commands:
1721 (put 'ftable 'texinfo-format 'texinfo-ftable)
1722 (put 'vtable 'texinfo-format 'texinfo-vtable)
1724 (defun texinfo-ftable () (texinfo-indextable 'ftable))
1725 (defun texinfo-vtable () (texinfo-indextable 'vtable))
1727 (defun texinfo-indextable (table-type)
1728 (texinfo-push-stack table-type (texinfo-parse-arg-discard))
1729 (setq fill-column (- fill-column 5)))
1731 ;; Handle the @item commands within ftable and vtable:
1733 (put 'ftable 'texinfo-item 'texinfo-ftable-item)
1734 (put 'vtable 'texinfo-item 'texinfo-vtable-item)
1736 (defun texinfo-ftable-item () (texinfo-indextable-item 'texinfo-findex))
1737 (defun texinfo-vtable-item () (texinfo-indextable-item 'texinfo-vindex))
1739 (defun texinfo-indextable-item (index-type)
1740 (let ((item (texinfo-parse-arg-discard))
1741 (itemfont (car (cdr (car texinfo-stack))))
1742 (indexvar index-type))
1743 (insert ?\b itemfont ?\{ item "}\n \n")
1744 (set indexvar
1745 (cons
1746 (list item texinfo-last-node)
1747 (symbol-value indexvar)))
1748 (forward-line -2)))
1750 ;; Handle @end ftable, @end vtable
1752 (put 'ftable 'texinfo-end 'texinfo-end-ftable)
1753 (put 'vtable 'texinfo-end 'texinfo-end-vtable)
1755 (defun texinfo-end-ftable () (texinfo-end-indextable 'ftable))
1756 (defun texinfo-end-vtable () (texinfo-end-indextable 'vtable))
1758 (defun texinfo-end-indextable (table-type)
1759 (setq fill-column (+ fill-column 5))
1760 (texinfo-discard-command)
1761 (let ((stacktop
1762 (texinfo-pop-stack table-type)))
1763 (texinfo-do-itemize (nth 1 stacktop))))
1766 ;;; @multitable ... @end multitable
1768 ;; Produce a multi-column table, with as many columns as desired.
1770 ;; A multi-column table has this template:
1772 ;; @multitable {A1} {A2} {A3}
1773 ;; @item A1 @tab A2 @tab A3
1774 ;; @item B1 @tab B2 @tab B3
1775 ;; @item C1 @tab C2 @tab C3
1776 ;; @end multitable
1778 ;; where the width of the text in brackets specifies the width of the
1779 ;; respective column.
1781 ;; Or else:
1783 ;; @multitable @columnfractions .25 .3 .45
1784 ;; @item A1 @tab A2 @tab A3
1785 ;; @item B1 @tab B2 @tab B3
1786 ;; @end multitable
1788 ;; where the fractions specify the width of each column as a percent
1789 ;; of the current width of the text (i.e., of the fill-column).
1791 ;; Long lines of text are filled within columns.
1793 ;; Using the Emacs Lisp formatter, texinfmt.el,
1794 ;; the whitespace between columns can be increased by setting
1795 ;; `texinfo-extra-inter-column-width' to a value greater than 0. By default,
1796 ;; there is at least one blank space between columns.
1798 ;; The Emacs Lisp formatter, texinfmt.el, ignores the following four
1799 ;; commands that are defined in texinfo.tex for printed output.
1801 ;; @multitableparskip,
1802 ;; @multitableparindent,
1803 ;; @multitablecolmargin,
1804 ;; @multitablelinespace.
1806 ;; How @multitable works.
1807 ;; =====================
1809 ;; `texinfo-multitable' reads the @multitable line and determines from it
1810 ;; how wide each column should be.
1812 ;; Also, it pushes this information, along with an identifying symbol,
1813 ;; onto the `texinfo-stack'. At the @end multitable command, the stack
1814 ;; is checked for its matching @multitable command, and then popped, or
1815 ;; else an error is signaled. Also, this command pushes the location of
1816 ;; the start of the table onto the stack.
1818 ;; `texinfo-end-multitable' checks the `texinfo-stack' that the @end
1819 ;; multitable truly is ending a corresponding beginning, and if it is,
1820 ;; pops the stack.
1822 ;; `texinfo-multitable-widths' is called by `texinfo-multitable'.
1823 ;; The function returns a list of the widths of each column in a
1824 ;; multi-column table, based on the information supplied by the arguments
1825 ;; to the @multitable command (by arguments, I mean the text on the rest
1826 ;; of the @multitable line, not the remainder of the multi-column table
1827 ;; environment).
1829 ;; `texinfo-multitable-item' formats a row within a multicolumn table.
1830 ;; This command is executed when texinfmt sees @item inside @multitable.
1831 ;; Cells in row are separated by `@tab's. Widths of cells are specified
1832 ;; by the arguments in the @multitable line. Cells are filled. All cells
1833 ;; are made to be the same height by padding their bottoms, as needed,
1834 ;; with blanks.
1836 ;; `texinfo-multitable-extract-row' is called by `texinfo-multitable-item'.
1837 ;; This function returns the text in a multitable row, as a string.
1838 ;; The start of a row is marked by an @item and the end of row is the
1839 ;; beginning of next @item or beginning of the @end multitable line.
1840 ;; Cells within a row are separated by @tab.
1842 ;; Note that @tab, the cell separators, are not treated as independent
1843 ;; Texinfo commands.
1845 (defvar texinfo-extra-inter-column-width 0
1846 "*Number of extra spaces between entries (columns) in @multitable.")
1848 (defvar texinfo-multitable-buffer-name "*multitable-temporary-buffer*")
1849 (defvar texinfo-multitable-rectangle-name "texinfo-multitable-temp-")
1851 ;; These commands are defined in texinfo.tex for printed output.
1852 (put 'multitableparskip 'texinfo-format 'texinfo-discard-line-with-args)
1853 (put 'multitableparindent 'texinfo-format 'texinfo-discard-line-with-args)
1854 (put 'multitablecolmargin 'texinfo-format 'texinfo-discard-line-with-args)
1855 (put 'multitablelinespace 'texinfo-format 'texinfo-discard-line-with-args)
1857 (put 'multitable 'texinfo-format 'texinfo-multitable)
1859 (defun texinfo-multitable ()
1860 "Produce multi-column tables.
1862 A multi-column table has this template:
1864 @multitable {A1} {A2} {A3}
1865 @item A1 @tab A2 @tab A3
1866 @item B1 @tab B2 @tab B3
1867 @item C1 @tab C2 @tab C3
1868 @end multitable
1870 where the width of the text in brackets specifies the width of the
1871 respective column.
1873 Or else:
1875 @multitable @columnfractions .25 .3 .45
1876 @item A1 @tab A2 @tab A3
1877 @item B1 @tab B2 @tab B3
1878 @end multitable
1880 where the fractions specify the width of each column as a percent
1881 of the current width of the text (i.e., of the fill-column).
1883 Long lines of text are filled within columns.
1885 Using the Emacs Lisp formatter, texinfmt.el,
1886 the whitespace between columns can be increased by setting
1887 `texinfo-extra-inter-column-width' to a value greater than 0. By default,
1888 there is at least one blank space between columns.
1890 The Emacs Lisp formatter, texinfmt.el, ignores the following four
1891 commands that are defined in texinfo.tex for printed output.
1893 @multitableparskip,
1894 @multitableparindent,
1895 @multitablecolmargin,
1896 @multitablelinespace."
1898 ;; This function pushes information onto the `texinfo-stack'.
1899 ;; A stack element consists of:
1900 ;; - type-of-command, i.e., multitable
1901 ;; - the information about column widths, and
1902 ;; - the position of texinfo-command-start.
1903 ;; e.g., ('multitable (1 2 3 4) 123)
1904 ;; The command line is then deleted.
1905 (texinfo-push-stack
1906 'multitable
1907 ;; push width information on stack
1908 (texinfo-multitable-widths))
1909 (texinfo-discard-line-with-args))
1911 (put 'multitable 'texinfo-end 'texinfo-end-multitable)
1912 (defun texinfo-end-multitable ()
1913 "Discard the @end multitable line and pop the stack of multitable."
1914 (texinfo-discard-command)
1915 (texinfo-pop-stack 'multitable))
1917 (defun texinfo-multitable-widths ()
1918 "Return list of widths of each column in a multi-column table."
1919 (let (texinfo-multitable-width-list)
1920 ;; Fractions format:
1921 ;; @multitable @columnfractions .25 .3 .45
1923 ;; Template format:
1924 ;; @multitable {Column 1 template} {Column 2} {Column 3 example}
1925 ;; Place point before first argument
1926 (skip-chars-forward " \t")
1927 (cond
1928 ;; Check for common misspelling
1929 ((looking-at "@columnfraction ")
1930 (error "In @multitable, @columnfractions misspelled"))
1931 ;; Case 1: @columnfractions .25 .3 .45
1932 ((looking-at "@columnfractions")
1933 (forward-word 1)
1934 (while (not (eolp))
1935 (setq texinfo-multitable-width-list
1936 (cons
1937 (truncate
1939 (* fill-column (read (get-buffer (current-buffer))))))
1940 texinfo-multitable-width-list))))
1942 ;; Case 2: {Column 1 template} {Column 2} {Column 3 example}
1943 ((looking-at "{")
1944 (let ((start-of-templates (point)))
1945 (while (not (eolp))
1946 (skip-chars-forward " \t")
1947 (let* ((start-of-template (1+ (point)))
1948 (end-of-template
1949 ;; forward-sexp works with braces in Texinfo mode
1950 (progn (forward-sexp 1) (1- (point)))))
1951 (setq texinfo-multitable-width-list
1952 (cons (- end-of-template start-of-template)
1953 texinfo-multitable-width-list))
1954 ;; Remove carriage return from within a template, if any.
1955 ;; This helps those those who want to use more than
1956 ;; one line's worth of words in @multitable line.
1957 (narrow-to-region start-of-template end-of-template)
1958 (goto-char (point-min))
1959 (while (search-forward "
1960 " nil t)
1961 (delete-char -1))
1962 (goto-char (point-max))
1963 (widen)
1964 (forward-char 1)))))
1966 ;; Case 3: Trouble
1968 (error
1969 "You probably need to specify column widths for @multitable correctly.")))
1970 ;; Check whether columns fit on page.
1971 (let ((desired-columns
1973 ;; between column spaces
1974 (length texinfo-multitable-width-list)
1975 ;; additional between column spaces, if any
1976 texinfo-extra-inter-column-width
1977 ;; sum of spaces for each entry
1978 (apply '+ texinfo-multitable-width-list))))
1979 (if (> desired-columns fill-column)
1980 (error
1981 (format
1982 "Multi-column table width, %d chars, is greater than page width, %d chars."
1983 desired-columns fill-column))))
1984 texinfo-multitable-width-list))
1986 ;; @item A1 @tab A2 @tab A3
1987 (defun texinfo-multitable-extract-row ()
1988 "Return multitable row, as a string.
1989 End of row is beginning of next @item or beginning of @end.
1990 Cells within rows are separated by @tab."
1991 (skip-chars-forward " \t")
1992 (let* ((start (point))
1993 (end (progn
1994 (re-search-forward "@item\\|@end")
1995 (match-beginning 0)))
1996 (row (progn (goto-char end)
1997 (skip-chars-backward " ")
1998 ;; remove whitespace at end of argument
1999 (delete-region (point) end)
2000 (buffer-substring start (point)))))
2001 (delete-region texinfo-command-start end)
2002 row))
2004 (put 'multitable 'texinfo-item 'texinfo-multitable-item)
2005 (defun texinfo-multitable-item ()
2006 "Format a row within a multicolumn table.
2007 Cells in row are separated by @tab.
2008 Widths of cells are specified by the arguments in the @multitable line.
2009 All cells are made to be the same height.
2010 This command is executed when texinfmt sees @item inside @multitable."
2011 (let ((original-buffer (current-buffer))
2012 (table-widths (reverse (car (cdr (car texinfo-stack)))))
2013 (existing-fill-column fill-column)
2014 start
2016 (table-column 0)
2017 (table-entry-height 0)
2018 ;; unformatted row looks like: A1 @tab A2 @tab A3
2019 ;; extract-row command deletes the source line in the table.
2020 (unformated-row (texinfo-multitable-extract-row)))
2021 ;; Use a temporary buffer
2022 (set-buffer (get-buffer-create texinfo-multitable-buffer-name))
2023 (delete-region (point-min) (point-max))
2024 (insert unformated-row)
2025 (goto-char (point-min))
2026 ;; 1. Check for correct number of @tab in line.
2027 (let ((tab-number 1)) ; one @tab between two columns
2028 (while (search-forward "@tab" nil t)
2029 (setq tab-number (1+ tab-number)))
2030 (if (/= tab-number (length table-widths))
2031 (error "Wrong number of @tab's in a @multitable row.")))
2032 (goto-char (point-min))
2033 ;; 2. Format each cell, and copy to a rectangle
2034 ;; buffer looks like this: A1 @tab A2 @tab A3
2035 ;; Cell #1: format up to @tab
2036 ;; Cell #2: format up to @tab
2037 ;; Cell #3: format up to eob
2038 (while (not (eobp))
2039 (setq start (point))
2040 (setq end (save-excursion
2041 (if (search-forward "@tab" nil 'move)
2042 ;; Delete the @tab command, including the @-sign
2043 (delete-region
2044 (point)
2045 (progn (forward-word -1) (1- (point)))))
2046 (point)))
2047 ;; Set fill-column *wider* than needed to produce inter-column space
2048 (setq fill-column (+ 1
2049 texinfo-extra-inter-column-width
2050 (nth table-column table-widths)))
2051 (narrow-to-region start end)
2052 ;; Remove whitespace before and after entry.
2053 (skip-chars-forward " ")
2054 (delete-region (point) (save-excursion (beginning-of-line) (point)))
2055 (goto-char (point-max))
2056 (skip-chars-backward " ")
2057 (delete-region (point) (save-excursion (end-of-line) (point)))
2058 ;; Temorarily set texinfo-stack to nil so texinfo-format-scan
2059 ;; does not see an unterminated @multitable.
2060 (let (texinfo-stack) ; nil
2061 (texinfo-format-scan))
2062 (let (fill-prefix) ; no fill prefix
2063 (fill-region (point-min) (point-max)))
2064 (setq table-entry-height
2065 (max table-entry-height (count-lines (point-min) (point-max))))
2066 ;; 3. Move point to end of bottom line, and pad that line to fill column.
2067 (goto-char (point-min))
2068 (forward-line (1- table-entry-height))
2069 (let* ((beg (point)) ; beginning of line
2070 ;; add one more space for inter-column spacing
2071 (needed-whitespace
2073 (- fill-column
2075 (progn (end-of-line) (point)) ; end of existing line
2076 beg)))))
2077 (insert (make-string
2078 (if (> needed-whitespace 0) needed-whitespace 1)
2079 ? )))
2080 ;; now, put formatted cell into a rectangle
2081 (set (intern (concat texinfo-multitable-rectangle-name
2082 (int-to-string table-column)))
2083 (extract-rectangle (point-min) (point)))
2084 (delete-region (point-min) (point))
2085 (goto-char (point-max))
2086 (setq table-column (1+ table-column))
2087 (widen))
2088 ;; 4. Add extra lines to rectangles so all are of same height
2089 (let ((total-number-of-columns table-column)
2090 (column-number 0)
2091 here)
2092 (while (> table-column 0)
2093 (let ((this-rectangle (int-to-string table-column)))
2094 (while (< (length this-rectangle) table-entry-height)
2095 (setq this-rectangle (append this-rectangle '("")))))
2096 (setq table-column (1- table-column)))
2097 ;; 5. Insert formatted rectangles in original buffer
2098 (switch-to-buffer original-buffer)
2099 (open-line table-entry-height)
2100 (while (< column-number total-number-of-columns)
2101 (setq here (point))
2102 (insert-rectangle
2103 (eval (intern
2104 (concat texinfo-multitable-rectangle-name
2105 (int-to-string column-number)))))
2106 (goto-char here)
2107 (end-of-line)
2108 (setq column-number (1+ column-number))))
2109 (kill-buffer texinfo-multitable-buffer-name)
2110 (setq fill-column existing-fill-column)))
2113 ;;; @ifinfo, @iftex, @tex, @ifhtml, @html, @ifnottex
2115 (put 'ifinfo 'texinfo-format 'texinfo-discard-line)
2116 (put 'ifinfo 'texinfo-end 'texinfo-discard-command)
2118 (put 'iftex 'texinfo-format 'texinfo-format-iftex)
2119 (defun texinfo-format-iftex ()
2120 (delete-region texinfo-command-start
2121 (progn (re-search-forward "@end iftex[ \t]*\n")
2122 (point))))
2124 (put 'ifhtml 'texinfo-format 'texinfo-format-ifhtml)
2125 (defun texinfo-format-ifhtml ()
2126 (delete-region texinfo-command-start
2127 (progn (re-search-forward "@end ifhtml[ \t]*\n")
2128 (point))))
2130 (put 'tex 'texinfo-format 'texinfo-format-tex)
2131 (defun texinfo-format-tex ()
2132 (delete-region texinfo-command-start
2133 (progn (re-search-forward "@end tex[ \t]*\n")
2134 (point))))
2136 (put 'html 'texinfo-format 'texinfo-format-html)
2137 (defun texinfo-format-html ()
2138 (delete-region texinfo-command-start
2139 (progn (re-search-forward "@end html[ \t]*\n")
2140 (point))))
2142 (put 'ifnottex 'texinfo-format 'texinfo-discard-line)
2143 (put 'ifnottex 'texinfo-end 'texinfo-discard-command)
2146 ;;; @titlepage
2148 (put 'titlepage 'texinfo-format 'texinfo-format-titlepage)
2149 (defun texinfo-format-titlepage ()
2150 (delete-region texinfo-command-start
2151 (progn (re-search-forward "@end titlepage[ \t]*\n")
2152 (point))))
2154 (put 'endtitlepage 'texinfo-format 'texinfo-discard-line)
2156 ;; @titlespec an alternative titling command; ignored by Info
2158 (put 'titlespec 'texinfo-format 'texinfo-format-titlespec)
2159 (defun texinfo-format-titlespec ()
2160 (delete-region texinfo-command-start
2161 (progn (re-search-forward "@end titlespec[ \t]*\n")
2162 (point))))
2164 (put 'endtitlespec 'texinfo-format 'texinfo-discard-line)
2167 ;;; @today
2169 (put 'today 'texinfo-format 'texinfo-format-today)
2171 ;; Produces Day Month Year style of output. eg `1 Jan 1900'
2172 ;; The `@today{}' command requires a pair of braces, like `@dots{}'.
2173 (defun texinfo-format-today ()
2174 (texinfo-parse-arg-discard)
2175 (insert (format-time-string "%e %b %Y")))
2178 ;;; @timestamp{}
2179 ;; Produce `Day Month Year Hour:Min' style of output.
2180 ;; eg `1 Jan 1900 13:52'
2182 (put 'timestamp 'texinfo-format 'texinfo-format-timestamp)
2184 ;; The `@timestamp{}' command requires a pair of braces, like `@dots{}'.
2185 (defun texinfo-format-timestamp ()
2186 "Insert the current local time and date."
2187 (texinfo-parse-arg-discard)
2188 ;; For seconds and time zone, replace format string with "%e %b %Y %T %Z"
2189 (insert (format-time-string "%e %b %Y %R")))
2192 ;;; @ignore
2194 (put 'ignore 'texinfo-format 'texinfo-format-ignore)
2195 (defun texinfo-format-ignore ()
2196 (delete-region texinfo-command-start
2197 (progn (re-search-forward "@end ignore[ \t]*\n")
2198 (point))))
2200 (put 'endignore 'texinfo-format 'texinfo-discard-line)
2203 ;;; Define the Info enclosure command: @definfoenclose
2205 ;; A `@definfoenclose' command may be used to define a highlighting
2206 ;; command for Info, but not for TeX. A command defined using
2207 ;; `@definfoenclose' marks text by enclosing it in strings that precede
2208 ;; and follow the text.
2210 ;; Presumably, if you define a command with `@definfoenclose` for Info,
2211 ;; you will also define the same command in the TeX definitions file,
2212 ;; `texinfo.tex' in a manner appropriate for typesetting.
2214 ;; Write a `@definfoenclose' command on a line and follow it with three
2215 ;; arguments separated by commas (commas are used as separators in an
2216 ;; `@node' line in the same way). The first argument to
2217 ;; `@definfoenclose' is the @-command name \(without the `@'\); the
2218 ;; second argument is the Info start delimiter string; and the third
2219 ;; argument is the Info end delimiter string. The latter two arguments
2220 ;; enclose the highlighted text in the Info file. A delimiter string
2221 ;; may contain spaces. Neither the start nor end delimiter is
2222 ;; required. However, if you do not provide a start delimiter, you
2223 ;; must follow the command name with two commas in a row; otherwise,
2224 ;; the Info formatting commands will misinterpret the end delimiter
2225 ;; string as a start delimiter string.
2227 ;; If you do a @definfoenclose{} on the name of a pre-defined macro (such
2228 ;; as @emph{}, @strong{}, @tt{}, or @i{}) the enclosure definition will
2229 ;; override the built-in definition.
2231 ;; An enclosure command defined this way takes one argument in braces.
2233 ;; For example, you can write:
2235 ;; @ifinfo
2236 ;; @definfoenclose phoo, //, \\
2237 ;; @end ifinfo
2239 ;; near the beginning of a Texinfo file at the beginning of the lines
2240 ;; to define `@phoo' as an Info formatting command that inserts `//'
2241 ;; before and `\\' after the argument to `@phoo'. You can then write
2242 ;; `@phoo{bar}' wherever you want `//bar\\' highlighted in Info.
2244 ;; Also, for TeX formatting, you could write
2246 ;; @iftex
2247 ;; @global@let@phoo=@i
2248 ;; @end iftex
2250 ;; to define `@phoo' as a command that causes TeX to typeset
2251 ;; the argument to `@phoo' in italics.
2253 ;; Note that each definition applies to its own formatter: one for TeX,
2254 ;; the other for texinfo-format-buffer or texinfo-format-region.
2256 ;; Here is another example: write
2258 ;; @definfoenclose headword, , :
2260 ;; near the beginning of the file, to define `@headword' as an Info
2261 ;; formatting command that inserts nothing before and a colon after the
2262 ;; argument to `@headword'.
2264 (put 'definfoenclose 'texinfo-format 'texinfo-define-info-enclosure)
2265 (defun texinfo-define-info-enclosure ()
2266 (let* ((args (texinfo-format-parse-line-args))
2267 (command-name (nth 0 args))
2268 (beginning-delimiter (or (nth 1 args) ""))
2269 (end-delimiter (or (nth 2 args) "")))
2270 (texinfo-discard-command)
2271 (setq texinfo-enclosure-list
2272 (cons
2273 (list command-name
2274 (list
2275 beginning-delimiter
2276 end-delimiter))
2277 texinfo-enclosure-list))))
2280 ;;; @alias
2282 (put 'alias 'texinfo-format 'texinfo-alias)
2283 (defun texinfo-alias ()
2284 (let ((start (1- (point)))
2285 args)
2286 (skip-chars-forward " ")
2287 (save-excursion (end-of-line) (setq texinfo-command-end (point)))
2288 (if (not (looking-at "\\([^=]+\\)=\\(.*\\)"))
2289 (error "Invalid alias command")
2290 (setq texinfo-alias-list
2291 (cons
2292 (cons
2293 (buffer-substring (match-beginning 1) (match-end 1))
2294 (buffer-substring (match-beginning 2) (match-end 2)))
2295 texinfo-alias-list))
2296 (texinfo-discard-command))
2301 ;;; @var, @code and the like
2303 (put 'var 'texinfo-format 'texinfo-format-var)
2304 ;; @sc a small caps font for TeX; formatted as `var' in Info
2305 (put 'sc 'texinfo-format 'texinfo-format-var)
2306 ;; @acronym for abbreviations in all caps, such as `NASA'.
2307 ;; Convert all letters to uppercase if they are not already.
2308 (put 'acronym 'texinfo-format 'texinfo-format-var)
2309 (defun texinfo-format-var ()
2310 (let ((arg (texinfo-parse-expanded-arg)))
2311 (texinfo-discard-command)
2312 (insert (upcase arg))))
2314 (put 'cite 'texinfo-format 'texinfo-format-code)
2315 (put 'code 'texinfo-format 'texinfo-format-code)
2316 ;; @command (for command names)
2317 (put 'command 'texinfo-format 'texinfo-format-code)
2318 ;; @env (for environment variables)
2319 (put 'env 'texinfo-format 'texinfo-format-code)
2320 (put 'file 'texinfo-format 'texinfo-format-code)
2321 (put 'samp 'texinfo-format 'texinfo-format-code)
2322 (put 'url 'texinfo-format 'texinfo-format-code)
2323 (defun texinfo-format-code ()
2324 (insert "`" (texinfo-parse-arg-discard) "'")
2325 (goto-char texinfo-command-start))
2327 ;; @option (for command-line options) must be different from @code
2328 ;; because of its special formatting in @table; namely that it does
2329 ;; not lead to inserted ` ... ' in a table, but does elsewhere.
2330 (put 'option 'texinfo-format 'texinfo-format-option)
2331 (defun texinfo-format-option ()
2332 "Insert ` ... ' around arg unless inside a table; in that case, no quotes."
2333 ;; `looking-at-backward' not available in v. 18.57, 20.2
2334 (if (not (search-backward "\b" ; searched-for character is a control-H
2335 (save-excursion (beginning-of-line) (point))
2337 (insert "`" (texinfo-parse-arg-discard) "'")
2338 (insert (texinfo-parse-arg-discard)))
2339 (goto-char texinfo-command-start))
2341 (put 'emph 'texinfo-format 'texinfo-format-emph)
2342 (put 'strong 'texinfo-format 'texinfo-format-emph)
2343 (defun texinfo-format-emph ()
2344 (insert "*" (texinfo-parse-arg-discard) "*")
2345 (goto-char texinfo-command-start))
2347 (put 'dfn 'texinfo-format 'texinfo-format-defn)
2348 (put 'defn 'texinfo-format 'texinfo-format-defn)
2349 (defun texinfo-format-defn ()
2350 (insert "\"" (texinfo-parse-arg-discard) "\"")
2351 (goto-char texinfo-command-start))
2353 (put 'email 'texinfo-format 'texinfo-format-key)
2354 (put 'key 'texinfo-format 'texinfo-format-key)
2355 ;; I've decided not want to have angle brackets around these -- rms.
2356 (defun texinfo-format-key ()
2357 (insert (texinfo-parse-arg-discard))
2358 (goto-char texinfo-command-start))
2360 (put 'bullet 'texinfo-format 'texinfo-format-bullet)
2361 (defun texinfo-format-bullet ()
2362 "Insert an asterisk.
2363 If used within a line, follow `@bullet' with braces."
2364 (texinfo-optional-braces-discard)
2365 (insert "*"))
2368 ;;; @kbd
2370 ;; Inside of @example ... @end example and similar environments,
2371 ;; @kbd does nothing; but outside of such environments, it places
2372 ;; single quotation markes around its argument.
2374 (defvar texinfo-format-kbd-regexp
2375 (concat
2376 "^@"
2377 "\\("
2378 "example\\|"
2379 "smallexample\\|"
2380 "lisp\\|"
2381 "smalllisp"
2382 "\\)")
2383 "Regexp specifying environments in which @kbd does not put `...'
2384 around argument.")
2386 (defvar texinfo-format-kbd-end-regexp
2387 (concat
2388 "^@end "
2389 "\\("
2390 "example\\|"
2391 "smallexample\\|"
2392 "lisp\\|"
2393 "smalllisp"
2394 "\\)")
2395 "Regexp specifying end of environments in which @kbd does not put `...'
2396 around argument. (See `texinfo-format-kbd-regexp')")
2398 (put 'kbd 'texinfo-format 'texinfo-format-kbd)
2399 (defun texinfo-format-kbd ()
2400 "Place single quote marks around arg, except in @example and similar."
2401 ;; Search forward for @end example closer than an @example.
2402 ;; Can stop search at nearest @node or texinfo-section-types-regexp
2403 (let* ((stop
2404 (save-excursion
2405 (re-search-forward
2406 (concat "^@node\\|\\(" texinfo-section-types-regexp "\\)")
2408 'move-to-end) ; if necessary, return point at end of buffer
2409 (point)))
2410 (example-location
2411 (save-excursion
2412 (re-search-forward texinfo-format-kbd-regexp stop 'move-to-end)
2413 (point)))
2414 (end-example-location
2415 (save-excursion
2416 (re-search-forward texinfo-format-kbd-end-regexp stop 'move-to-end)
2417 (point))))
2418 ;; If inside @example, @end example will be closer than @example
2419 ;; or end of search i.e., end-example-location less than example-location
2420 (if (>= end-example-location example-location)
2421 ;; outside an @example or equivalent
2422 (insert "`" (texinfo-parse-arg-discard) "'")
2423 ;; else, in @example; do not surround with `...'
2424 (insert (texinfo-parse-arg-discard)))
2425 (goto-char texinfo-command-start)))
2428 ;;; @example, @lisp, @quotation, @display, @smalllisp, @smallexample,
2429 ;; @smalldisplay
2431 (put 'display 'texinfo-format 'texinfo-format-example)
2432 (put 'smalldisplay 'texinfo-format 'texinfo-format-example)
2433 (put 'example 'texinfo-format 'texinfo-format-example)
2434 (put 'lisp 'texinfo-format 'texinfo-format-example)
2435 (put 'quotation 'texinfo-format 'texinfo-format-example)
2436 (put 'smallexample 'texinfo-format 'texinfo-format-example)
2437 (put 'smalllisp 'texinfo-format 'texinfo-format-example)
2438 (defun texinfo-format-example ()
2439 (texinfo-push-stack 'example nil)
2440 (setq fill-column (- fill-column 5))
2441 (texinfo-discard-line))
2443 (put 'example 'texinfo-end 'texinfo-end-example)
2444 (put 'display 'texinfo-end 'texinfo-end-example)
2445 (put 'smalldisplay 'texinfo-end 'texinfo-end-example)
2446 (put 'lisp 'texinfo-end 'texinfo-end-example)
2447 (put 'quotation 'texinfo-end 'texinfo-end-example)
2448 (put 'smallexample 'texinfo-end 'texinfo-end-example)
2449 (put 'smalllisp 'texinfo-end 'texinfo-end-example)
2450 (defun texinfo-end-example ()
2451 (setq fill-column (+ fill-column 5))
2452 (texinfo-discard-command)
2453 (let ((stacktop
2454 (texinfo-pop-stack 'example)))
2455 (texinfo-do-itemize (nth 1 stacktop))))
2457 (put 'exdent 'texinfo-format 'texinfo-format-exdent)
2458 (defun texinfo-format-exdent ()
2459 (texinfo-discard-command)
2460 (delete-region (point)
2461 (progn
2462 (skip-chars-forward " ")
2463 (point)))
2464 (insert ?\b)
2465 ;; Cancel out the deletion that texinfo-do-itemize
2466 ;; is going to do at the end of this line.
2467 (save-excursion
2468 (end-of-line)
2469 (insert "\n ")))
2472 ;; @direntry and @dircategory
2474 (put 'direntry 'texinfo-format 'texinfo-format-direntry)
2475 (defun texinfo-format-direntry ()
2476 (texinfo-push-stack 'direntry nil)
2477 (texinfo-discard-line)
2478 (insert "START-INFO-DIR-ENTRY\n"))
2480 (put 'direntry 'texinfo-end 'texinfo-end-direntry)
2481 (defun texinfo-end-direntry ()
2482 (texinfo-discard-command)
2483 (insert "END-INFO-DIR-ENTRY\n\n")
2484 (texinfo-pop-stack 'direntry))
2486 (put 'dircategory 'texinfo-format 'texinfo-format-dircategory)
2487 (defun texinfo-format-dircategory ()
2488 (let ((str (texinfo-parse-arg-discard)))
2489 (delete-region (point)
2490 (progn
2491 (skip-chars-forward " ")
2492 (point)))
2493 (insert "INFO-DIR-SECTION " str "\n")))
2495 ;;; @cartouche
2497 ;; The @cartouche command is a noop in Info; in a printed manual,
2498 ;; it makes a box with rounded corners.
2500 (put 'cartouche 'texinfo-format 'texinfo-discard-line)
2501 (put 'cartouche 'texinfo-end 'texinfo-discard-command)
2504 ;;; @flushleft and @format
2506 ;; The @flushleft command left justifies every line but leaves the
2507 ;; right end ragged. As far as Info is concerned, @flushleft is a
2508 ;; `do-nothing' command
2510 ;; The @format command is similar to @example except that it does not
2511 ;; indent; this means that in Info, @format is similar to @flushleft.
2513 (put 'format 'texinfo-format 'texinfo-format-flushleft)
2514 (put 'smallformat 'texinfo-format 'texinfo-format-flushleft)
2515 (put 'flushleft 'texinfo-format 'texinfo-format-flushleft)
2516 (defun texinfo-format-flushleft ()
2517 (texinfo-discard-line))
2519 (put 'format 'texinfo-end 'texinfo-end-flushleft)
2520 (put 'smallformat 'texinfo-end 'texinfo-end-flushleft)
2521 (put 'flushleft 'texinfo-end 'texinfo-end-flushleft)
2522 (defun texinfo-end-flushleft ()
2523 (texinfo-discard-command))
2526 ;;; @flushright
2528 ;; The @flushright command right justifies every line but leaves the
2529 ;; left end ragged. Spaces and tabs at the right ends of lines are
2530 ;; removed so that visible text lines up on the right side.
2532 (put 'flushright 'texinfo-format 'texinfo-format-flushright)
2533 (defun texinfo-format-flushright ()
2534 (texinfo-push-stack 'flushright nil)
2535 (texinfo-discard-line))
2537 (put 'flushright 'texinfo-end 'texinfo-end-flushright)
2538 (defun texinfo-end-flushright ()
2539 (texinfo-discard-command)
2541 (let ((stacktop
2542 (texinfo-pop-stack 'flushright)))
2544 (texinfo-do-flushright (nth 1 stacktop))))
2546 (defun texinfo-do-flushright (from)
2547 (save-excursion
2548 (while (progn (forward-line -1)
2549 (>= (point) from))
2551 (beginning-of-line)
2552 (insert
2553 (make-string
2554 (- fill-column
2555 (save-excursion
2556 (end-of-line)
2557 (skip-chars-backward " \t")
2558 (delete-region (point) (progn (end-of-line) (point)))
2559 (current-column)))
2560 ? )))))
2563 ;;; @ctrl, @TeX, @copyright, @minus, @dots, @enddots, @pounds
2565 (put 'ctrl 'texinfo-format 'texinfo-format-ctrl)
2566 (defun texinfo-format-ctrl ()
2567 (let ((str (texinfo-parse-arg-discard)))
2568 (insert (logand 31 (aref str 0)))))
2570 (put 'TeX 'texinfo-format 'texinfo-format-TeX)
2571 (defun texinfo-format-TeX ()
2572 (texinfo-parse-arg-discard)
2573 (insert "TeX"))
2575 (put 'copyright 'texinfo-format 'texinfo-format-copyright)
2576 (defun texinfo-format-copyright ()
2577 (texinfo-parse-arg-discard)
2578 (insert "(C)"))
2580 (put 'minus 'texinfo-format 'texinfo-format-minus)
2581 (defun texinfo-format-minus ()
2582 "Insert a minus sign.
2583 If used within a line, follow `@minus' with braces."
2584 (texinfo-optional-braces-discard)
2585 (insert "-"))
2587 (put 'dots 'texinfo-format 'texinfo-format-dots)
2588 (defun texinfo-format-dots ()
2589 (texinfo-parse-arg-discard)
2590 (insert "..."))
2592 (put 'enddots 'texinfo-format 'texinfo-format-enddots)
2593 (defun texinfo-format-enddots ()
2594 (texinfo-parse-arg-discard)
2595 (insert "...."))
2597 (put 'pounds 'texinfo-format 'texinfo-format-pounds)
2598 (defun texinfo-format-pounds ()
2599 (texinfo-parse-arg-discard)
2600 (insert "#"))
2603 ;;; Refilling and indenting: @refill, @paragraphindent, @noindent
2605 ;;; Indent only those paragraphs that are refilled as a result of an
2606 ;;; @refill command.
2608 ;; * If the value is `asis', do not change the existing indentation at
2609 ;; the starts of paragraphs.
2611 ;; * If the value zero, delete any existing indentation.
2613 ;; * If the value is greater than zero, indent each paragraph by that
2614 ;; number of spaces.
2616 ;;; But do not refill paragraphs with an @refill command that are
2617 ;;; preceded by @noindent or are part of a table, list, or deffn.
2619 (defvar texinfo-paragraph-indent "asis"
2620 "Number of spaces for @refill to indent a paragraph; else to leave as is.")
2622 (put 'paragraphindent 'texinfo-format 'texinfo-paragraphindent)
2624 (defun texinfo-paragraphindent ()
2625 "Specify the number of spaces for @refill to indent a paragraph.
2626 Default is to leave the number of spaces as is."
2627 (let ((arg (texinfo-parse-arg-discard)))
2628 (if (string= "asis" arg)
2629 (setq texinfo-paragraph-indent "asis")
2630 (setq texinfo-paragraph-indent (string-to-int arg)))))
2632 (put 'refill 'texinfo-format 'texinfo-format-refill)
2633 (defun texinfo-format-refill ()
2634 "Refill paragraph. Also, indent first line as set by @paragraphindent.
2635 Default is to leave paragraph indentation as is."
2636 (texinfo-discard-command)
2637 (let ((position (point-marker)))
2638 (forward-paragraph -1)
2639 (if (looking-at "[ \t\n]*$") (forward-line 1))
2640 ;; Do not indent if an entry in a list, table, or deffn,
2641 ;; or if paragraph is preceded by @noindent.
2642 ;; Otherwise, indent
2643 (cond
2644 ;; delete a @noindent line and do not indent paragraph
2645 ((save-excursion (forward-line -1)
2646 (looking-at "^@noindent"))
2647 (forward-line -1)
2648 (delete-region (point) (progn (forward-line 1) (point))))
2649 ;; do nothing if "asis"
2650 ((equal texinfo-paragraph-indent "asis"))
2651 ;; do no indenting in list, etc.
2652 ((> texinfo-stack-depth 0))
2653 ;; otherwise delete existing whitespace and indent
2655 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
2656 (insert (make-string texinfo-paragraph-indent ? ))))
2657 (forward-paragraph 1)
2658 (forward-line -1)
2659 (end-of-line)
2660 ;; Do not fill a section title line with asterisks, hyphens, etc. that
2661 ;; are used to underline it. This could occur if the line following
2662 ;; the underlining is not an index entry and has text within it.
2663 (let* ((previous-paragraph-separate paragraph-separate)
2664 (paragraph-separate
2665 (concat paragraph-separate "\\|[-=.]+\\|\\*\\*+"))
2666 (previous-paragraph-start paragraph-start)
2667 (paragraph-start
2668 (concat paragraph-start "\\|[-=.]+\\|\\*\\*+")))
2669 (unwind-protect
2670 (fill-paragraph nil)
2671 (setq paragraph-separate previous-paragraph-separate)
2672 (setq paragraph-start previous-paragraph-start)))
2673 (goto-char position)))
2675 (put 'noindent 'texinfo-format 'texinfo-noindent)
2676 (defun texinfo-noindent ()
2677 (save-excursion
2678 (forward-paragraph 1)
2679 (if (search-backward "@refill"
2680 (save-excursion (forward-line -1) (point)) t)
2681 () ; leave @noindent command so @refill command knows not to indent
2682 ;; else
2683 (texinfo-discard-line))))
2686 ;;; Index generation
2688 (put 'vindex 'texinfo-format 'texinfo-format-vindex)
2689 (defun texinfo-format-vindex ()
2690 (texinfo-index 'texinfo-vindex))
2692 (put 'cindex 'texinfo-format 'texinfo-format-cindex)
2693 (defun texinfo-format-cindex ()
2694 (texinfo-index 'texinfo-cindex))
2696 (put 'findex 'texinfo-format 'texinfo-format-findex)
2697 (defun texinfo-format-findex ()
2698 (texinfo-index 'texinfo-findex))
2700 (put 'pindex 'texinfo-format 'texinfo-format-pindex)
2701 (defun texinfo-format-pindex ()
2702 (texinfo-index 'texinfo-pindex))
2704 (put 'tindex 'texinfo-format 'texinfo-format-tindex)
2705 (defun texinfo-format-tindex ()
2706 (texinfo-index 'texinfo-tindex))
2708 (put 'kindex 'texinfo-format 'texinfo-format-kindex)
2709 (defun texinfo-format-kindex ()
2710 (texinfo-index 'texinfo-kindex))
2712 (defun texinfo-index (indexvar)
2713 (let ((arg (texinfo-parse-expanded-arg)))
2714 (texinfo-discard-command)
2715 (set indexvar
2716 (cons (list arg
2717 texinfo-last-node
2718 ;; Region formatting may not provide last node position.
2719 (if texinfo-last-node-pos
2720 (1+ (count-lines texinfo-last-node-pos (point)))
2722 (symbol-value indexvar)))))
2724 (defconst texinfo-indexvar-alist
2725 '(("cp" . texinfo-cindex)
2726 ("fn" . texinfo-findex)
2727 ("vr" . texinfo-vindex)
2728 ("tp" . texinfo-tindex)
2729 ("pg" . texinfo-pindex)
2730 ("ky" . texinfo-kindex)))
2733 ;;; @defindex @defcodeindex
2734 (put 'defindex 'texinfo-format 'texinfo-format-defindex)
2735 (put 'defcodeindex 'texinfo-format 'texinfo-format-defindex)
2737 (defun texinfo-format-defindex ()
2738 (let* ((index-name (texinfo-parse-arg-discard)) ; eg: `aa'
2739 (indexing-command (intern (concat index-name "index")))
2740 (index-formatting-command ; eg: `texinfo-format-aaindex'
2741 (intern (concat "texinfo-format-" index-name "index")))
2742 (index-alist-name ; eg: `texinfo-aaindex'
2743 (intern (concat "texinfo-" index-name "index"))))
2745 (set index-alist-name nil)
2747 (put indexing-command ; eg, aaindex
2748 'texinfo-format
2749 index-formatting-command) ; eg, texinfo-format-aaindex
2751 ;; eg: "aa" . texinfo-aaindex
2752 (or (assoc index-name texinfo-indexvar-alist)
2753 (setq texinfo-indexvar-alist
2754 (cons
2755 (cons index-name
2756 index-alist-name)
2757 texinfo-indexvar-alist)))
2759 (fset index-formatting-command
2760 (list 'lambda 'nil
2761 (list 'texinfo-index
2762 (list 'quote index-alist-name))))))
2765 ;;; @synindex @syncodeindex
2767 (put 'synindex 'texinfo-format 'texinfo-format-synindex)
2768 (put 'syncodeindex 'texinfo-format 'texinfo-format-synindex)
2770 (defun texinfo-format-synindex ()
2771 (let* ((args (texinfo-parse-arg-discard))
2772 (second (cdr (read-from-string args)))
2773 (joiner (symbol-name (car (read-from-string args))))
2774 (joined (symbol-name (car (read-from-string args second)))))
2776 (if (assoc joiner texinfo-short-index-cmds-alist)
2777 (put
2778 (cdr (assoc joiner texinfo-short-index-cmds-alist))
2779 'texinfo-format
2780 (or (cdr (assoc joined texinfo-short-index-format-cmds-alist))
2781 (intern (concat "texinfo-format-" joined "index"))))
2782 (put
2783 (intern (concat joiner "index"))
2784 'texinfo-format
2785 (or (cdr(assoc joined texinfo-short-index-format-cmds-alist))
2786 (intern (concat "texinfo-format-" joined "index")))))))
2788 (defconst texinfo-short-index-cmds-alist
2789 '(("cp" . cindex)
2790 ("fn" . findex)
2791 ("vr" . vindex)
2792 ("tp" . tindex)
2793 ("pg" . pindex)
2794 ("ky" . kindex)))
2796 (defconst texinfo-short-index-format-cmds-alist
2797 '(("cp" . texinfo-format-cindex)
2798 ("fn" . texinfo-format-findex)
2799 ("vr" . texinfo-format-vindex)
2800 ("tp" . texinfo-format-tindex)
2801 ("pg" . texinfo-format-pindex)
2802 ("ky" . texinfo-format-kindex)))
2805 ;;; Sort and index (for VMS)
2807 ;; Sort an index which is in the current buffer between START and END.
2808 ;; Used on VMS, where the `sort' utility is not available.
2809 (defun texinfo-sort-region (start end)
2810 (require 'sort)
2811 (save-restriction
2812 (narrow-to-region start end)
2813 (sort-subr nil 'forward-line 'end-of-line 'texinfo-sort-startkeyfun)))
2815 ;; Subroutine for sorting an index.
2816 ;; At start of a line, return a string to sort the line under.
2817 (defun texinfo-sort-startkeyfun ()
2818 (let ((line
2819 (buffer-substring (point) (save-excursion (end-of-line) (point)))))
2820 ;; Canonicalize whitespace and eliminate funny chars.
2821 (while (string-match "[ \t][ \t]+\\|[^a-z0-9 ]+" line)
2822 (setq line (concat (substring line 0 (match-beginning 0))
2824 (substring line (match-end 0) (length line)))))
2825 line))
2828 ;;; @printindex
2830 (put 'printindex 'texinfo-format 'texinfo-format-printindex)
2832 (defun texinfo-format-printindex ()
2833 (let ((indexelts (symbol-value
2834 (cdr (assoc (texinfo-parse-arg-discard)
2835 texinfo-indexvar-alist))))
2836 opoint)
2837 (insert "\n* Menu:\n\n")
2838 (setq opoint (point))
2839 (texinfo-print-index nil indexelts)
2841 (if (memq system-type '(vax-vms windows-nt ms-dos))
2842 (texinfo-sort-region opoint (point))
2843 (shell-command-on-region opoint (point) "sort -fd" 1))))
2845 (defun texinfo-print-index (file indexelts)
2846 (while indexelts
2847 (if (stringp (car (car indexelts)))
2848 (progn
2849 (insert "* " (car (car indexelts)) ": " )
2850 (indent-to 32)
2851 (insert
2852 (if file (concat "(" file ")") "")
2853 (nth 1 (car indexelts)) ".")
2854 (indent-to 54)
2855 (insert
2856 (if (nth 2 (car indexelts))
2857 (format " %d." (nth 2 (car indexelts)))
2859 "\n"))
2860 ;; index entries from @include'd file
2861 (texinfo-print-index (nth 1 (car indexelts))
2862 (nth 2 (car indexelts))))
2863 (setq indexelts (cdr indexelts))))
2866 ;;; Glyphs: @equiv, @error, etc
2868 ;; @equiv to show that two expressions are equivalent
2869 ;; @error to show an error message
2870 ;; @expansion to show what a macro expands to
2871 ;; @point to show the location of point in an example
2872 ;; @print to show what an evaluated expression prints
2873 ;; @result to indicate the value returned by an expression
2875 (put 'equiv 'texinfo-format 'texinfo-format-equiv)
2876 (defun texinfo-format-equiv ()
2877 (texinfo-parse-arg-discard)
2878 (insert "=="))
2880 (put 'error 'texinfo-format 'texinfo-format-error)
2881 (defun texinfo-format-error ()
2882 (texinfo-parse-arg-discard)
2883 (insert "error-->"))
2885 (put 'expansion 'texinfo-format 'texinfo-format-expansion)
2886 (defun texinfo-format-expansion ()
2887 (texinfo-parse-arg-discard)
2888 (insert "==>"))
2890 (put 'point 'texinfo-format 'texinfo-format-point)
2891 (defun texinfo-format-point ()
2892 (texinfo-parse-arg-discard)
2893 (insert "-!-"))
2895 (put 'print 'texinfo-format 'texinfo-format-print)
2896 (defun texinfo-format-print ()
2897 (texinfo-parse-arg-discard)
2898 (insert "-|"))
2900 (put 'result 'texinfo-format 'texinfo-format-result)
2901 (defun texinfo-format-result ()
2902 (texinfo-parse-arg-discard)
2903 (insert "=>"))
2906 ;;; Accent commands
2908 ;; Info presumes a plain ASCII output, so the accented characters do
2909 ;; not look as they would if typeset, or output with a different
2910 ;; character set.
2912 ;; See the `texinfo-accent-commands' variable
2913 ;; in the section for `texinfo-append-refill'.
2914 ;; Also, see the defun for `texinfo-format-scan'
2915 ;; for single-character accent commands.
2917 ;; Command Info output Name
2919 ;; These do not have braces:
2920 ;; @^ ==> ^ circumflex accent
2921 ;; @` ==> ` grave accent
2922 ;; @' ==> ' acute accent
2923 ;; @" ==> " umlaut accent
2924 ;; @= ==> = overbar accent
2925 ;; @~ ==> ~ tilde accent
2927 ;; These have braces, but take no argument:
2928 ;; @OE{} ==> OE French-OE-ligature
2929 ;; @oe{} ==> oe
2930 ;; @AA{} ==> AA Scandinavian-A-with-circle
2931 ;; @aa{} ==> aa
2932 ;; @AE{} ==> AE Latin-Scandinavian-AE
2933 ;; @ae{} ==> ae
2934 ;; @ss{} ==> ss German-sharp-S
2936 ;; @questiondown{} ==> ? upside-down-question-mark
2937 ;; @exclamdown{} ==> ! upside-down-exclamation-mark
2938 ;; @L{} ==> L/ Polish suppressed-L (Lslash)
2939 ;; @l{} ==> l/ Polish suppressed-L (Lslash) (lower case)
2940 ;; @O{} ==> O/ Scandinavian O-with-slash
2941 ;; @o{} ==> o/ Scandinavian O-with-slash (lower case)
2943 ;; These have braces, and take an argument:
2944 ;; @,{c} ==> c, cedilla accent
2945 ;; @dotaccent{o} ==> .o overdot-accent
2946 ;; @ubaraccent{o} ==> _o underbar-accent
2947 ;; @udotaccent{o} ==> o-. underdot-accent
2948 ;; @H{o} ==> ""o long Hungarian umlaut
2949 ;; @ringaccent{o} ==> *o ring accent
2950 ;; @tieaccent{oo} ==> [oo tie after accent
2951 ;; @u{o} ==> (o breve accent
2952 ;; @v{o} ==> <o hacek accent
2953 ;; @dotless{i} ==> i dotless i and dotless j
2955 ;; ==========
2957 ;; Note: The defun texinfo-format-scan
2958 ;; looks at "[@{}^'`\",=~ *?!-]"
2959 ;; In the case of @*, a line break is inserted;
2960 ;; in the other cases, the characters are simply quoted and the @ is deleted.
2961 ;; Thus, `texinfo-format-scan' handles the following
2962 ;; single-character accent commands: @^ @` @' @" @, @- @= @~
2964 ;; @^ ==> ^ circumflex accent
2965 ;; (put '^ 'texinfo-format 'texinfo-format-circumflex-accent)
2966 ;; (defun texinfo-format-circumflex-accent ()
2967 ;; (texinfo-discard-command)
2968 ;; (insert "^"))
2970 ;; @` ==> ` grave accent
2971 ;; (put '\` 'texinfo-format 'texinfo-format-grave-accent)
2972 ;; (defun texinfo-format-grave-accent ()
2973 ;; (texinfo-discard-command)
2974 ;; (insert "\`"))
2976 ;; @' ==> ' acute accent
2977 ;; (put '\' 'texinfo-format 'texinfo-format-acute-accent)
2978 ;; (defun texinfo-format-acute-accent ()
2979 ;; (texinfo-discard-command)
2980 ;; (insert "'"))
2982 ;; @" ==> " umlaut accent
2983 ;; (put '\" 'texinfo-format 'texinfo-format-umlaut-accent)
2984 ;; (defun texinfo-format-umlaut-accent ()
2985 ;; (texinfo-discard-command)
2986 ;; (insert "\""))
2988 ;; @= ==> = overbar accent
2989 ;; (put '= 'texinfo-format 'texinfo-format-overbar-accent)
2990 ;; (defun texinfo-format-overbar-accent ()
2991 ;; (texinfo-discard-command)
2992 ;; (insert "="))
2994 ;; @~ ==> ~ tilde accent
2995 ;; (put '~ 'texinfo-format 'texinfo-format-tilde-accent)
2996 ;; (defun texinfo-format-tilde-accent ()
2997 ;; (texinfo-discard-command)
2998 ;; (insert "~"))
3000 ;; @OE{} ==> OE French-OE-ligature
3001 (put 'OE 'texinfo-format 'texinfo-format-French-OE-ligature)
3002 (defun texinfo-format-French-OE-ligature ()
3003 (insert "OE" (texinfo-parse-arg-discard))
3004 (goto-char texinfo-command-start))
3006 ;; @oe{} ==> oe
3007 (put 'oe 'texinfo-format 'texinfo-format-French-oe-ligature)
3008 (defun texinfo-format-French-oe-ligature () ; lower case
3009 (insert "oe" (texinfo-parse-arg-discard))
3010 (goto-char texinfo-command-start))
3012 ;; @AA{} ==> AA Scandinavian-A-with-circle
3013 (put 'AA 'texinfo-format 'texinfo-format-Scandinavian-A-with-circle)
3014 (defun texinfo-format-Scandinavian-A-with-circle ()
3015 (insert "AA" (texinfo-parse-arg-discard))
3016 (goto-char texinfo-command-start))
3018 ;; @aa{} ==> aa
3019 (put 'aa 'texinfo-format 'texinfo-format-Scandinavian-a-with-circle)
3020 (defun texinfo-format-Scandinavian-a-with-circle () ; lower case
3021 (insert "aa" (texinfo-parse-arg-discard))
3022 (goto-char texinfo-command-start))
3024 ;; @AE{} ==> AE Latin-Scandinavian-AE
3025 (put 'AE 'texinfo-format 'texinfo-format-Latin-Scandinavian-AE)
3026 (defun texinfo-format-Latin-Scandinavian-AE ()
3027 (insert "AE" (texinfo-parse-arg-discard))
3028 (goto-char texinfo-command-start))
3030 ;; @ae{} ==> ae
3031 (put 'ae 'texinfo-format 'texinfo-format-Latin-Scandinavian-ae)
3032 (defun texinfo-format-Latin-Scandinavian-ae () ; lower case
3033 (insert "ae" (texinfo-parse-arg-discard))
3034 (goto-char texinfo-command-start))
3036 ;; @ss{} ==> ss German-sharp-S
3037 (put 'ss 'texinfo-format 'texinfo-format-German-sharp-S)
3038 (defun texinfo-format-German-sharp-S ()
3039 (insert "ss" (texinfo-parse-arg-discard))
3040 (goto-char texinfo-command-start))
3042 ;; @questiondown{} ==> ? upside-down-question-mark
3043 (put 'questiondown 'texinfo-format 'texinfo-format-upside-down-question-mark)
3044 (defun texinfo-format-upside-down-question-mark ()
3045 (insert "?" (texinfo-parse-arg-discard))
3046 (goto-char texinfo-command-start))
3048 ;; @exclamdown{} ==> ! upside-down-exclamation-mark
3049 (put 'exclamdown 'texinfo-format 'texinfo-format-upside-down-exclamation-mark)
3050 (defun texinfo-format-upside-down-exclamation-mark ()
3051 (insert "!" (texinfo-parse-arg-discard))
3052 (goto-char texinfo-command-start))
3054 ;; @L{} ==> L/ Polish suppressed-L (Lslash)
3055 (put 'L 'texinfo-format 'texinfo-format-Polish-suppressed-L)
3056 (defun texinfo-format-Polish-suppressed-L ()
3057 (insert (texinfo-parse-arg-discard) "/L")
3058 (goto-char texinfo-command-start))
3060 ;; @l{} ==> l/ Polish suppressed-L (Lslash) (lower case)
3061 (put 'l 'texinfo-format 'texinfo-format-Polish-suppressed-l-lower-case)
3062 (defun texinfo-format-Polish-suppressed-l-lower-case ()
3063 (insert (texinfo-parse-arg-discard) "/l")
3064 (goto-char texinfo-command-start))
3067 ;; @O{} ==> O/ Scandinavian O-with-slash
3068 (put 'O 'texinfo-format 'texinfo-format-Scandinavian-O-with-slash)
3069 (defun texinfo-format-Scandinavian-O-with-slash ()
3070 (insert (texinfo-parse-arg-discard) "O/")
3071 (goto-char texinfo-command-start))
3073 ;; @o{} ==> o/ Scandinavian O-with-slash (lower case)
3074 (put 'o 'texinfo-format 'texinfo-format-Scandinavian-o-with-slash-lower-case)
3075 (defun texinfo-format-Scandinavian-o-with-slash-lower-case ()
3076 (insert (texinfo-parse-arg-discard) "o/")
3077 (goto-char texinfo-command-start))
3079 ;; Take arguments
3081 ;; @,{c} ==> c, cedilla accent
3082 (put ', 'texinfo-format 'texinfo-format-cedilla-accent)
3083 (defun texinfo-format-cedilla-accent ()
3084 (insert (texinfo-parse-arg-discard) ",")
3085 (goto-char texinfo-command-start))
3088 ;; @dotaccent{o} ==> .o overdot-accent
3089 (put 'dotaccent 'texinfo-format 'texinfo-format-overdot-accent)
3090 (defun texinfo-format-overdot-accent ()
3091 (insert "." (texinfo-parse-arg-discard))
3092 (goto-char texinfo-command-start))
3094 ;; @ubaraccent{o} ==> _o underbar-accent
3095 (put 'ubaraccent 'texinfo-format 'texinfo-format-underbar-accent)
3096 (defun texinfo-format-underbar-accent ()
3097 (insert "_" (texinfo-parse-arg-discard))
3098 (goto-char texinfo-command-start))
3100 ;; @udotaccent{o} ==> o-. underdot-accent
3101 (put 'udotaccent 'texinfo-format 'texinfo-format-underdot-accent)
3102 (defun texinfo-format-underdot-accent ()
3103 (insert (texinfo-parse-arg-discard) "-.")
3104 (goto-char texinfo-command-start))
3106 ;; @H{o} ==> ""o long Hungarian umlaut
3107 (put 'H 'texinfo-format 'texinfo-format-long-Hungarian-umlaut)
3108 (defun texinfo-format-long-Hungarian-umlaut ()
3109 (insert "\"\"" (texinfo-parse-arg-discard))
3110 (goto-char texinfo-command-start))
3112 ;; @ringaccent{o} ==> *o ring accent
3113 (put 'ringaccent 'texinfo-format 'texinfo-format-ring-accent)
3114 (defun texinfo-format-ring-accent ()
3115 (insert "*" (texinfo-parse-arg-discard))
3116 (goto-char texinfo-command-start))
3118 ;; @tieaccent{oo} ==> [oo tie after accent
3119 (put 'tieaccent 'texinfo-format 'texinfo-format-tie-after-accent)
3120 (defun texinfo-format-tie-after-accent ()
3121 (insert "[" (texinfo-parse-arg-discard))
3122 (goto-char texinfo-command-start))
3125 ;; @u{o} ==> (o breve accent
3126 (put 'u 'texinfo-format 'texinfo-format-breve-accent)
3127 (defun texinfo-format-breve-accent ()
3128 (insert "(" (texinfo-parse-arg-discard))
3129 (goto-char texinfo-command-start))
3131 ;; @v{o} ==> <o hacek accent
3132 (put 'v 'texinfo-format 'texinfo-format-hacek-accent)
3133 (defun texinfo-format-hacek-accent ()
3134 (insert "<" (texinfo-parse-arg-discard))
3135 (goto-char texinfo-command-start))
3138 ;; @dotless{i} ==> i dotless i and dotless j
3139 (put 'dotless 'texinfo-format 'texinfo-format-dotless)
3140 (defun texinfo-format-dotless ()
3141 (insert (texinfo-parse-arg-discard))
3142 (goto-char texinfo-command-start))
3145 ;;; Definition formatting: @deffn, @defun, etc
3147 ;; What definition formatting produces:
3149 ;; @deffn category name args...
3150 ;; In Info, `Category: name ARGS'
3151 ;; In index: name: node. line#.
3153 ;; @defvr category name
3154 ;; In Info, `Category: name'
3155 ;; In index: name: node. line#.
3157 ;; @deftp category name attributes...
3158 ;; `category name attributes...' Note: @deftp args in lower case.
3159 ;; In index: name: node. line#.
3161 ;; Specialized function-like or variable-like entity:
3163 ;; @defun, @defmac, @defspec, @defvar, @defopt
3165 ;; @defun name args In Info, `Function: name ARGS'
3166 ;; @defmac name args In Info, `Macro: name ARGS'
3167 ;; @defvar name In Info, `Variable: name'
3168 ;; etc.
3169 ;; In index: name: node. line#.
3171 ;; Generalized typed-function-like or typed-variable-like entity:
3172 ;; @deftypefn category data-type name args...
3173 ;; In Info, `Category: data-type name args...'
3174 ;; @deftypevr category data-type name
3175 ;; In Info, `Category: data-type name'
3176 ;; In index: name: node. line#.
3178 ;; Specialized typed-function-like or typed-variable-like entity:
3179 ;; @deftypefun data-type name args...
3180 ;; In Info, `Function: data-type name ARGS'
3181 ;; In index: name: node. line#.
3183 ;; @deftypevar data-type name
3184 ;; In Info, `Variable: data-type name'
3185 ;; In index: name: node. line#. but include args after name!?
3187 ;; Generalized object oriented entity:
3188 ;; @defop category class name args...
3189 ;; In Info, `Category on class: name ARG'
3190 ;; In index: name on class: node. line#.
3192 ;; @defcv category class name
3193 ;; In Info, `Category of class: name'
3194 ;; In index: name of class: node. line#.
3196 ;; Specialized object oriented entity:
3197 ;; @defmethod class name args...
3198 ;; In Info, `Method on class: name ARGS'
3199 ;; In index: name on class: node. line#.
3201 ;; @defivar class name
3202 ;; In Info, `Instance variable of class: name'
3203 ;; In index: name of class: node. line#.
3206 ;;; The definition formatting functions
3208 (defun texinfo-format-defun ()
3209 (texinfo-push-stack 'defun nil)
3210 (setq fill-column (- fill-column 5))
3211 (texinfo-format-defun-1 t))
3213 (defun texinfo-end-defun ()
3214 (setq fill-column (+ fill-column 5))
3215 (texinfo-discard-command)
3216 (let ((start (nth 1 (texinfo-pop-stack 'defun))))
3217 (texinfo-do-itemize start)
3218 ;; Delete extra newline inserted after header.
3219 (save-excursion
3220 (goto-char start)
3221 (delete-char -1))))
3223 (defun texinfo-format-defunx ()
3224 (texinfo-format-defun-1 nil))
3226 (defun texinfo-format-defun-1 (first-p)
3227 (let ((parse-args (texinfo-format-parse-defun-args))
3228 (texinfo-defun-type (get texinfo-command-name 'texinfo-defun-type)))
3229 (texinfo-discard-command)
3230 ;; Delete extra newline inserted after previous header line.
3231 (if (not first-p)
3232 (delete-char -1))
3233 (funcall
3234 (get texinfo-command-name 'texinfo-deffn-formatting-property) parse-args)
3235 ;; Insert extra newline so that paragraph filling does not mess
3236 ;; with header line.
3237 (insert "\n\n")
3238 (rplaca (cdr (cdr (car texinfo-stack))) (point))
3239 (funcall
3240 (get texinfo-command-name 'texinfo-defun-indexing-property) parse-args)))
3242 ;;; Formatting the first line of a definition
3244 ;; @deffn, @defvr, @deftp
3245 (put 'deffn 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3246 (put 'deffnx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3247 (put 'defvr 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3248 (put 'defvrx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3249 (put 'deftp 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3250 (put 'deftpx 'texinfo-deffn-formatting-property 'texinfo-format-deffn)
3251 (defun texinfo-format-deffn (parsed-args)
3252 ;; Generalized function-like, variable-like, or generic data-type entity:
3253 ;; @deffn category name args...
3254 ;; In Info, `Category: name ARGS'
3255 ;; @deftp category name attributes...
3256 ;; `category name attributes...' Note: @deftp args in lower case.
3257 (let ((category (car parsed-args))
3258 (name (car (cdr parsed-args)))
3259 (args (cdr (cdr parsed-args))))
3260 (insert " -- " category ": " name)
3261 (while args
3262 (insert " "
3263 (if (or (= ?& (aref (car args) 0))
3264 (eq (eval (car texinfo-defun-type)) 'deftp-type))
3265 (car args)
3266 (upcase (car args))))
3267 (setq args (cdr args)))))
3269 ;; @defun, @defmac, @defspec, @defvar, @defopt: Specialized, simple
3270 (put 'defun 'texinfo-deffn-formatting-property
3271 'texinfo-format-specialized-defun)
3272 (put 'defunx 'texinfo-deffn-formatting-property
3273 'texinfo-format-specialized-defun)
3274 (put 'defmac 'texinfo-deffn-formatting-property
3275 'texinfo-format-specialized-defun)
3276 (put 'defmacx 'texinfo-deffn-formatting-property
3277 'texinfo-format-specialized-defun)
3278 (put 'defspec 'texinfo-deffn-formatting-property
3279 'texinfo-format-specialized-defun)
3280 (put 'defspecx 'texinfo-deffn-formatting-property
3281 'texinfo-format-specialized-defun)
3282 (put 'defvar 'texinfo-deffn-formatting-property
3283 'texinfo-format-specialized-defun)
3284 (put 'defvarx 'texinfo-deffn-formatting-property
3285 'texinfo-format-specialized-defun)
3286 (put 'defopt 'texinfo-deffn-formatting-property
3287 'texinfo-format-specialized-defun)
3288 (put 'defoptx 'texinfo-deffn-formatting-property
3289 'texinfo-format-specialized-defun)
3290 (defun texinfo-format-specialized-defun (parsed-args)
3291 ;; Specialized function-like or variable-like entity:
3292 ;; @defun name args In Info, `Function: Name ARGS'
3293 ;; @defmac name args In Info, `Macro: Name ARGS'
3294 ;; @defvar name In Info, `Variable: Name'
3295 ;; Use cdr of texinfo-defun-type to determine category:
3296 (let ((category (car (cdr texinfo-defun-type)))
3297 (name (car parsed-args))
3298 (args (cdr parsed-args)))
3299 (insert " -- " category ": " name)
3300 (while args
3301 (insert " "
3302 (if (= ?& (aref (car args) 0))
3303 (car args)
3304 (upcase (car args))))
3305 (setq args (cdr args)))))
3307 ;; @deftypefn, @deftypevr: Generalized typed
3308 (put 'deftypefn 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3309 (put 'deftypefnx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3310 (put 'deftypevr 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3311 (put 'deftypevrx 'texinfo-deffn-formatting-property 'texinfo-format-deftypefn)
3312 (defun texinfo-format-deftypefn (parsed-args)
3313 ;; Generalized typed-function-like or typed-variable-like entity:
3314 ;; @deftypefn category data-type name args...
3315 ;; In Info, `Category: data-type name args...'
3316 ;; @deftypevr category data-type name
3317 ;; In Info, `Category: data-type name'
3318 ;; Note: args in lower case, unless modified in command line.
3319 (let ((category (car parsed-args))
3320 (data-type (car (cdr parsed-args)))
3321 (name (car (cdr (cdr parsed-args))))
3322 (args (cdr (cdr (cdr parsed-args)))))
3323 (insert " -- " category ": " data-type " " name)
3324 (while args
3325 (insert " " (car args))
3326 (setq args (cdr args)))))
3328 ;; @deftypefun, @deftypevar: Specialized typed
3329 (put 'deftypefun 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
3330 (put 'deftypefunx 'texinfo-deffn-formatting-property
3331 'texinfo-format-deftypefun)
3332 (put 'deftypevar 'texinfo-deffn-formatting-property 'texinfo-format-deftypefun)
3333 (put 'deftypevarx 'texinfo-deffn-formatting-property
3334 'texinfo-format-deftypefun)
3335 (defun texinfo-format-deftypefun (parsed-args)
3336 ;; Specialized typed-function-like or typed-variable-like entity:
3337 ;; @deftypefun data-type name args...
3338 ;; In Info, `Function: data-type name ARGS'
3339 ;; @deftypevar data-type name
3340 ;; In Info, `Variable: data-type name'
3341 ;; Note: args in lower case, unless modified in command line.
3342 ;; Use cdr of texinfo-defun-type to determine category:
3343 (let ((category (car (cdr texinfo-defun-type)))
3344 (data-type (car parsed-args))
3345 (name (car (cdr parsed-args)))
3346 (args (cdr (cdr parsed-args))))
3347 (insert " -- " category ": " data-type " " name)
3348 (while args
3349 (insert " " (car args))
3350 (setq args (cdr args)))))
3352 ;; @defop: Generalized object-oriented
3353 (put 'defop 'texinfo-deffn-formatting-property 'texinfo-format-defop)
3354 (put 'defopx 'texinfo-deffn-formatting-property 'texinfo-format-defop)
3355 (defun texinfo-format-defop (parsed-args)
3356 ;; Generalized object oriented entity:
3357 ;; @defop category class name args...
3358 ;; In Info, `Category on class: name ARG'
3359 ;; Note: args in upper case; use of `on'
3360 (let ((category (car parsed-args))
3361 (class (car (cdr parsed-args)))
3362 (name (car (cdr (cdr parsed-args))))
3363 (args (cdr (cdr (cdr parsed-args)))))
3364 (insert " -- " category " on " class ": " name)
3365 (while args
3366 (insert " " (upcase (car args)))
3367 (setq args (cdr args)))))
3369 ;; @defcv: Generalized object-oriented
3370 (put 'defcv 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
3371 (put 'defcvx 'texinfo-deffn-formatting-property 'texinfo-format-defcv)
3372 (defun texinfo-format-defcv (parsed-args)
3373 ;; Generalized object oriented entity:
3374 ;; @defcv category class name
3375 ;; In Info, `Category of class: name'
3376 ;; Note: args in upper case; use of `of'
3377 (let ((category (car parsed-args))
3378 (class (car (cdr parsed-args)))
3379 (name (car (cdr (cdr parsed-args))))
3380 (args (cdr (cdr (cdr parsed-args)))))
3381 (insert " -- " category " of " class ": " name)
3382 (while args
3383 (insert " " (upcase (car args)))
3384 (setq args (cdr args)))))
3386 ;; @defmethod: Specialized object-oriented
3387 (put 'defmethod 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
3388 (put 'defmethodx 'texinfo-deffn-formatting-property 'texinfo-format-defmethod)
3389 (defun texinfo-format-defmethod (parsed-args)
3390 ;; Specialized object oriented entity:
3391 ;; @defmethod class name args...
3392 ;; In Info, `Method on class: name ARGS'
3393 ;; Note: args in upper case; use of `on'
3394 ;; Use cdr of texinfo-defun-type to determine category:
3395 (let ((category (car (cdr texinfo-defun-type)))
3396 (class (car parsed-args))
3397 (name (car (cdr parsed-args)))
3398 (args (cdr (cdr parsed-args))))
3399 (insert " -- " category " on " class ": " name)
3400 (while args
3401 (insert " " (upcase (car args)))
3402 (setq args (cdr args)))))
3404 ;; @defivar: Specialized object-oriented
3405 (put 'defivar 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
3406 (put 'defivarx 'texinfo-deffn-formatting-property 'texinfo-format-defivar)
3407 (defun texinfo-format-defivar (parsed-args)
3408 ;; Specialized object oriented entity:
3409 ;; @defivar class name
3410 ;; In Info, `Instance variable of class: name'
3411 ;; Note: args in upper case; use of `of'
3412 ;; Use cdr of texinfo-defun-type to determine category:
3413 (let ((category (car (cdr texinfo-defun-type)))
3414 (class (car parsed-args))
3415 (name (car (cdr parsed-args)))
3416 (args (cdr (cdr parsed-args))))
3417 (insert " -- " category " of " class ": " name)
3418 (while args
3419 (insert " " (upcase (car args)))
3420 (setq args (cdr args)))))
3423 ;;; Indexing for definitions
3425 ;; An index entry has three parts: the `entry proper', the node name, and the
3426 ;; line number. Depending on the which command is used, the entry is
3427 ;; formatted differently:
3429 ;; @defun,
3430 ;; @defmac,
3431 ;; @defspec,
3432 ;; @defvar,
3433 ;; @defopt all use their 1st argument as the entry-proper
3435 ;; @deffn,
3436 ;; @defvr,
3437 ;; @deftp
3438 ;; @deftypefun
3439 ;; @deftypevar all use their 2nd argument as the entry-proper
3441 ;; @deftypefn,
3442 ;; @deftypevr both use their 3rd argument as the entry-proper
3444 ;; @defmethod uses its 2nd and 1st arguments as an entry-proper
3445 ;; formatted: NAME on CLASS
3447 ;; @defop uses its 3rd and 2nd arguments as an entry-proper
3448 ;; formatted: NAME on CLASS
3450 ;; @defivar uses its 2nd and 1st arguments as an entry-proper
3451 ;; formatted: NAME of CLASS
3453 ;; @defcv uses its 3rd and 2nd argument as an entry-proper
3454 ;; formatted: NAME of CLASS
3456 (put 'defun 'texinfo-defun-indexing-property 'texinfo-index-defun)
3457 (put 'defunx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3458 (put 'defmac 'texinfo-defun-indexing-property 'texinfo-index-defun)
3459 (put 'defmacx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3460 (put 'defspec 'texinfo-defun-indexing-property 'texinfo-index-defun)
3461 (put 'defspecx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3462 (put 'defvar 'texinfo-defun-indexing-property 'texinfo-index-defun)
3463 (put 'defvarx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3464 (put 'defopt 'texinfo-defun-indexing-property 'texinfo-index-defun)
3465 (put 'defoptx 'texinfo-defun-indexing-property 'texinfo-index-defun)
3466 (defun texinfo-index-defun (parsed-args)
3467 ;; use 1st parsed-arg as entry-proper
3468 ;; `index-list' will be texinfo-findex or the like
3469 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3470 (set index-list
3471 (cons
3472 ;; Three elements: entry-proper, node-name, line-number
3473 (list
3474 (car parsed-args)
3475 texinfo-last-node
3476 ;; Region formatting may not provide last node position.
3477 (if texinfo-last-node-pos
3478 (1+ (count-lines texinfo-last-node-pos (point)))
3480 (symbol-value index-list)))))
3482 (put 'deffn 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3483 (put 'deffnx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3484 (put 'defvr 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3485 (put 'defvrx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3486 (put 'deftp 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3487 (put 'deftpx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3488 (put 'deftypefun 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3489 (put 'deftypefunx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3490 (put 'deftypevar 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3491 (put 'deftypevarx 'texinfo-defun-indexing-property 'texinfo-index-deffn)
3492 (defun texinfo-index-deffn (parsed-args)
3493 ;; use 2nd parsed-arg as entry-proper
3494 ;; `index-list' will be texinfo-findex or the like
3495 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3496 (set index-list
3497 (cons
3498 ;; Three elements: entry-proper, node-name, line-number
3499 (list
3500 (car (cdr parsed-args))
3501 texinfo-last-node
3502 ;; Region formatting may not provide last node position.
3503 (if texinfo-last-node-pos
3504 (1+ (count-lines texinfo-last-node-pos (point)))
3506 (symbol-value index-list)))))
3508 (put 'deftypefn 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3509 (put 'deftypefnx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3510 (put 'deftypevr 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3511 (put 'deftypevrx 'texinfo-defun-indexing-property 'texinfo-index-deftypefn)
3512 (defun texinfo-index-deftypefn (parsed-args)
3513 ;; use 3rd parsed-arg as entry-proper
3514 ;; `index-list' will be texinfo-findex or the like
3515 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3516 (set index-list
3517 (cons
3518 ;; Three elements: entry-proper, node-name, line-number
3519 (list
3520 (car (cdr (cdr parsed-args)))
3521 texinfo-last-node
3522 ;; Region formatting may not provide last node position.
3523 (if texinfo-last-node-pos
3524 (1+ (count-lines texinfo-last-node-pos (point)))
3526 (symbol-value index-list)))))
3528 (put 'defmethod 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
3529 (put 'defmethodx 'texinfo-defun-indexing-property 'texinfo-index-defmethod)
3530 (defun texinfo-index-defmethod (parsed-args)
3531 ;; use 2nd on 1st parsed-arg as entry-proper
3532 ;; `index-list' will be texinfo-findex or the like
3533 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3534 (set index-list
3535 (cons
3536 ;; Three elements: entry-proper, node-name, line-number
3537 (list
3538 (format "%s on %s"
3539 (car (cdr parsed-args))
3540 (car parsed-args))
3541 texinfo-last-node
3542 ;; Region formatting may not provide last node position.
3543 (if texinfo-last-node-pos
3544 (1+ (count-lines texinfo-last-node-pos (point)))
3546 (symbol-value index-list)))))
3548 (put 'defop 'texinfo-defun-indexing-property 'texinfo-index-defop)
3549 (put 'defopx 'texinfo-defun-indexing-property 'texinfo-index-defop)
3550 (defun texinfo-index-defop (parsed-args)
3551 ;; use 3rd on 2nd parsed-arg as entry-proper
3552 ;; `index-list' will be texinfo-findex or the like
3553 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3554 (set index-list
3555 (cons
3556 ;; Three elements: entry-proper, node-name, line-number
3557 (list
3558 (format "%s on %s"
3559 (car (cdr (cdr parsed-args)))
3560 (car (cdr parsed-args)))
3561 texinfo-last-node
3562 ;; Region formatting may not provide last node position.
3563 (if texinfo-last-node-pos
3564 (1+ (count-lines texinfo-last-node-pos (point)))
3566 (symbol-value index-list)))))
3568 (put 'defivar 'texinfo-defun-indexing-property 'texinfo-index-defivar)
3569 (put 'defivarx 'texinfo-defun-indexing-property 'texinfo-index-defivar)
3570 (defun texinfo-index-defivar (parsed-args)
3571 ;; use 2nd of 1st parsed-arg as entry-proper
3572 ;; `index-list' will be texinfo-findex or the like
3573 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3574 (set index-list
3575 (cons
3576 ;; Three elements: entry-proper, node-name, line-number
3577 (list
3578 (format "%s of %s"
3579 (car (cdr parsed-args))
3580 (car parsed-args))
3581 texinfo-last-node
3582 ;; Region formatting may not provide last node position.
3583 (if texinfo-last-node-pos
3584 (1+ (count-lines texinfo-last-node-pos (point)))
3586 (symbol-value index-list)))))
3588 (put 'defcv 'texinfo-defun-indexing-property 'texinfo-index-defcv)
3589 (put 'defcvx 'texinfo-defun-indexing-property 'texinfo-index-defcv)
3590 (defun texinfo-index-defcv (parsed-args)
3591 ;; use 3rd of 2nd parsed-arg as entry-proper
3592 ;; `index-list' will be texinfo-findex or the like
3593 (let ((index-list (get texinfo-command-name 'texinfo-defun-index)))
3594 (set index-list
3595 (cons
3596 ;; Three elements: entry-proper, node-name, line-number
3597 (list
3598 (format "%s of %s"
3599 (car (cdr (cdr parsed-args)))
3600 (car (cdr parsed-args)))
3601 texinfo-last-node
3602 ;; Region formatting may not provide last node position.
3603 (if texinfo-last-node-pos
3604 (1+ (count-lines texinfo-last-node-pos (point)))
3606 (symbol-value index-list)))))
3609 ;;; Properties for definitions
3611 ;; Each definition command has six properties:
3613 ;; 1. texinfo-deffn-formatting-property to format definition line
3614 ;; 2. texinfo-defun-indexing-property to create index entry
3615 ;; 3. texinfo-format formatting command
3616 ;; 4. texinfo-end end formatting command
3617 ;; 5. texinfo-defun-type type of deffn to format
3618 ;; 6. texinfo-defun-index type of index to use
3620 ;; The `x' forms of each definition command are used for the second
3621 ;; and subsequent header lines.
3623 ;; The texinfo-deffn-formatting-property and texinfo-defun-indexing-property
3624 ;; are listed just before the appropriate formatting and indexing commands.
3626 (put 'deffn 'texinfo-format 'texinfo-format-defun)
3627 (put 'deffnx 'texinfo-format 'texinfo-format-defunx)
3628 (put 'deffn 'texinfo-end 'texinfo-end-defun)
3629 (put 'deffn 'texinfo-defun-type '('deffn-type nil))
3630 (put 'deffnx 'texinfo-defun-type '('deffn-type nil))
3631 (put 'deffn 'texinfo-defun-index 'texinfo-findex)
3632 (put 'deffnx 'texinfo-defun-index 'texinfo-findex)
3634 (put 'defun 'texinfo-format 'texinfo-format-defun)
3635 (put 'defunx 'texinfo-format 'texinfo-format-defunx)
3636 (put 'defun 'texinfo-end 'texinfo-end-defun)
3637 (put 'defun 'texinfo-defun-type '('defun-type "Function"))
3638 (put 'defunx 'texinfo-defun-type '('defun-type "Function"))
3639 (put 'defun 'texinfo-defun-index 'texinfo-findex)
3640 (put 'defunx 'texinfo-defun-index 'texinfo-findex)
3642 (put 'defmac 'texinfo-format 'texinfo-format-defun)
3643 (put 'defmacx 'texinfo-format 'texinfo-format-defunx)
3644 (put 'defmac 'texinfo-end 'texinfo-end-defun)
3645 (put 'defmac 'texinfo-defun-type '('defun-type "Macro"))
3646 (put 'defmacx 'texinfo-defun-type '('defun-type "Macro"))
3647 (put 'defmac 'texinfo-defun-index 'texinfo-findex)
3648 (put 'defmacx 'texinfo-defun-index 'texinfo-findex)
3650 (put 'defspec 'texinfo-format 'texinfo-format-defun)
3651 (put 'defspecx 'texinfo-format 'texinfo-format-defunx)
3652 (put 'defspec 'texinfo-end 'texinfo-end-defun)
3653 (put 'defspec 'texinfo-defun-type '('defun-type "Special form"))
3654 (put 'defspecx 'texinfo-defun-type '('defun-type "Special form"))
3655 (put 'defspec 'texinfo-defun-index 'texinfo-findex)
3656 (put 'defspecx 'texinfo-defun-index 'texinfo-findex)
3658 (put 'defvr 'texinfo-format 'texinfo-format-defun)
3659 (put 'defvrx 'texinfo-format 'texinfo-format-defunx)
3660 (put 'defvr 'texinfo-end 'texinfo-end-defun)
3661 (put 'defvr 'texinfo-defun-type '('deffn-type nil))
3662 (put 'defvrx 'texinfo-defun-type '('deffn-type nil))
3663 (put 'defvr 'texinfo-defun-index 'texinfo-vindex)
3664 (put 'defvrx 'texinfo-defun-index 'texinfo-vindex)
3666 (put 'defvar 'texinfo-format 'texinfo-format-defun)
3667 (put 'defvarx 'texinfo-format 'texinfo-format-defunx)
3668 (put 'defvar 'texinfo-end 'texinfo-end-defun)
3669 (put 'defvar 'texinfo-defun-type '('defun-type "Variable"))
3670 (put 'defvarx 'texinfo-defun-type '('defun-type "Variable"))
3671 (put 'defvar 'texinfo-defun-index 'texinfo-vindex)
3672 (put 'defvarx 'texinfo-defun-index 'texinfo-vindex)
3674 (put 'defconst 'texinfo-format 'texinfo-format-defun)
3675 (put 'defconstx 'texinfo-format 'texinfo-format-defunx)
3676 (put 'defconst 'texinfo-end 'texinfo-end-defun)
3677 (put 'defconst 'texinfo-defun-type '('defun-type "Constant"))
3678 (put 'defconstx 'texinfo-defun-type '('defun-type "Constant"))
3679 (put 'defconst 'texinfo-defun-index 'texinfo-vindex)
3680 (put 'defconstx 'texinfo-defun-index 'texinfo-vindex)
3682 (put 'defcmd 'texinfo-format 'texinfo-format-defun)
3683 (put 'defcmdx 'texinfo-format 'texinfo-format-defunx)
3684 (put 'defcmd 'texinfo-end 'texinfo-end-defun)
3685 (put 'defcmd 'texinfo-defun-type '('defun-type "Command"))
3686 (put 'defcmdx 'texinfo-defun-type '('defun-type "Command"))
3687 (put 'defcmd 'texinfo-defun-index 'texinfo-findex)
3688 (put 'defcmdx 'texinfo-defun-index 'texinfo-findex)
3690 (put 'defopt 'texinfo-format 'texinfo-format-defun)
3691 (put 'defoptx 'texinfo-format 'texinfo-format-defunx)
3692 (put 'defopt 'texinfo-end 'texinfo-end-defun)
3693 (put 'defopt 'texinfo-defun-type '('defun-type "User Option"))
3694 (put 'defoptx 'texinfo-defun-type '('defun-type "User Option"))
3695 (put 'defopt 'texinfo-defun-index 'texinfo-vindex)
3696 (put 'defoptx 'texinfo-defun-index 'texinfo-vindex)
3698 (put 'deftp 'texinfo-format 'texinfo-format-defun)
3699 (put 'deftpx 'texinfo-format 'texinfo-format-defunx)
3700 (put 'deftp 'texinfo-end 'texinfo-end-defun)
3701 (put 'deftp 'texinfo-defun-type '('deftp-type nil))
3702 (put 'deftpx 'texinfo-defun-type '('deftp-type nil))
3703 (put 'deftp 'texinfo-defun-index 'texinfo-tindex)
3704 (put 'deftpx 'texinfo-defun-index 'texinfo-tindex)
3706 ;;; Object-oriented stuff is a little hairier.
3708 (put 'defop 'texinfo-format 'texinfo-format-defun)
3709 (put 'defopx 'texinfo-format 'texinfo-format-defunx)
3710 (put 'defop 'texinfo-end 'texinfo-end-defun)
3711 (put 'defop 'texinfo-defun-type '('defop-type nil))
3712 (put 'defopx 'texinfo-defun-type '('defop-type nil))
3713 (put 'defop 'texinfo-defun-index 'texinfo-findex)
3714 (put 'defopx 'texinfo-defun-index 'texinfo-findex)
3716 (put 'defmethod 'texinfo-format 'texinfo-format-defun)
3717 (put 'defmethodx 'texinfo-format 'texinfo-format-defunx)
3718 (put 'defmethod 'texinfo-end 'texinfo-end-defun)
3719 (put 'defmethod 'texinfo-defun-type '('defmethod-type "Method"))
3720 (put 'defmethodx 'texinfo-defun-type '('defmethod-type "Method"))
3721 (put 'defmethod 'texinfo-defun-index 'texinfo-findex)
3722 (put 'defmethodx 'texinfo-defun-index 'texinfo-findex)
3724 (put 'defcv 'texinfo-format 'texinfo-format-defun)
3725 (put 'defcvx 'texinfo-format 'texinfo-format-defunx)
3726 (put 'defcv 'texinfo-end 'texinfo-end-defun)
3727 (put 'defcv 'texinfo-defun-type '('defop-type nil))
3728 (put 'defcvx 'texinfo-defun-type '('defop-type nil))
3729 (put 'defcv 'texinfo-defun-index 'texinfo-vindex)
3730 (put 'defcvx 'texinfo-defun-index 'texinfo-vindex)
3732 (put 'defivar 'texinfo-format 'texinfo-format-defun)
3733 (put 'defivarx 'texinfo-format 'texinfo-format-defunx)
3734 (put 'defivar 'texinfo-end 'texinfo-end-defun)
3735 (put 'defivar 'texinfo-defun-type '('defmethod-type "Instance variable"))
3736 (put 'defivarx 'texinfo-defun-type '('defmethod-type "Instance variable"))
3737 (put 'defivar 'texinfo-defun-index 'texinfo-vindex)
3738 (put 'defivarx 'texinfo-defun-index 'texinfo-vindex)
3740 ;;; Typed functions and variables
3742 (put 'deftypefn 'texinfo-format 'texinfo-format-defun)
3743 (put 'deftypefnx 'texinfo-format 'texinfo-format-defunx)
3744 (put 'deftypefn 'texinfo-end 'texinfo-end-defun)
3745 (put 'deftypefn 'texinfo-defun-type '('deftypefn-type nil))
3746 (put 'deftypefnx 'texinfo-defun-type '('deftypefn-type nil))
3747 (put 'deftypefn 'texinfo-defun-index 'texinfo-findex)
3748 (put 'deftypefnx 'texinfo-defun-index 'texinfo-findex)
3750 (put 'deftypefun 'texinfo-format 'texinfo-format-defun)
3751 (put 'deftypefunx 'texinfo-format 'texinfo-format-defunx)
3752 (put 'deftypefun 'texinfo-end 'texinfo-end-defun)
3753 (put 'deftypefun 'texinfo-defun-type '('deftypefun-type "Function"))
3754 (put 'deftypefunx 'texinfo-defun-type '('deftypefun-type "Function"))
3755 (put 'deftypefun 'texinfo-defun-index 'texinfo-findex)
3756 (put 'deftypefunx 'texinfo-defun-index 'texinfo-findex)
3758 (put 'deftypevr 'texinfo-format 'texinfo-format-defun)
3759 (put 'deftypevrx 'texinfo-format 'texinfo-format-defunx)
3760 (put 'deftypevr 'texinfo-end 'texinfo-end-defun)
3761 (put 'deftypevr 'texinfo-defun-type '('deftypefn-type nil))
3762 (put 'deftypevrx 'texinfo-defun-type '('deftypefn-type nil))
3763 (put 'deftypevr 'texinfo-defun-index 'texinfo-vindex)
3764 (put 'deftypevrx 'texinfo-defun-index 'texinfo-vindex)
3766 (put 'deftypevar 'texinfo-format 'texinfo-format-defun)
3767 (put 'deftypevarx 'texinfo-format 'texinfo-format-defunx)
3768 (put 'deftypevar 'texinfo-end 'texinfo-end-defun)
3769 (put 'deftypevar 'texinfo-defun-type '('deftypevar-type "Variable"))
3770 (put 'deftypevarx 'texinfo-defun-type '('deftypevar-type "Variable"))
3771 (put 'deftypevar 'texinfo-defun-index 'texinfo-vindex)
3772 (put 'deftypevarx 'texinfo-defun-index 'texinfo-vindex)
3775 ;;; @set, @clear, @ifset, @ifclear
3777 ;; If a flag is set with @set FLAG, then text between @ifset and @end
3778 ;; ifset is formatted normally, but if the flag is is cleared with
3779 ;; @clear FLAG, then the text is not formatted; it is ignored.
3781 ;; If a flag is cleared with @clear FLAG, then text between @ifclear
3782 ;; and @end ifclear is formatted normally, but if the flag is is set with
3783 ;; @set FLAG, then the text is not formatted; it is ignored. @ifclear
3784 ;; is the opposite of @ifset.
3786 ;; If a flag is set to a string with @set FLAG,
3787 ;; replace @value{FLAG} with the string.
3788 ;; If a flag with a value is cleared,
3789 ;; @value{FLAG} is invalid,
3790 ;; as if there had never been any @set FLAG previously.
3792 (put 'clear 'texinfo-format 'texinfo-clear)
3793 (defun texinfo-clear ()
3794 "Clear the value of the flag."
3795 (let* ((arg (texinfo-parse-arg-discard))
3796 (flag (car (read-from-string arg)))
3797 (value (substring arg (cdr (read-from-string arg)))))
3798 (put flag 'texinfo-whether-setp 'flag-cleared)
3799 (put flag 'texinfo-set-value "")))
3801 (put 'set 'texinfo-format 'texinfo-set)
3802 (defun texinfo-set ()
3803 "Set the value of the flag, optionally to a string.
3804 The command `@set foo This is a string.'
3805 sets flag foo to the value: `This is a string.'
3806 The command `@value{foo}' expands to the value."
3807 (let* ((arg (texinfo-parse-arg-discard))
3808 (flag (car (read-from-string arg)))
3809 (value (substring arg (cdr (read-from-string arg)))))
3810 (put flag 'texinfo-whether-setp 'flag-set)
3811 (put flag 'texinfo-set-value value)))
3813 (put 'value 'texinfo-format 'texinfo-value)
3814 (defun texinfo-value ()
3815 "Insert the string to which the flag is set.
3816 The command `@set foo This is a string.'
3817 sets flag foo to the value: `This is a string.'
3818 The command `@value{foo}' expands to the value."
3819 (let ((arg (texinfo-parse-arg-discard)))
3820 (cond ((and
3821 (eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3822 'flag-set)
3823 (get (car (read-from-string arg)) 'texinfo-set-value))
3824 (insert (get (car (read-from-string arg)) 'texinfo-set-value)))
3825 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3826 'flag-cleared)
3827 (insert (format "{No value for \"%s\"}" arg)))
3828 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp) nil)
3829 (insert (format "{No value for \"%s\"}" arg))))))
3831 (put 'ifset 'texinfo-end 'texinfo-discard-command)
3832 (put 'ifset 'texinfo-format 'texinfo-if-set)
3833 (defun texinfo-if-set ()
3834 "If set, continue formatting; else do not format region up to @end ifset"
3835 (let ((arg (texinfo-parse-arg-discard)))
3836 (cond
3837 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3838 'flag-set)
3839 ;; Format the text (i.e., do not remove it); do nothing here.
3841 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3842 'flag-cleared)
3843 ;; Clear region (i.e., cause the text to be ignored).
3844 (delete-region texinfo-command-start
3845 (progn (re-search-forward "@end ifset[ \t]*\n")
3846 (point))))
3847 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3848 nil)
3849 ;; In this case flag is neither set nor cleared.
3850 ;; Act as if set, i.e. do nothing.
3851 ()))))
3853 (put 'ifclear 'texinfo-end 'texinfo-discard-command)
3854 (put 'ifclear 'texinfo-format 'texinfo-if-clear)
3855 (defun texinfo-if-clear ()
3856 "If clear, continue formatting; if set, do not format up to @end ifset"
3857 (let ((arg (texinfo-parse-arg-discard)))
3858 (cond
3859 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3860 'flag-set)
3861 ;; Clear region (i.e., cause the text to be ignored).
3862 (delete-region texinfo-command-start
3863 (progn (re-search-forward "@end ifclear[ \t]*\n")
3864 (point))))
3865 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3866 'flag-cleared)
3867 ;; Format the text (i.e., do not remove it); do nothing here.
3869 ((eq (get (car (read-from-string arg)) 'texinfo-whether-setp)
3870 nil)
3871 ;; In this case flag is neither set nor cleared.
3872 ;; Act as if clear, i.e. do nothing.
3873 ()))))
3875 ;;; @ifeq
3877 (put 'ifeq 'texinfo-format 'texinfo-format-ifeq)
3878 (defun texinfo-format-ifeq ()
3879 "If ARG1 and ARG2 caselessly string compare to same string, perform COMMAND.
3880 Otherwise produces no output.
3882 Thus:
3883 @ifeq{ arg1 , arg1 , @code{foo}} bar
3885 ==> `foo' bar.
3887 @ifeq{ arg1 , arg2 , @code{foo}} bar
3889 ==> bar
3891 Note that the Texinfo command and its arguments must be arguments to
3892 the @ifeq command."
3893 ;; compare-buffer-substrings does not exist in version 18; don't use
3894 (goto-char texinfo-command-end)
3895 (let* ((case-fold-search t)
3896 (stop (save-excursion (forward-sexp 1) (point)))
3897 start end
3898 ;; @ifeq{arg1, arg2, @command{optional-args}}
3899 (arg1
3900 (progn
3901 (forward-char 1)
3902 (skip-chars-forward " ")
3903 (setq start (point))
3904 (search-forward "," stop t)
3905 (skip-chars-backward ", ")
3906 (buffer-substring start (point))))
3907 (arg2
3908 (progn
3909 (search-forward "," stop t)
3910 (skip-chars-forward " ")
3911 (setq start (point))
3912 (search-forward "," stop t)
3913 (skip-chars-backward ", ")
3914 (buffer-substring start (point))))
3915 (texinfo-command
3916 (progn
3917 (search-forward "," stop t)
3918 (skip-chars-forward " ")
3919 (setq start (point))
3920 (goto-char (1- stop))
3921 (skip-chars-backward " ")
3922 (buffer-substring start (point)))))
3923 (delete-region texinfo-command-start stop)
3924 (if (equal arg1 arg2)
3925 (insert texinfo-command))
3926 (goto-char texinfo-command-start)))
3929 ;;; Process included files: `@include' command
3931 ;; Updated 19 October 1990
3932 ;; In the original version, include files were ignored by Info but
3933 ;; incorporated in to the printed manual. To make references to the
3934 ;; included file, the Texinfo source file has to refer to the included
3935 ;; files using the `(filename)nodename' format for referring to other
3936 ;; Info files. Also, the included files had to be formatted on their
3937 ;; own. It was just like they were another file.
3939 ;; Currently, include files are inserted into the buffer that is
3940 ;; formatted for Info. If large, the resulting info file is split and
3941 ;; tagified. For current include files to work, the master menu must
3942 ;; refer to all the nodes, and the highest level nodes in the include
3943 ;; files must have the correct next, prev, and up pointers.
3945 ;; The included file may have an @setfilename and even an @settitle,
3946 ;; but not an `\input texinfo' line.
3948 ;; Updated 24 March 1993
3949 ;; In order for @raisesections and @lowersections to work, included
3950 ;; files must be inserted into the buffer holding the outer file
3951 ;; before other Info formatting takes place. So @include is no longer
3952 ;; is treated like other @-commands.
3953 (put 'include 'texinfo-format 'texinfo-format-noop)
3955 ;; Original definition:
3956 ;; (defun texinfo-format-include ()
3957 ;; (let ((filename (texinfo-parse-arg-discard))
3958 ;; (default-directory input-directory)
3959 ;; subindex)
3960 ;; (setq subindex
3961 ;; (save-excursion
3962 ;; (progn (find-file
3963 ;; (cond ((file-readable-p (concat filename ".texinfo"))
3964 ;; (concat filename ".texinfo"))
3965 ;; ((file-readable-p (concat filename ".texi"))
3966 ;; (concat filename ".texi"))
3967 ;; ((file-readable-p (concat filename ".tex"))
3968 ;; (concat filename ".tex"))
3969 ;; ((file-readable-p filename)
3970 ;; filename)
3971 ;; (t (error "@include'd file %s not found"
3972 ;; filename))))
3973 ;; (texinfo-format-buffer-1))))
3974 ;; (texinfo-subindex 'texinfo-vindex (car subindex) (nth 1 subindex))
3975 ;; (texinfo-subindex 'texinfo-findex (car subindex) (nth 2 subindex))
3976 ;; (texinfo-subindex 'texinfo-cindex (car subindex) (nth 3 subindex))
3977 ;; (texinfo-subindex 'texinfo-pindex (car subindex) (nth 4 subindex))
3978 ;; (texinfo-subindex 'texinfo-tindex (car subindex) (nth 5 subindex))
3979 ;; (texinfo-subindex 'texinfo-kindex (car subindex) (nth 6 subindex))))
3981 ;;(defun texinfo-subindex (indexvar file content)
3982 ;; (set indexvar (cons (list 'recurse file content)
3983 ;; (symbol-value indexvar))))
3985 ;; Second definition:
3986 ;; (put 'include 'texinfo-format 'texinfo-format-include)
3987 ;; (defun texinfo-format-include ()
3988 ;; (let ((filename (concat input-directory
3989 ;; (texinfo-parse-arg-discard)))
3990 ;; (default-directory input-directory))
3991 ;; (message "Reading: %s" filename)
3992 ;; (save-excursion
3993 ;; (save-restriction
3994 ;; (narrow-to-region
3995 ;; (point)
3996 ;; (+ (point) (car (cdr (insert-file-contents filename)))))
3997 ;; (goto-char (point-min))
3998 ;; (texinfo-append-refill)
3999 ;; (texinfo-format-convert (point-min) (point-max))))
4000 ;; (setq last-input-buffer input-buffer) ; to bypass setfilename
4001 ;; ))
4004 ;;; Numerous commands do nothing in Info
4005 ;; These commands are defined in texinfo.tex for printed output.
4008 ;;; various noops, such as @b{foo}, that take arguments in braces
4010 (put 'b 'texinfo-format 'texinfo-format-noop)
4011 (put 'i 'texinfo-format 'texinfo-format-noop)
4012 (put 'r 'texinfo-format 'texinfo-format-noop)
4013 (put 't 'texinfo-format 'texinfo-format-noop)
4014 (put 'w 'texinfo-format 'texinfo-format-noop)
4015 (put 'asis 'texinfo-format 'texinfo-format-noop)
4016 (put 'dmn 'texinfo-format 'texinfo-format-noop)
4017 (put 'math 'texinfo-format 'texinfo-format-noop)
4018 (put 'titlefont 'texinfo-format 'texinfo-format-noop)
4019 (defun texinfo-format-noop ()
4020 (insert (texinfo-parse-arg-discard))
4021 (goto-char texinfo-command-start))
4023 ;; @hyphenation command discards an argument within braces
4024 (put 'hyphenation 'texinfo-format 'texinfo-discard-command-and-arg)
4025 (defun texinfo-discard-command-and-arg ()
4026 "Discard both @-command and its argument in braces."
4027 (goto-char texinfo-command-end)
4028 (forward-list 1)
4029 (setq texinfo-command-end (point))
4030 (delete-region texinfo-command-start texinfo-command-end))
4033 ;;; Do nothing commands, such as @smallbook, that have no args and no braces
4034 ;; These must appear on a line of their own
4036 (put 'bye 'texinfo-format 'texinfo-discard-line)
4037 (put 'smallbook 'texinfo-format 'texinfo-discard-line)
4038 (put 'finalout 'texinfo-format 'texinfo-discard-line)
4039 (put 'overfullrule 'texinfo-format 'texinfo-discard-line)
4040 (put 'smallbreak 'texinfo-format 'texinfo-discard-line)
4041 (put 'medbreak 'texinfo-format 'texinfo-discard-line)
4042 (put 'bigbreak 'texinfo-format 'texinfo-discard-line)
4045 ;;; These noop commands discard the rest of the line.
4047 (put 'c 'texinfo-format 'texinfo-discard-line-with-args)
4048 (put 'comment 'texinfo-format 'texinfo-discard-line-with-args)
4049 (put 'contents 'texinfo-format 'texinfo-discard-line-with-args)
4050 (put 'group 'texinfo-end 'texinfo-discard-line-with-args)
4051 (put 'group 'texinfo-format 'texinfo-discard-line-with-args)
4052 (put 'headings 'texinfo-format 'texinfo-discard-line-with-args)
4053 (put 'setchapterstyle 'texinfo-format 'texinfo-discard-line-with-args)
4054 (put 'hsize 'texinfo-format 'texinfo-discard-line-with-args)
4055 (put 'itemindent 'texinfo-format 'texinfo-discard-line-with-args)
4056 (put 'lispnarrowing 'texinfo-format 'texinfo-discard-line-with-args)
4057 (put 'need 'texinfo-format 'texinfo-discard-line-with-args)
4058 (put 'nopara 'texinfo-format 'texinfo-discard-line-with-args)
4060 ;; @novalidate suppresses cross-reference checking and auxiliary file
4061 ;; creation with TeX. The Info-validate command checks that every
4062 ;; node pointer points to an existing node. Since this Info command
4063 ;; is not invoked automatically, the @novalidate command is irrelevant
4064 ;; and not supported by texinfmt.el
4065 (put 'novalidate 'texinfo-format 'texinfo-discard-line-with-args)
4067 (put 'page 'texinfo-format 'texinfo-discard-line-with-args)
4068 (put 'pagesizes 'texinfo-format 'texinfo-discard-line-with-args)
4069 (put 'parindent 'texinfo-format 'texinfo-discard-line-with-args)
4070 (put 'setchapternewpage 'texinfo-format 'texinfo-discard-line-with-args)
4071 (put 'setq 'texinfo-format 'texinfo-discard-line-with-args)
4073 (put 'setcontentsaftertitlepage
4074 'texinfo-format 'texinfo-discard-line-with-args)
4075 (put 'setshortcontentsaftertitlepage
4076 'texinfo-format 'texinfo-discard-line-with-args)
4078 (put 'settitle 'texinfo-format 'texinfo-discard-line-with-args)
4079 (put 'setx 'texinfo-format 'texinfo-discard-line-with-args)
4080 (put 'shortcontents 'texinfo-format 'texinfo-discard-line-with-args)
4081 (put 'shorttitlepage 'texinfo-format 'texinfo-discard-line-with-args)
4082 (put 'summarycontents 'texinfo-format 'texinfo-discard-line-with-args)
4083 (put 'input 'texinfo-format 'texinfo-discard-line-with-args)
4086 ;;; Some commands cannot be handled
4088 (defun texinfo-unsupported ()
4089 (error "%s is not handled by texinfo"
4090 (buffer-substring texinfo-command-start texinfo-command-end)))
4092 ;;; Batch formatting
4094 (defun batch-texinfo-format ()
4095 "Runs texinfo-format-buffer on the files remaining on the command line.
4096 Must be used only with -batch, and kills emacs on completion.
4097 Each file will be processed even if an error occurred previously.
4098 For example, invoke
4099 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"."
4100 (if (not noninteractive)
4101 (error "batch-texinfo-format may only be used -batch."))
4102 (let ((version-control t)
4103 (auto-save-default nil)
4104 (find-file-run-dired nil)
4105 (kept-old-versions 259259)
4106 (kept-new-versions 259259))
4107 (let ((error 0)
4108 file
4109 (files ()))
4110 (while command-line-args-left
4111 (setq file (expand-file-name (car command-line-args-left)))
4112 (cond ((not (file-exists-p file))
4113 (message ">> %s does not exist!" file)
4114 (setq error 1
4115 command-line-args-left (cdr command-line-args-left)))
4116 ((file-directory-p file)
4117 (setq command-line-args-left
4118 (nconc (directory-files file)
4119 (cdr command-line-args-left))))
4121 (setq files (cons file files)
4122 command-line-args-left (cdr command-line-args-left)))))
4123 (while files
4124 (setq file (car files)
4125 files (cdr files))
4126 (condition-case err
4127 (progn
4128 (if buffer-file-name (kill-buffer (current-buffer)))
4129 (find-file file)
4130 (buffer-disable-undo (current-buffer))
4131 (set-buffer-modified-p nil)
4132 (texinfo-mode)
4133 (message "texinfo formatting %s..." file)
4134 (texinfo-format-buffer nil)
4135 (if (buffer-modified-p)
4136 (progn (message "Saving modified %s" (buffer-file-name))
4137 (save-buffer))))
4138 (error
4139 (message ">> Error: %s" (prin1-to-string err))
4140 (message ">> point at")
4141 (let ((s (buffer-substring (point)
4142 (min (+ (point) 100)
4143 (point-max))))
4144 (tem 0))
4145 (while (setq tem (string-match "\n+" s tem))
4146 (setq s (concat (substring s 0 (match-beginning 0))
4147 "\n>> "
4148 (substring s (match-end 0)))
4149 tem (1+ tem)))
4150 (message ">> %s" s))
4151 (setq error 1))))
4152 (kill-emacs error))))
4155 ;;; Place `provide' at end of file.
4156 (provide 'texinfmt)
4158 ;;; texinfmt.el ends here.