Move the (require 'cl) to the front of the
[emacs.git] / lisp / textmodes / texinfo.el
blobeb3b0b246b52aa123edc3fdd6171dc11e4f898ce
1 ;;; texinfo.el --- major mode for editing Texinfo files
3 ;; Copyright (C) 1985, '88, '89, '90, '91,
4 ;; '92, '93, '96, '97, 2000 Free Software Foundation, Inc.
6 ;; Author: Robert J. Chassell
7 ;; Date: [See date below for texinfo-version]
8 ;; Maintainer: bug-texinfo@gnu.org
9 ;; Keywords: maint, tex, docs
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Code:
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 (eval-when-compile (require 'tex-mode) (require 'cl))
39 (defgroup texinfo nil
40 "Texinfo Mode"
41 :group 'docs)
43 ;;;###autoload
44 (defcustom texinfo-open-quote "``"
45 "*String inserted by typing \\[texinfo-insert-quote] to open a quotation."
46 :type 'string
47 :group 'texinfo)
49 ;;;###autoload
50 (defcustom texinfo-close-quote "''"
51 "*String inserted by typing \\[texinfo-insert-quote] to close a quotation."
52 :type 'string
53 :group 'texinfo)
56 ;;; Autoloads:
58 (autoload 'makeinfo-region
59 "makeinfo"
60 "Make Info file from region of current Texinfo file, and switch to it.
62 This command does not offer the `next-error' feature since it would
63 apply to a temporary file, not the original; use the `makeinfo-buffer'
64 command to gain use of `next-error'."
65 t nil)
67 (autoload 'makeinfo-buffer
68 "makeinfo"
69 "Make Info file from current buffer.
71 Use the \\[next-error] command to move to the next error
72 \(if there are errors\)."
73 t nil)
75 (autoload 'kill-compilation
76 "compile"
77 "Kill the process made by the \\[compile] command."
78 t nil)
80 (autoload 'makeinfo-recenter-compilation-buffer
81 "makeinfo"
82 "Redisplay `*compilation*' buffer so most recent output can be seen.
83 The last line of the buffer is displayed on
84 line LINE of the window, or centered if LINE is nil."
85 t nil)
87 (autoload 'texinfo-update-node
88 "texnfo-upd"
89 "Without any prefix argument, update the node in which point is located.
90 Non-nil argument (prefix, if interactive) means update the nodes in the
91 marked region.
93 The functions for creating or updating nodes and menus, and their
94 keybindings, are:
96 `texinfo-update-node' (&optional region-p) \\[texinfo-update-node]
97 `texinfo-every-node-update' () \\[texinfo-every-node-update]
98 `texinfo-sequential-node-update' (&optional region-p)
100 `texinfo-make-menu' (&optional region-p) \\[texinfo-make-menu]
101 `texinfo-all-menus-update' () \\[texinfo-all-menus-update]
102 `texinfo-master-menu' ()
104 `texinfo-indent-menu-description' (column &optional region-p)
106 The `texinfo-column-for-description' variable specifies the column to
107 which menu descriptions are indented. Its default value is 32."
108 t nil)
110 (autoload 'texinfo-every-node-update
111 "texnfo-upd"
112 "Update every node in a Texinfo file."
113 t nil)
115 (autoload 'texinfo-sequential-node-update
116 "texnfo-upd"
117 "Update one node (or many) in a Texinfo file with sequential pointers.
119 This function causes the `Next' or `Previous' pointer to point to the
120 immediately preceding or following node, even if it is at a higher or
121 lower hierarchical level in the document. Continually pressing `n' or
122 `p' takes you straight through the file.
124 Without any prefix argument, update the node in which point is located.
125 Non-nil argument (prefix, if interactive) means update the nodes in the
126 marked region.
128 This command makes it awkward to navigate among sections and
129 subsections; it should be used only for those documents that are meant
130 to be read like a novel rather than a reference, and for which the
131 Info `g*' command is inadequate."
132 t nil)
134 (autoload 'texinfo-make-menu
135 "texnfo-upd"
136 "Without any prefix argument, make or update a menu.
137 Make the menu for the section enclosing the node found following point.
139 Non-nil argument (prefix, if interactive) means make or update menus
140 for nodes within or part of the marked region.
142 Whenever a menu exists, and is being updated, the descriptions that
143 are associated with node names in the pre-existing menu are
144 incorporated into the new menu. Otherwise, the nodes' section titles
145 are inserted as descriptions."
146 t nil)
148 (autoload 'texinfo-all-menus-update
149 "texnfo-upd"
150 "Update every regular menu in a Texinfo file.
151 Remove pre-existing master menu, if there is one.
153 If called with a non-nil argument, this function first updates all the
154 nodes in the buffer before updating the menus."
155 t nil)
157 (autoload 'texinfo-master-menu
158 "texnfo-upd"
159 "Make a master menu for a whole Texinfo file.
160 Non-nil argument (prefix, if interactive) means first update all
161 existing nodes and menus. Remove pre-existing master menu, if there is one.
163 This function creates a master menu that follows the top node. The
164 master menu includes every entry from all the other menus. It
165 replaces any existing ordinary menu that follows the top node.
167 If called with a non-nil argument, this function first updates all the
168 menus in the buffer (incorporating descriptions from pre-existing
169 menus) before it constructs the master menu.
171 The function removes the detailed part of an already existing master
172 menu. This action depends on the pre-existing master menu using the
173 standard `texinfo-master-menu-header'.
175 The master menu has the following format, which is adapted from the
176 recommendation in the Texinfo Manual:
178 * The first part contains the major nodes in the Texinfo file: the
179 nodes for the chapters, chapter-like sections, and the major
180 appendices. This includes the indices, so long as they are in
181 chapter-like sections, such as unnumbered sections.
183 * The second and subsequent parts contain a listing of the other,
184 lower level menus, in order. This way, an inquirer can go
185 directly to a particular node if he or she is searching for
186 specific information.
188 Each of the menus in the detailed node listing is introduced by the
189 title of the section containing the menu."
190 t nil)
192 (autoload 'texinfo-indent-menu-description
193 "texnfo-upd"
194 "Indent every description in menu following point to COLUMN.
195 Non-nil argument (prefix, if interactive) means indent every
196 description in every menu in the region. Does not indent second and
197 subsequent lines of a multi-line description."
198 t nil)
200 (autoload 'texinfo-insert-node-lines
201 "texnfo-upd"
202 "Insert missing `@node' lines in region of Texinfo file.
203 Non-nil argument (prefix, if interactive) means also to insert the
204 section titles as node names; and also to insert the section titles as
205 node names in pre-existing @node lines that lack names."
206 t nil)
208 (autoload 'texinfo-start-menu-description
209 "texnfo-upd"
210 "In this menu entry, insert the node's section title as a description.
211 Position point at beginning of description ready for editing.
212 Do not insert a title if the line contains an existing description.
214 You will need to edit the inserted text since a useful description
215 complements the node name rather than repeats it as a title does."
216 t nil)
218 (autoload 'texinfo-multiple-files-update
219 "texnfo-upd"
220 "Update first node pointers in each file included in OUTER-FILE;
221 create or update main menu in the outer file that refers to such nodes.
222 This does not create or update menus or pointers within the included files.
224 With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
225 insert a master menu in OUTER-FILE. This does not create or update
226 menus or pointers within the included files.
228 With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
229 interactive), update all the menus and all the `Next', `Previous', and
230 `Up' pointers of all the files included in OUTER-FILE before inserting
231 a master menu in OUTER-FILE.
233 The command also updates the `Top' level node pointers of OUTER-FILE.
235 Notes:
237 * this command does NOT save any files--you must save the
238 outer file and any modified, included files.
240 * except for the `Top' node, this command does NOT handle any
241 pre-existing nodes in the outer file; hence, indices must be
242 enclosed in an included file.
244 Requirements:
246 * each of the included files must contain exactly one highest
247 hierarchical level node,
248 * this highest node must be the first node in the included file,
249 * each highest hierarchical level node must be of the same type.
251 Thus, normally, each included file contains one, and only one,
252 chapter."
253 t nil)
256 ;;; Code:
258 ;;; Don't you dare insert any `require' calls at top level in this file--rms.
260 (defvar texinfo-section-list
261 '(("top" 1)
262 ("majorheading" 2)
263 ("chapter" 2)
264 ("unnumbered" 2)
265 ("appendix" 2)
266 ("chapheading" 2)
267 ("section" 3)
268 ("unnumberedsec" 3)
269 ("appendixsec" 3)
270 ("heading" 3)
271 ("subsection" 4)
272 ("unnumberedsubsec" 4)
273 ("appendixsubsec" 4)
274 ("subheading" 4)
275 ("subsubsection" 5)
276 ("unnumberedsubsubsec" 5)
277 ("appendixsubsubsec" 5)
278 ("subsubheading" 5))
279 "Alist of sectioning commands and their relative level.")
281 ;;; Syntax table
283 (defvar texinfo-mode-syntax-table nil)
285 (if texinfo-mode-syntax-table
287 (setq texinfo-mode-syntax-table (make-syntax-table))
288 (modify-syntax-entry ?\" " " texinfo-mode-syntax-table)
289 (modify-syntax-entry ?\\ " " texinfo-mode-syntax-table)
290 (modify-syntax-entry ?@ "\\" texinfo-mode-syntax-table)
291 (modify-syntax-entry ?\^q "\\" texinfo-mode-syntax-table)
292 (modify-syntax-entry ?\[ "(]" texinfo-mode-syntax-table)
293 (modify-syntax-entry ?\] ")[" texinfo-mode-syntax-table)
294 (modify-syntax-entry ?{ "(}" texinfo-mode-syntax-table)
295 (modify-syntax-entry ?} "){" texinfo-mode-syntax-table)
296 (modify-syntax-entry ?\n ">" texinfo-mode-syntax-table)
297 (modify-syntax-entry ?\' "w" texinfo-mode-syntax-table))
299 ;; Written by Wolfgang Bangerth <zcg51122@rpool1.rus.uni-stuttgart.de>
300 ;; To override this example, set either `imenu-generic-expression'
301 ;; or `imenu-create-index-function'.
302 (defvar texinfo-imenu-generic-expression
303 '((nil "^@\\(node\\|anchor\\)[ \t]+\\([^,\n]*\\)" 2)
304 ("Chapters" "^@chapter[ \t]+\\(.*\\)$" 1))
305 "Imenu generic expression for TexInfo mode. See `imenu-generic-expression'.")
307 (defvar texinfo-font-lock-syntactic-keywords
308 '(("\\(@\\)c\\(omment\\)?\\>" (1 "<"))
309 ("^\\(@\\)ignore\\>" (1 "< b"))
310 ("^@end ignore\\(\n\\)" (1 "> b")))
311 "Syntactic keywords to catch comment delimiters in `texinfo-mode'.")
313 (defface texinfo-heading-face
314 '((t (:inherit font-lock-function-name-face)))
315 "Face used for section headings in `texinfo-mode'.")
316 (defvar texinfo-heading-face 'texinfo-heading-face)
318 (defvar texinfo-font-lock-keywords
319 `(;; All but the first had an OVERRIDE of t.
320 ;; It didn't seem to be any better, and it's slower--simon.
321 ;; Robert J. Chassell <bob@gnu.org> says remove this line.
322 ;;("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
323 ("@\\([a-zA-Z]+\\|[^ \t\n]\\)" 1 font-lock-keyword-face) ;commands
324 ("^\\*\\(.*\\)[\t ]*$" 1 font-lock-function-name-face t) ;menu items
325 ("@\\(emph\\|strong\\|b\\|i\\|sc\\){\\([^}]+\\)" 2 font-lock-comment-face)
326 ("@\\(file\\|kbd\\|key\\|url\\|uref\\|email\\){\\([^}]+\\)" 2 font-lock-string-face)
327 ("@\\(samp\\|code\\|var\\|math\\|env\\|command\\|option\\){\\([^}]+\\)"
328 2 font-lock-variable-name-face)
329 ("@\\(cite\\|[ux]?ref\\|pxref\\){\\([^}]+\\)" 2 font-lock-constant-face)
330 ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-function-name-face keep)
331 (,(concat "^@" (regexp-opt (mapcar 'car texinfo-section-list) t)
332 ".*\n") 0 texinfo-heading-face t))
333 "Additional expressions to highlight in TeXinfo mode.")
335 (defun texinfo-outline-level ()
336 ;; Calculate level of current texinfo outline heading.
337 (save-excursion
338 (if (bobp)
340 (forward-char 1)
341 (let* ((word (buffer-substring-no-properties
342 (point) (progn (forward-word 1) (point))))
343 (entry (assoc word texinfo-section-list)))
344 (if entry
345 (nth 1 entry)
346 5)))))
349 ;;; Keybindings
350 (defvar texinfo-mode-map nil)
352 ;;; Keys common both to Texinfo mode and to TeX shell.
354 (defun texinfo-define-common-keys (keymap)
355 "Define the keys both in Texinfo mode and in the texinfo-tex-shell."
356 (define-key keymap "\C-c\C-t\C-k" 'tex-kill-job)
357 (define-key keymap "\C-c\C-t\C-x" 'texinfo-quit-job)
358 (define-key keymap "\C-c\C-t\C-l" 'tex-recenter-output-buffer)
359 (define-key keymap "\C-c\C-t\C-d" 'texinfo-delete-from-print-queue)
360 (define-key keymap "\C-c\C-t\C-q" 'tex-show-print-queue)
361 (define-key keymap "\C-c\C-t\C-p" 'texinfo-tex-print)
362 (define-key keymap "\C-c\C-t\C-v" 'texinfo-tex-view)
363 (define-key keymap "\C-c\C-t\C-i" 'texinfo-texindex)
365 (define-key keymap "\C-c\C-t\C-r" 'texinfo-tex-region)
366 (define-key keymap "\C-c\C-t\C-b" 'texinfo-tex-buffer))
368 ;; Mode documentation displays commands in reverse order
369 ;; from how they are listed in the texinfo-mode-map.
371 (if texinfo-mode-map
373 (setq texinfo-mode-map (make-sparse-keymap))
375 ;; bindings for `texnfo-tex.el'
376 (texinfo-define-common-keys texinfo-mode-map)
378 (define-key texinfo-mode-map "\"" 'texinfo-insert-quote)
380 ;; bindings for `makeinfo.el'
381 (define-key texinfo-mode-map "\C-c\C-m\C-k" 'kill-compilation)
382 (define-key texinfo-mode-map "\C-c\C-m\C-l"
383 'makeinfo-recenter-compilation-buffer)
384 (define-key texinfo-mode-map "\C-c\C-m\C-r" 'makeinfo-region)
385 (define-key texinfo-mode-map "\C-c\C-m\C-b" 'makeinfo-buffer)
387 ;; bindings for `texinfmt.el'
388 (define-key texinfo-mode-map "\C-c\C-e\C-r" 'texinfo-format-region)
389 (define-key texinfo-mode-map "\C-c\C-e\C-b" 'texinfo-format-buffer)
391 ;; AUCTeX-like bindings
392 (define-key texinfo-mode-map "\e\r" 'texinfo-insert-@item)
394 ;; bindings for updating nodes and menus
396 (define-key texinfo-mode-map "\C-c\C-um" 'texinfo-master-menu)
398 (define-key texinfo-mode-map "\C-c\C-u\C-m" 'texinfo-make-menu)
399 (define-key texinfo-mode-map "\C-c\C-u\C-n" 'texinfo-update-node)
400 (define-key texinfo-mode-map "\C-c\C-u\C-e" 'texinfo-every-node-update)
401 (define-key texinfo-mode-map "\C-c\C-u\C-a" 'texinfo-all-menus-update)
403 (define-key texinfo-mode-map "\C-c\C-s" 'texinfo-show-structure)
405 (define-key texinfo-mode-map "\C-c}" 'up-list)
406 (define-key texinfo-mode-map "\C-c]" 'up-list)
407 (define-key texinfo-mode-map "\C-c{" 'texinfo-insert-braces)
409 ;; bindings for inserting strings
410 (define-key texinfo-mode-map "\C-c\C-o" 'texinfo-insert-block)
411 (define-key texinfo-mode-map "\C-c\C-c\C-d" 'texinfo-start-menu-description)
412 (define-key texinfo-mode-map "\C-c\C-c\C-s" 'texinfo-insert-@strong)
413 (define-key texinfo-mode-map "\C-c\C-c\C-e" 'texinfo-insert-@emph)
415 (define-key texinfo-mode-map "\C-c\C-cv" 'texinfo-insert-@var)
416 (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@uref)
417 (define-key texinfo-mode-map "\C-c\C-ct" 'texinfo-insert-@table)
418 (define-key texinfo-mode-map "\C-c\C-cs" 'texinfo-insert-@samp)
419 (define-key texinfo-mode-map "\C-c\C-cq" 'texinfo-insert-@quotation)
420 (define-key texinfo-mode-map "\C-c\C-co" 'texinfo-insert-@noindent)
421 (define-key texinfo-mode-map "\C-c\C-cn" 'texinfo-insert-@node)
422 (define-key texinfo-mode-map "\C-c\C-cm" 'texinfo-insert-@email)
423 (define-key texinfo-mode-map "\C-c\C-ck" 'texinfo-insert-@kbd)
424 (define-key texinfo-mode-map "\C-c\C-ci" 'texinfo-insert-@item)
425 (define-key texinfo-mode-map "\C-c\C-cf" 'texinfo-insert-@file)
426 (define-key texinfo-mode-map "\C-c\C-cx" 'texinfo-insert-@example)
427 (define-key texinfo-mode-map "\C-c\C-ce" 'texinfo-insert-@end)
428 (define-key texinfo-mode-map "\C-c\C-cd" 'texinfo-insert-@dfn)
429 (define-key texinfo-mode-map "\C-c\C-cc" 'texinfo-insert-@code))
431 (easy-menu-define texinfo-mode-menu
432 texinfo-mode-map
433 "Menu used for `texinfo-mode'."
434 '("Texinfo"
435 ["Insert block" texinfo-insert-block t]
436 ;; ["Insert node" texinfo-insert-@node t]
437 "----"
438 ["Update All" (lambda () (interactive) (texinfo-master-menu t))
439 :keys "\\[universal-argument] \\[texinfo-master-menu]"]
440 ["Update every node" texinfo-every-node-update t]
441 ["Update node" texinfo-update-node t]
442 ["Make Master menu" texinfo-master-menu t]
443 ["Make menu" texinfo-make-menu t]
444 ["Update all menus" texinfo-all-menus-update t]
445 "----"
446 ["Show structure" texinfo-show-structure t]
447 ["Format region" texinfo-format-region t]
448 ["Format buffer" texinfo-format-buffer t]
449 ["Makeinfo region" makeinfo-region t]
450 ["Makeinfo buffer" makeinfo-buffer t]))
453 (defun texinfo-filter (section list)
454 (let (res)
455 (dolist (x list) (if (eq section (cadr x)) (push (car x) res)))
456 res))
458 (defvar texinfo-chapter-level-regexp
459 (regexp-opt (texinfo-filter 2 texinfo-section-list))
460 "Regular expression matching just the Texinfo chapter level headings.")
462 ;;; Texinfo mode
464 ;;;###autoload
465 (define-derived-mode texinfo-mode text-mode "Texinfo"
466 "Major mode for editing Texinfo files.
468 It has these extra commands:
469 \\{texinfo-mode-map}
471 These are files that are used as input for TeX to make printed manuals
472 and also to be turned into Info files with \\[makeinfo-buffer] or
473 the `makeinfo' program. These files must be written in a very restricted and
474 modified version of TeX input format.
476 Editing commands are like text-mode except that the syntax table is
477 set up so expression commands skip Texinfo bracket groups. To see
478 what the Info version of a region of the Texinfo file will look like,
479 use \\[makeinfo-region], which runs `makeinfo' on the current region.
481 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
482 This command shows the structure of a Texinfo file by listing the
483 lines with the @-sign commands for @chapter, @section, and the like.
484 These lines are displayed in another window called the *Occur* window.
485 In that window, you can position the cursor over one of the lines and
486 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
487 in the Texinfo file.
489 In addition, Texinfo mode provides commands that insert various
490 frequently used @-sign commands into the buffer. You can use these
491 commands to save keystrokes. And you can insert balanced braces with
492 \\[texinfo-insert-braces] and later use the command \\[up-list] to
493 move forward past the closing brace.
495 Also, Texinfo mode provides functions for automatically creating or
496 updating menus and node pointers. These functions
498 * insert the `Next', `Previous' and `Up' pointers of a node,
499 * insert or update the menu for a section, and
500 * create a master menu for a Texinfo source file.
502 Here are the functions:
504 texinfo-update-node \\[texinfo-update-node]
505 texinfo-every-node-update \\[texinfo-every-node-update]
506 texinfo-sequential-node-update
508 texinfo-make-menu \\[texinfo-make-menu]
509 texinfo-all-menus-update \\[texinfo-all-menus-update]
510 texinfo-master-menu
512 texinfo-indent-menu-description (column &optional region-p)
514 The `texinfo-column-for-description' variable specifies the column to
515 which menu descriptions are indented.
517 Passed an argument (a prefix argument, if interactive), the
518 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
519 in the region.
521 To use the updating commands, you must structure your Texinfo file
522 hierarchically, such that each `@node' line, with the exception of the
523 Top node, is accompanied by some kind of section line, such as an
524 `@chapter' or `@section' line.
526 If the file has a `top' node, it must be called `top' or `Top' and
527 be the first node in the file.
530 Entering Texinfo mode calls the value of `text-mode-hook', and then the
531 value of `texinfo-mode-hook'."
532 (set (make-local-variable 'page-delimiter)
533 (concat
534 "^@node [ \t]*[Tt]op\\|^@\\("
535 texinfo-chapter-level-regexp
536 "\\)\\>"))
537 (make-local-variable 'require-final-newline)
538 (setq require-final-newline t)
539 (make-local-variable 'indent-tabs-mode)
540 (setq indent-tabs-mode nil)
541 (make-local-variable 'paragraph-separate)
542 (setq paragraph-separate
543 (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate))
544 (make-local-variable 'paragraph-start)
545 (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
546 (make-local-variable 'adaptive-fill-mode)
547 (setq adaptive-fill-mode nil)
548 (make-local-variable 'fill-column)
549 (setq fill-column 72)
550 (make-local-variable 'comment-start)
551 (setq comment-start "@c ")
552 (make-local-variable 'comment-start-skip)
553 (setq comment-start-skip "@c +\\|@comment +")
554 (make-local-variable 'words-include-escapes)
555 (setq words-include-escapes t)
556 (make-local-variable 'imenu-generic-expression)
557 (setq imenu-generic-expression texinfo-imenu-generic-expression)
558 (setq imenu-case-fold-search nil)
559 (make-local-variable 'font-lock-defaults)
560 (setq font-lock-defaults
561 '(texinfo-font-lock-keywords nil nil nil nil
562 (font-lock-syntactic-keywords
563 . texinfo-font-lock-syntactic-keywords)))
564 (set (make-local-variable 'parse-sexp-lookup-properties) t)
565 (make-local-variable 'outline-regexp)
566 (setq outline-regexp
567 (concat "@" (regexp-opt (mapcar 'car texinfo-section-list) t) "\\>"))
568 (make-local-variable 'outline-level)
569 (setq outline-level 'texinfo-outline-level)
570 (make-local-variable 'tex-start-of-header)
571 (setq tex-start-of-header "%\\*\\*start")
572 (make-local-variable 'tex-end-of-header)
573 (setq tex-end-of-header "%\\*\\*end")
574 (make-local-variable 'tex-first-line-header-regexp)
575 (setq tex-first-line-header-regexp "^\\\\input")
576 (make-local-variable 'tex-trailer)
577 (setq tex-trailer "@bye\n")
579 ;; Prevent filling certain lines, in addition to ones specified
580 ;; by the user.
581 (let ((prevent-filling "^@\\(def\\|multitable\\)"))
582 (set (make-local-variable 'auto-fill-inhibit-regexp)
583 (if (null auto-fill-inhibit-regexp)
584 prevent-filling
585 (concat "\\(" auto-fill-inhibit-regexp "\\)\\|\\("
586 prevent-filling "\\)")))))
589 ;;; Insert string commands
591 (defconst texinfo-environments
592 '("cartouche"
593 "defcv"
594 "deffn"
595 "defivar"
596 "defmac"
597 "defmethod"
598 "defop"
599 "defopt"
600 "defspec"
601 "deftp"
602 "deftypefn"
603 "deftypefun"
604 "deftypevar"
605 "deftypevr"
606 "defun"
607 "defvar"
608 "defvr"
609 "description"
610 "display"
611 "enumerate"
612 "example"
613 "flushleft"
614 "flushright"
615 "format"
616 "ftable"
617 "group"
618 "ifclear"
619 "ifset"
620 "ifhtml"
621 "ifinfo"
622 "ifnothtml"
623 "ifnotinfo"
624 "ifnottex"
625 "iftex"
626 "ignore"
627 "itemize"
628 "lisp"
629 "macro"
630 "multitable"
631 "quotation"
632 "smalldisplay"
633 "smallexample"
634 "smallformat"
635 "smalllisp"
636 "table"
637 "tex"
638 "titlepage"
639 "vtable")
640 "List of TeXinfo environments.")
642 ;; Keep as concatenated lists for ease of maintenance
643 (defconst texinfo-environment-regexp
644 (concat "^@" (regexp-opt (cons "end" texinfo-environments) t) "\\>")
645 "Regexp for environment-like TexInfo list commands.
646 Subexpression 1 is what goes into the corresponding `@end' statement.")
648 (defvar texinfo-block-default "example")
650 (define-skeleton texinfo-insert-block
651 "Create a matching pair @<cmd> .. @end <cmd> at point.
652 Puts point on a blank line between them."
653 (setq texinfo-block-default
654 (completing-read (format "Block name [%s]: " texinfo-block-default)
655 (mapcar 'list texinfo-environments)
656 nil nil nil nil texinfo-block-default))
657 (unless (save-excursion (beginning-of-line) (looking-at "[ \t]*$")) '\n)
658 "@" str \n _ \n "@end " str \n)
660 (defun texinfo-inside-macro-p (macro &optional bound)
661 "Non-nil if inside a macro matching the regexp MACRO."
662 (condition-case nil
663 (save-excursion
664 (save-restriction
665 (narrow-to-region bound (point))
666 (while (progn
667 (up-list -1)
668 (not (condition-case nil
669 (save-excursion
670 (backward-sexp 1)
671 (looking-at macro))
672 (scan-error nil)))))
674 (scan-error nil)))
676 (defun texinfo-inside-env-p (env &optional bound)
677 "Non-nil if inside an environment matching the regexp @ENV."
678 (save-excursion
679 (and (re-search-backward (concat "@\\(end\\s +\\)?" env) bound t)
680 (not (match-end 1)))))
682 (defun texinfo-insert-quote (&optional arg)
683 "Insert the appropriate quote mark for TeXinfo.
684 Usually inserts the value of `texinfo-open-quote' (normally ``) or
685 `texinfo-close-quote' (normally ''), depending on the context.
686 With prefix argument or inside @code or @example, inserts a plain \"."
687 (interactive "*P")
688 (let ((top (or (save-excursion (re-search-backward "@node\\>" nil t))
689 (point-min))))
690 (if (or arg
691 (texinfo-inside-env-p "example\\>" top)
692 (texinfo-inside-env-p "lisp\\>" top)
693 (texinfo-inside-macro-p "@\\(code\\|samp\\|kbd\\)\\>" top))
694 (self-insert-command (prefix-numeric-value arg))
695 (insert
696 (cond ((= (preceding-char) ?\\) ?\")
697 ((memq (char-syntax (preceding-char)) '(?\( ?> ?\ ))
698 texinfo-open-quote)
699 (t texinfo-close-quote))))))
701 ;; The following texinfo-insert-@end command not only inserts a SPC
702 ;; after the @end, but tries to find out what belongs there. It is
703 ;; not very smart: it does not understand nested lists.
705 (defun texinfo-insert-@end ()
706 "Insert the matching `@end' for the last Texinfo command that needs one."
707 (interactive)
708 (let ((depth 1) string)
709 (save-excursion
710 (while (and (> depth 0)
711 (re-search-backward texinfo-environment-regexp nil t))
712 (setq depth (if (looking-at "@end") (1+ depth) (1- depth))))
713 (when (zerop depth)
714 ;; This looking-at is unnecessary since if depth==0,
715 ;; (looking-at "@end") has just failed, so the match data is still
716 ;; the one from re-search-backward -sm
717 ;; (looking-at texinfo-environment-regexp)
718 (setq string (match-string 1))))
719 (insert "@end ")
720 (if string (insert string "\n"))))
722 ;; The following insert commands accept a prefix arg N, which is the
723 ;; number of words (actually s-exprs) that should be surrounded by
724 ;; braces. Thus you can first paste a variable name into a .texinfo
725 ;; buffer, then say C-u 1 C-c C-c v at the beginning of the just
726 ;; pasted variable name to put @var{...} *around* the variable name.
727 ;; Operate on previous word or words with negative arg.
729 ;; These commands use texinfo-insert-@-with-arg
730 (defun texinfo-insert-@-with-arg (string &optional arg)
731 (if arg
732 (progn
733 (setq arg (prefix-numeric-value arg))
734 (if (< arg 0)
735 (progn
736 (skip-chars-backward " \t\n\r\f")
737 (save-excursion
738 (forward-sexp arg)
739 (insert "@" string "{"))
740 (insert "}"))
741 (skip-chars-forward " \t\n\r\f")
742 (insert "@" string "{")
743 (forward-sexp arg)
744 (insert "}")))
745 (insert "@" string "{}")
746 (backward-char)))
748 (defun texinfo-insert-braces ()
749 "Make a pair of braces and be poised to type inside of them.
750 Use \\[up-list] to move forward out of the braces."
751 (interactive)
752 (insert "{}")
753 (backward-char))
755 (defun texinfo-insert-@code (&optional arg)
756 "Insert a `@code{...}' command in a Texinfo buffer.
757 A numeric argument says how many words the braces should surround.
758 The default is not to surround any existing words with the braces."
759 (interactive "P")
760 (texinfo-insert-@-with-arg "code" arg))
762 (defun texinfo-insert-@dfn (&optional arg)
763 "Insert a `@dfn{...}' command in a Texinfo buffer.
764 A numeric argument says how many words the braces should surround.
765 The default is not to surround any existing words with the braces."
766 (interactive "P")
767 (texinfo-insert-@-with-arg "dfn" arg))
769 (defun texinfo-insert-@email (&optional arg)
770 "Insert a `@email{...}' command in a Texinfo buffer.
771 A numeric argument says how many words the braces should surround.
772 The default is not to surround any existing words with the braces."
773 (interactive "P")
774 (texinfo-insert-@-with-arg "email" arg))
776 (defun texinfo-insert-@emph (&optional arg)
777 "Insert a `@emph{...}' command in a Texinfo buffer.
778 A numeric argument says how many words the braces should surround.
779 The default is not to surround any existing words with the braces."
780 (interactive "P")
781 (texinfo-insert-@-with-arg "emph" arg))
783 (defun texinfo-insert-@example ()
784 "Insert the string `@example' in a Texinfo buffer."
785 (interactive)
786 (insert "@example\n"))
788 (defun texinfo-insert-@file (&optional arg)
789 "Insert a `@file{...}' command in a Texinfo buffer.
790 A numeric argument says how many words the braces should surround.
791 The default is not to surround any existing words with the braces."
792 (interactive "P")
793 (texinfo-insert-@-with-arg "file" arg))
795 (defun texinfo-insert-@item ()
796 "Insert the string `@item' in a Texinfo buffer."
797 (interactive)
798 (insert "@item")
799 (newline))
801 (defun texinfo-insert-@kbd (&optional arg)
802 "Insert a `@kbd{...}' command in a Texinfo buffer.
803 A numeric argument says how many words the braces should surround.
804 The default is not to surround any existing words with the braces."
805 (interactive "P")
806 (texinfo-insert-@-with-arg "kbd" arg))
808 (defun texinfo-insert-@node ()
809 "Insert the string `@node' in a Texinfo buffer.
810 This also inserts on the following line a comment indicating
811 the order of arguments to @node."
812 (interactive)
813 (insert "@node \n@comment node-name, next, previous, up")
814 (forward-line -1)
815 (forward-char 6))
817 (defun texinfo-insert-@noindent ()
818 "Insert the string `@noindent' in a Texinfo buffer."
819 (interactive)
820 (insert "@noindent\n"))
822 (defun texinfo-insert-@quotation ()
823 "Insert the string `@quotation' in a Texinfo buffer."
824 (interactive)
825 (insert "@quotation\n"))
827 (defun texinfo-insert-@samp (&optional arg)
828 "Insert a `@samp{...}' command in a Texinfo buffer.
829 A numeric argument says how many words the braces should surround.
830 The default is not to surround any existing words with the braces."
831 (interactive "P")
832 (texinfo-insert-@-with-arg "samp" arg))
834 (defun texinfo-insert-@strong (&optional arg)
835 "Insert a `@strong{...}' command in a Texinfo buffer.
836 A numeric argument says how many words the braces should surround.
837 The default is not to surround any existing words with the braces."
838 (interactive "P")
839 (texinfo-insert-@-with-arg "strong" arg))
841 (defun texinfo-insert-@table (&optional arg)
842 "Insert the string `@table' in a Texinfo buffer."
843 (interactive "P")
844 (insert "@table "))
846 (defun texinfo-insert-@var (&optional arg)
847 "Insert a `@var{}' command in a Texinfo buffer.
848 A numeric argument says how many words the braces should surround.
849 The default is not to surround any existing words with the braces."
850 (interactive "P")
851 (texinfo-insert-@-with-arg "var" arg))
853 (defun texinfo-insert-@uref (&optional arg)
854 "Insert a `@uref{}' command in a Texinfo buffer.
855 A numeric argument says how many words the braces should surround.
856 The default is not to surround any existing words with the braces."
857 (interactive "P")
858 (texinfo-insert-@-with-arg "uref" arg))
859 (defalias 'texinfo-insert-@url 'texinfo-insert-@uref)
861 ;;; Texinfo file structure
863 (defun texinfo-show-structure (&optional nodes-too)
864 "Show the structure of a Texinfo file.
865 List the lines in the file that begin with the @-sign commands for
866 @chapter, @section, and the like.
868 With optional argument (prefix if interactive), list both the lines
869 with @-sign commands for @chapter, @section, and the like, and list
870 @node lines.
872 Lines with structuring commands beginning in them are displayed in
873 another buffer named `*Occur*'. In that buffer, you can move point to
874 one of those lines and then use \\<occur-mode-map>\\[occur-mode-goto-occurrence],
875 to jump to the corresponding spot in the Texinfo source file."
877 (interactive "P")
878 (save-excursion
879 (goto-char (point-min))
880 (if nodes-too
881 (occur (concat "^@node\\>\\|" outline-regexp))
882 (occur outline-regexp)))
883 (pop-to-buffer "*Occur*")
884 (goto-char (point-min))
885 (let ((inhibit-read-only t))
886 (flush-lines "-----")
887 ;; Now format the "*Occur*" buffer to show the structure.
888 ;; Thanks to ceder@signum.se (Per Cederqvist)
889 (goto-char (point-max))
890 (let (level)
891 (while (re-search-backward "^ *[0-9]*:@\\(\\sw+\\)" nil 0)
892 (goto-char (1- (match-beginning 1)))
893 (setq level (or (cadr (assoc (match-string 1) texinfo-section-list)) 2))
894 (indent-to-column (+ (current-column) (* 4 (- level 2))))
895 (beginning-of-line)))))
897 ;;; The tex and print function definitions:
899 (defcustom texinfo-texi2dvi-command "texi2dvi"
900 "*Command used by `texinfo-tex-buffer' to run TeX and texindex on a buffer."
901 :type 'string
902 :group 'texinfo)
904 (defcustom texinfo-tex-command "tex"
905 "*Command used by `texinfo-tex-region' to run TeX on a region."
906 :type 'string
907 :group 'texinfo)
909 (defcustom texinfo-texindex-command "texindex"
910 "*Command used by `texinfo-texindex' to sort unsorted index files."
911 :type 'string
912 :group 'texinfo)
914 (defcustom texinfo-delete-from-print-queue-command "lprm"
915 "*Command string used to delete a job from the line printer queue.
916 Command is used by \\[texinfo-delete-from-print-queue] based on
917 number provided by a previous \\[tex-show-print-queue]
918 command."
919 :type 'string
920 :group 'texinfo)
922 (defvar texinfo-tex-trailer "@bye"
923 "String appended after a region sent to TeX by `texinfo-tex-region'.")
925 (defun texinfo-tex-region (beg end)
926 "Run TeX on the current region.
927 This works by writing a temporary file (`tex-zap-file') in the directory
928 that is the value of `tex-directory', then running TeX on that file.
930 The first line of the buffer is copied to the
931 temporary file; and if the buffer has a header, it is written to the
932 temporary file before the region itself. The buffer's header is all lines
933 between the strings defined by `tex-start-of-header' and `tex-end-of-header'
934 inclusive. The header must start in the first 100 lines.
936 The value of `texinfo-tex-trailer' is appended to the temporary file after the region."
937 (interactive "r")
938 (require 'tex-mode)
939 (let ((tex-command texinfo-tex-command)
940 (tex-trailer texinfo-tex-trailer))
941 (tex-region beg end)))
943 (defun texinfo-tex-buffer ()
944 "Run TeX on visited file, once or twice, to make a correct `.dvi' file."
945 (interactive)
946 (require 'tex-mode)
947 (let ((tex-command texinfo-texi2dvi-command)
948 ;; Disable tex-start-options-string. texi2dvi would not
949 ;; understand anything specified here.
950 (tex-start-options-string ""))
951 (tex-buffer)))
953 (defun texinfo-texindex ()
954 "Run `texindex' on unsorted index files.
955 The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
956 This runs the shell command defined by `texinfo-texindex-command'."
957 (interactive)
958 (require 'tex-mode)
959 (tex-send-command texinfo-texindex-command (concat tex-zap-file ".??"))
960 ;; alternatively
961 ;; (send-string "tex-shell"
962 ;; (concat texinfo-texindex-command
963 ;; " " tex-zap-file ".??" "\n"))
964 (tex-recenter-output-buffer nil))
966 (defun texinfo-tex-print ()
967 "Print `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
968 This runs the shell command defined by `tex-dvi-print-command'."
969 (interactive)
970 (require 'tex-mode)
971 (tex-print))
973 (defun texinfo-tex-view ()
974 "View `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
975 This runs the shell command defined by `tex-dvi-view-command'."
976 (interactive)
977 (require 'tex-mode)
978 (tex-view))
980 (defun texinfo-quit-job ()
981 "Quit currently running TeX job, by sending an `x' to it."
982 (interactive)
983 (if (not (get-process "tex-shell"))
984 (error "No TeX shell running"))
985 (tex-send-command "x"))
986 ;; alternatively:
987 ;; save-excursion
988 ;; (set-buffer (get-buffer "*tex-shell*"))
989 ;; (goto-char (point-max))
990 ;; (insert "x")
991 ;; (comint-send-input)
993 (defun texinfo-delete-from-print-queue (job-number)
994 "Delete job from the line printer spooling queue.
995 You are prompted for the job number (use a number shown by a previous
996 \\[tex-show-print-queue] command)."
997 (interactive "nPrinter job number for deletion: ")
998 (require 'tex-mode)
999 (if (tex-shell-running)
1000 (tex-kill-job)
1001 (tex-start-shell))
1002 (tex-send-command texinfo-delete-from-print-queue-command job-number)
1003 ;; alternatively
1004 ;; (send-string "tex-shell"
1005 ;; (concat
1006 ;; texinfo-delete-from-print-queue-command
1007 ;; " "
1008 ;; job-number"\n"))
1009 (tex-recenter-output-buffer nil))
1011 (provide 'texinfo)
1013 ;;; texinfo.el ends here