(Qdisplay_environment_variable): Delete.
[emacs.git] / lisp / textmodes / texinfo.el
blob004e57bc21a2dfcaa47179afeef5fce952d87051
1 ;;; texinfo.el --- major mode for editing Texinfo files -*- coding: iso-2022-7bit -*-
3 ;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1997,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Robert J. Chassell
7 ;; Date: [See date below for texinfo-version]
8 ;; Maintainer: FSF
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 3, 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., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Todo:
30 ;; - facemenu support.
31 ;; - command completion.
33 ;;; Commentary:
35 ;;; Code:
37 (or (fboundp 'defgroup)
38 (defmacro defgroup (&rest ignore) nil))
40 (or (fboundp 'defcustom)
41 (defmacro defcustom (var value doc &rest ignore)
42 `(defvar ,var ,value ,doc)))
44 (eval-when-compile (require 'tex-mode) (require 'cl))
45 (defvar outline-heading-alist)
47 (defgroup texinfo nil
48 "Texinfo Mode."
49 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
50 :group 'docs)
52 ;;;###autoload
53 (defcustom texinfo-open-quote "``"
54 "String inserted by typing \\[texinfo-insert-quote] to open a quotation."
55 :type 'string
56 :group 'texinfo)
58 ;;;###autoload
59 (defcustom texinfo-close-quote "''"
60 "String inserted by typing \\[texinfo-insert-quote] to close a quotation."
61 :type 'string
62 :group 'texinfo)
64 (defcustom texinfo-mode-hook nil
65 "Normal hook run when entering Texinfo mode."
66 :type 'hook
67 :options '(turn-on-auto-fill flyspell-mode)
68 :group 'texinfo)
71 ;;; Autoloads:
73 (autoload 'makeinfo-region
74 "makeinfo"
75 "Make Info file from region of current Texinfo file, and switch to it.
77 This command does not offer the `next-error' feature since it would
78 apply to a temporary file, not the original; use the `makeinfo-buffer'
79 command to gain use of `next-error'."
80 t nil)
82 (autoload 'makeinfo-buffer
83 "makeinfo"
84 "Make Info file from current buffer.
86 Use the \\[next-error] command to move to the next error
87 \(if there are errors\)."
88 t nil)
90 (autoload 'kill-compilation
91 "compile"
92 "Kill the process made by the \\[compile] command."
93 t nil)
95 (autoload 'makeinfo-recenter-compilation-buffer
96 "makeinfo"
97 "Redisplay `*compilation*' buffer so most recent output can be seen.
98 The last line of the buffer is displayed on
99 line LINE of the window, or centered if LINE is nil."
100 t nil)
102 (autoload 'texinfo-update-node
103 "texnfo-upd"
104 "Without any prefix argument, update the node in which point is located.
105 Non-nil argument (prefix, if interactive) means update the nodes in the
106 marked region.
108 The functions for creating or updating nodes and menus, and their
109 keybindings, are:
111 `texinfo-update-node' (&optional region-p) \\[texinfo-update-node]
112 `texinfo-every-node-update' () \\[texinfo-every-node-update]
113 `texinfo-sequential-node-update' (&optional region-p)
115 `texinfo-make-menu' (&optional region-p) \\[texinfo-make-menu]
116 `texinfo-all-menus-update' () \\[texinfo-all-menus-update]
117 `texinfo-master-menu' ()
119 `texinfo-indent-menu-description' (column &optional region-p)
121 The `texinfo-column-for-description' variable specifies the column to
122 which menu descriptions are indented. Its default value is 32."
123 t nil)
125 (autoload 'texinfo-every-node-update
126 "texnfo-upd"
127 "Update every node in a Texinfo file."
128 t nil)
130 (autoload 'texinfo-sequential-node-update
131 "texnfo-upd"
132 "Update one node (or many) in a Texinfo file with sequential pointers.
134 This function causes the `Next' or `Previous' pointer to point to the
135 immediately preceding or following node, even if it is at a higher or
136 lower hierarchical level in the document. Continually pressing `n' or
137 `p' takes you straight through the file.
139 Without any prefix argument, update the node in which point is located.
140 Non-nil argument (prefix, if interactive) means update the nodes in the
141 marked region.
143 This command makes it awkward to navigate among sections and
144 subsections; it should be used only for those documents that are meant
145 to be read like a novel rather than a reference, and for which the
146 Info `g*' command is inadequate."
147 t nil)
149 (autoload 'texinfo-make-menu
150 "texnfo-upd"
151 "Without any prefix argument, make or update a menu.
152 Make the menu for the section enclosing the node found following point.
154 Non-nil argument (prefix, if interactive) means make or update menus
155 for nodes within or part of the marked region.
157 Whenever a menu exists, and is being updated, the descriptions that
158 are associated with node names in the pre-existing menu are
159 incorporated into the new menu. Otherwise, the nodes' section titles
160 are inserted as descriptions."
161 t nil)
163 (autoload 'texinfo-all-menus-update
164 "texnfo-upd"
165 "Update every regular menu in a Texinfo file.
166 Remove pre-existing master menu, if there is one.
168 If called with a non-nil argument, this function first updates all the
169 nodes in the buffer before updating the menus."
170 t nil)
172 (autoload 'texinfo-master-menu
173 "texnfo-upd"
174 "Make a master menu for a whole Texinfo file.
175 Non-nil argument (prefix, if interactive) means first update all
176 existing nodes and menus. Remove pre-existing master menu, if there is one.
178 This function creates a master menu that follows the top node. The
179 master menu includes every entry from all the other menus. It
180 replaces any existing ordinary menu that follows the top node.
182 If called with a non-nil argument, this function first updates all the
183 menus in the buffer (incorporating descriptions from pre-existing
184 menus) before it constructs the master menu.
186 The function removes the detailed part of an already existing master
187 menu. This action depends on the pre-existing master menu using the
188 standard `texinfo-master-menu-header'.
190 The master menu has the following format, which is adapted from the
191 recommendation in the Texinfo Manual:
193 * The first part contains the major nodes in the Texinfo file: the
194 nodes for the chapters, chapter-like sections, and the major
195 appendices. This includes the indices, so long as they are in
196 chapter-like sections, such as unnumbered sections.
198 * The second and subsequent parts contain a listing of the other,
199 lower level menus, in order. This way, an inquirer can go
200 directly to a particular node if he or she is searching for
201 specific information.
203 Each of the menus in the detailed node listing is introduced by the
204 title of the section containing the menu."
205 t nil)
207 (autoload 'texinfo-indent-menu-description
208 "texnfo-upd"
209 "Indent every description in menu following point to COLUMN.
210 Non-nil argument (prefix, if interactive) means indent every
211 description in every menu in the region. Does not indent second and
212 subsequent lines of a multi-line description."
213 t nil)
215 (autoload 'texinfo-insert-node-lines
216 "texnfo-upd"
217 "Insert missing `@node' lines in region of Texinfo file.
218 Non-nil argument (prefix, if interactive) means also to insert the
219 section titles as node names; and also to insert the section titles as
220 node names in pre-existing @node lines that lack names."
221 t nil)
223 (autoload 'texinfo-start-menu-description
224 "texnfo-upd"
225 "In this menu entry, insert the node's section title as a description.
226 Position point at beginning of description ready for editing.
227 Do not insert a title if the line contains an existing description.
229 You will need to edit the inserted text since a useful description
230 complements the node name rather than repeats it as a title does."
231 t nil)
233 (autoload 'texinfo-multiple-files-update
234 "texnfo-upd"
235 "Update first node pointers in each file included in OUTER-FILE;
236 create or update main menu in the outer file that refers to such nodes.
237 This does not create or update menus or pointers within the included files.
239 With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
240 insert a master menu in OUTER-FILE. This does not create or update
241 menus or pointers within the included files.
243 With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
244 interactive), update all the menus and all the `Next', `Previous', and
245 `Up' pointers of all the files included in OUTER-FILE before inserting
246 a master menu in OUTER-FILE.
248 The command also updates the `Top' level node pointers of OUTER-FILE.
250 Notes:
252 * this command does NOT save any files--you must save the
253 outer file and any modified, included files.
255 * except for the `Top' node, this command does NOT handle any
256 pre-existing nodes in the outer file; hence, indices must be
257 enclosed in an included file.
259 Requirements:
261 * each of the included files must contain exactly one highest
262 hierarchical level node,
263 * this highest node must be the first node in the included file,
264 * each highest hierarchical level node must be of the same type.
266 Thus, normally, each included file contains one, and only one,
267 chapter."
268 t nil)
271 ;;; Code:
273 ;;; Don't you dare insert any `require' calls at top level in this file--rms.
275 (defvar texinfo-section-list
276 '(("top" 1)
277 ("chapter" 2)
278 ("section" 3)
279 ("subsection" 4)
280 ("subsubsection" 5)
281 ("unnumbered" 2)
282 ("unnumberedsec" 3)
283 ("unnumberedsubsec" 4)
284 ("unnumberedsubsubsec" 5)
285 ("appendix" 2)
286 ("appendixsec" 3)
287 ("appendixsection" 3)
288 ("appendixsubsec" 4)
289 ("appendixsubsubsec" 5)
290 ("majorheading" 2)
291 ("chapheading" 2)
292 ("heading" 3)
293 ("subheading" 4)
294 ("subsubheading" 5))
295 "Alist of sectioning commands and their relative level.")
297 ;;; Syntax table
299 (defvar texinfo-mode-syntax-table
300 (let ((st (make-syntax-table)))
301 (modify-syntax-entry ?\" "." st)
302 (modify-syntax-entry ?\\ "." st)
303 (modify-syntax-entry ?@ "\\" st)
304 (modify-syntax-entry ?\^q "\\" st)
305 (modify-syntax-entry ?\[ "(]" st)
306 (modify-syntax-entry ?\] ")[" st)
307 (modify-syntax-entry ?{ "(}" st)
308 (modify-syntax-entry ?} "){" st)
309 (modify-syntax-entry ?\n ">" st)
310 (modify-syntax-entry ?\' "w" st)
311 st))
313 ;; Written by Wolfgang Bangerth <zcg51122@rpool1.rus.uni-stuttgart.de>
314 ;; To override this example, set either `imenu-generic-expression'
315 ;; or `imenu-create-index-function'.
316 (defvar texinfo-imenu-generic-expression
317 '((nil "^@\\(node\\|anchor\\)[ \t]+\\([^,\n]*\\)" 2)
318 ("Chapters" "^@chapter[ \t]+\\(.*\\)$" 1))
319 "Imenu generic expression for Texinfo mode. See `imenu-generic-expression'.")
321 (defvar texinfo-font-lock-syntactic-keywords
322 '(("\\(@\\)c\\(omment\\)?\\>" (1 "<"))
323 ("^\\(@\\)ignore\\>" (1 "< b"))
324 ("^@end ignore\\(\n\\)" (1 "> b")))
325 "Syntactic keywords to catch comment delimiters in `texinfo-mode'.")
327 (defconst texinfo-environments
328 '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac"
329 "defmethod" "defop" "defopt" "defspec" "deftp" "deftypefn"
330 "deftypefun" "deftypevar" "deftypevr" "defun" "defvar"
331 "defvr" "description" "detailmenu" "direntry" "display"
332 "documentdescription" "enumerate" "example" "flushleft"
333 "flushright" "format" "ftable" "group" "ifclear" "ifset"
334 "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext"
335 "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp"
336 "macro" "menu" "multitable" "quotation" "smalldisplay"
337 "smallexample" "smallformat" "smalllisp" "table" "tex"
338 "titlepage" "verbatim" "vtable")
339 "List of Texinfo environments.")
341 (defconst texinfo-environment-regexp
342 (concat "^@" (regexp-opt (cons "end" texinfo-environments) t) "\\>")
343 "Regexp for environment-like Texinfo list commands.
344 Subexpression 1 is what goes into the corresponding `@end' statement.")
346 (defface texinfo-heading
347 '((t (:inherit font-lock-function-name-face)))
348 "Face used for section headings in `texinfo-mode'."
349 :group 'texinfo)
350 ;; backward-compatibility alias
351 (put 'texinfo-heading-face 'face-alias 'texinfo-heading)
352 (defvar texinfo-heading-face 'texinfo-heading)
354 (defvar texinfo-font-lock-keywords
355 `(;; All but the first had an OVERRIDE of t.
356 ;; It didn't seem to be any better, and it's slower--simon.
357 ;; Robert J. Chassell <bob@gnu.org> says remove this line.
358 ;;("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
359 ("@\\([a-zA-Z]+\\|[^ \t\n]\\)" 1 font-lock-keyword-face) ;commands
360 ("^\\*\\([^\n:]*\\)" 1 font-lock-function-name-face t) ;menu items
361 ("@\\(emph\\|i\\|sc\\){\\([^}]+\\)" 2 'italic)
362 ("@\\(strong\\|b\\){\\([^}]+\\)" 2 'bold)
363 ("@\\(kbd\\|key\\|url\\|uref\\){\\([^}]+\\)" 2 font-lock-string-face)
364 ;; The following two groups have an OVERRIDE of `keep' because
365 ;; their arguments frequently include a @@, and we don't want that
366 ;; to overwrite the normal fontification of the argument.
367 ("@\\(file\\|email\\){\\([^}]+\\)" 2 font-lock-string-face keep)
368 ("@\\(samp\\|code\\|var\\|math\\|env\\|command\\|option\\){\\([^}]+\\)"
369 2 font-lock-variable-name-face keep)
370 ("@\\(cite\\|x?ref\\|pxref\\|dfn\\|inforef\\){\\([^}]+\\)"
371 2 font-lock-constant-face)
372 ("@\\(anchor\\){\\([^}]+\\)" 2 font-lock-type-face)
373 ("@\\(dmn\\|acronym\\|value\\){\\([^}]+\\)" 2 font-lock-builtin-face)
374 ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-keyword-face keep)
375 ;; (,texinfo-environment-regexp
376 ;; 1 (texinfo-clone-environment (match-beginning 1) (match-end 1)) keep)
377 (,(concat "^@" (regexp-opt (mapcar 'car texinfo-section-list) t)
378 ".*\n") 0 texinfo-heading-face t))
379 "Additional expressions to highlight in Texinfo mode.")
381 (defun texinfo-clone-environment (start end)
382 (let ((endp nil))
383 (save-excursion
384 (ignore-errors
385 (goto-char start)
386 (when (looking-at "end\\Sw+\\(\\sw+\\)")
387 (setq endp t start (match-beginning 1) end (match-end 1)))
388 (unless (get-char-property start 'text-clones)
389 (if endp
390 (texinfo-last-unended-begin)
391 (forward-word 1)
392 (texinfo-next-unmatched-end))
393 (skip-syntax-forward "^w")
394 (when (looking-at
395 (concat (regexp-quote (buffer-substring start end)) "\\>"))
396 (text-clone-create start end 'spread "\\w*")))))))
399 ;;; Keybindings
401 ;;; Keys common both to Texinfo mode and to TeX shell.
403 (defun texinfo-define-common-keys (keymap)
404 "Define the keys both in Texinfo mode and in the texinfo-tex-shell."
405 (define-key keymap "\C-c\C-t\C-k" 'tex-kill-job)
406 (define-key keymap "\C-c\C-t\C-x" 'texinfo-quit-job)
407 (define-key keymap "\C-c\C-t\C-l" 'tex-recenter-output-buffer)
408 (define-key keymap "\C-c\C-t\C-d" 'texinfo-delete-from-print-queue)
409 (define-key keymap "\C-c\C-t\C-q" 'tex-show-print-queue)
410 (define-key keymap "\C-c\C-t\C-p" 'texinfo-tex-print)
411 (define-key keymap "\C-c\C-t\C-v" 'texinfo-tex-view)
412 (define-key keymap "\C-c\C-t\C-i" 'texinfo-texindex)
414 (define-key keymap "\C-c\C-t\C-r" 'texinfo-tex-region)
415 (define-key keymap "\C-c\C-t\C-b" 'texinfo-tex-buffer))
417 ;; Mode documentation displays commands in reverse order
418 ;; from how they are listed in the texinfo-mode-map.
420 (defvar texinfo-mode-map
421 (let ((map (make-sparse-keymap)))
423 ;; bindings for `texnfo-tex.el'
424 (texinfo-define-common-keys map)
426 (define-key map "\"" 'texinfo-insert-quote)
428 ;; bindings for `makeinfo.el'
429 (define-key map "\C-c\C-m\C-k" 'kill-compilation)
430 (define-key map "\C-c\C-m\C-l"
431 'makeinfo-recenter-compilation-buffer)
432 (define-key map "\C-c\C-m\C-r" 'makeinfo-region)
433 (define-key map "\C-c\C-m\C-b" 'makeinfo-buffer)
435 ;; bindings for `texinfmt.el'
436 (define-key map "\C-c\C-e\C-r" 'texinfo-format-region)
437 (define-key map "\C-c\C-e\C-b" 'texinfo-format-buffer)
439 ;; AUCTeX-like bindings
440 (define-key map "\e\r" 'texinfo-insert-@item)
442 ;; bindings for updating nodes and menus
444 (define-key map "\C-c\C-um" 'texinfo-master-menu)
446 (define-key map "\C-c\C-u\C-m" 'texinfo-make-menu)
447 (define-key map "\C-c\C-u\C-n" 'texinfo-update-node)
448 (define-key map "\C-c\C-u\C-e" 'texinfo-every-node-update)
449 (define-key map "\C-c\C-u\C-a" 'texinfo-all-menus-update)
451 (define-key map "\C-c\C-s" 'texinfo-show-structure)
453 (define-key map "\C-c}" 'up-list)
454 (define-key map "\C-c]" 'up-list)
455 (define-key map "\C-c{" 'texinfo-insert-braces)
457 ;; bindings for inserting strings
458 (define-key map "\C-c\C-o" 'texinfo-insert-block)
459 (define-key map "\C-c\C-c\C-d" 'texinfo-start-menu-description)
460 (define-key map "\C-c\C-c\C-s" 'texinfo-insert-@strong)
461 (define-key map "\C-c\C-c\C-e" 'texinfo-insert-@emph)
463 (define-key map "\C-c\C-cv" 'texinfo-insert-@var)
464 (define-key map "\C-c\C-cu" 'texinfo-insert-@uref)
465 (define-key map "\C-c\C-ct" 'texinfo-insert-@table)
466 (define-key map "\C-c\C-cs" 'texinfo-insert-@samp)
467 (define-key map "\C-c\C-cq" 'texinfo-insert-@quotation)
468 (define-key map "\C-c\C-co" 'texinfo-insert-@noindent)
469 (define-key map "\C-c\C-cn" 'texinfo-insert-@node)
470 (define-key map "\C-c\C-cm" 'texinfo-insert-@email)
471 (define-key map "\C-c\C-ck" 'texinfo-insert-@kbd)
472 (define-key map "\C-c\C-ci" 'texinfo-insert-@item)
473 (define-key map "\C-c\C-cf" 'texinfo-insert-@file)
474 (define-key map "\C-c\C-cx" 'texinfo-insert-@example)
475 (define-key map "\C-c\C-ce" 'texinfo-insert-@end)
476 (define-key map "\C-c\C-cd" 'texinfo-insert-@dfn)
477 (define-key map "\C-c\C-cc" 'texinfo-insert-@code)
478 map))
480 (easy-menu-define texinfo-mode-menu
481 texinfo-mode-map
482 "Menu used for `texinfo-mode'."
483 '("Texinfo"
484 ["Insert block" texinfo-insert-block t]
485 ;; ["Insert node" texinfo-insert-@node t]
486 "----"
487 ["Update All" (lambda () (interactive) (texinfo-master-menu t))
488 :keys "\\[universal-argument] \\[texinfo-master-menu]"]
489 ["Update every node" texinfo-every-node-update t]
490 ["Update node" texinfo-update-node t]
491 ["Make Master menu" texinfo-master-menu t]
492 ["Make menu" texinfo-make-menu t]
493 ["Update all menus" texinfo-all-menus-update t]
494 "----"
495 ["Show structure" texinfo-show-structure t]
496 ["Format region" texinfo-format-region t]
497 ["Format buffer" texinfo-format-buffer t]
498 ["Makeinfo region" makeinfo-region t]
499 ["Makeinfo buffer" makeinfo-buffer t]))
502 (defun texinfo-filter (section list)
503 (let (res)
504 (dolist (x list) (if (eq section (cadr x)) (push (car x) res)))
505 res))
507 (defvar texinfo-chapter-level-regexp
508 (regexp-opt (texinfo-filter 2 texinfo-section-list))
509 "Regular expression matching just the Texinfo chapter level headings.")
511 ;;; Texinfo mode
513 ;;;###autoload
514 (define-derived-mode texinfo-mode text-mode "Texinfo"
515 "Major mode for editing Texinfo files.
517 It has these extra commands:
518 \\{texinfo-mode-map}
520 These are files that are used as input for TeX to make printed manuals
521 and also to be turned into Info files with \\[makeinfo-buffer] or
522 the `makeinfo' program. These files must be written in a very restricted and
523 modified version of TeX input format.
525 Editing commands are like text-mode except that the syntax table is
526 set up so expression commands skip Texinfo bracket groups. To see
527 what the Info version of a region of the Texinfo file will look like,
528 use \\[makeinfo-region], which runs `makeinfo' on the current region.
530 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
531 This command shows the structure of a Texinfo file by listing the
532 lines with the @-sign commands for @chapter, @section, and the like.
533 These lines are displayed in another window called the *Occur* window.
534 In that window, you can position the cursor over one of the lines and
535 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
536 in the Texinfo file.
538 In addition, Texinfo mode provides commands that insert various
539 frequently used @-sign commands into the buffer. You can use these
540 commands to save keystrokes. And you can insert balanced braces with
541 \\[texinfo-insert-braces] and later use the command \\[up-list] to
542 move forward past the closing brace.
544 Also, Texinfo mode provides functions for automatically creating or
545 updating menus and node pointers. These functions
547 * insert the `Next', `Previous' and `Up' pointers of a node,
548 * insert or update the menu for a section, and
549 * create a master menu for a Texinfo source file.
551 Here are the functions:
553 texinfo-update-node \\[texinfo-update-node]
554 texinfo-every-node-update \\[texinfo-every-node-update]
555 texinfo-sequential-node-update
557 texinfo-make-menu \\[texinfo-make-menu]
558 texinfo-all-menus-update \\[texinfo-all-menus-update]
559 texinfo-master-menu
561 texinfo-indent-menu-description (column &optional region-p)
563 The `texinfo-column-for-description' variable specifies the column to
564 which menu descriptions are indented.
566 Passed an argument (a prefix argument, if interactive), the
567 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
568 in the region.
570 To use the updating commands, you must structure your Texinfo file
571 hierarchically, such that each `@node' line, with the exception of the
572 Top node, is accompanied by some kind of section line, such as an
573 `@chapter' or `@section' line.
575 If the file has a `top' node, it must be called `top' or `Top' and
576 be the first node in the file.
578 Entering Texinfo mode calls the value of `text-mode-hook', and then the
579 value of `texinfo-mode-hook'."
580 (set (make-local-variable 'page-delimiter)
581 (concat
582 "^@node [ \t]*[Tt]op\\|^@\\("
583 texinfo-chapter-level-regexp
584 "\\)\\>"))
585 (make-local-variable 'require-final-newline)
586 (setq require-final-newline mode-require-final-newline)
587 (make-local-variable 'indent-tabs-mode)
588 (setq indent-tabs-mode nil)
589 (make-local-variable 'paragraph-separate)
590 (setq paragraph-separate
591 (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate))
592 (make-local-variable 'paragraph-start)
593 (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
594 (make-local-variable 'sentence-end-base)
595 (setq sentence-end-base
596 "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'\e$B!I\e$,1r}\e(B)}]*")
597 (make-local-variable 'adaptive-fill-mode)
598 (setq adaptive-fill-mode nil)
599 (make-local-variable 'fill-column)
600 (setq fill-column 70)
601 (make-local-variable 'comment-start)
602 (setq comment-start "@c ")
603 (make-local-variable 'comment-start-skip)
604 (setq comment-start-skip "@c +\\|@comment +")
605 (make-local-variable 'words-include-escapes)
606 (setq words-include-escapes t)
607 (make-local-variable 'imenu-generic-expression)
608 (setq imenu-generic-expression texinfo-imenu-generic-expression)
609 (setq imenu-case-fold-search nil)
610 (make-local-variable 'font-lock-defaults)
611 (setq font-lock-defaults
612 '(texinfo-font-lock-keywords nil nil nil backward-paragraph
613 (font-lock-syntactic-keywords
614 . texinfo-font-lock-syntactic-keywords)))
615 (set (make-local-variable 'parse-sexp-lookup-properties) t)
617 ;; Outline settings.
618 (set (make-local-variable 'outline-heading-alist)
619 ;; We should merge outline-heading-alist and texinfo-section-list
620 ;; but in the mean time, let's just generate one from the other.
621 (mapcar (lambda (x) (cons (concat "@" (car x)) (cadr x)))
622 texinfo-section-list))
623 (set (make-local-variable 'outline-regexp)
624 (concat (regexp-opt (mapcar 'car outline-heading-alist) t)
625 "\\>"))
627 (make-local-variable 'tex-start-of-header)
628 (setq tex-start-of-header "%\\*\\*start")
629 (make-local-variable 'tex-end-of-header)
630 (setq tex-end-of-header "%\\*\\*end")
631 (make-local-variable 'tex-first-line-header-regexp)
632 (setq tex-first-line-header-regexp "^\\\\input")
633 (make-local-variable 'tex-trailer)
634 (setq tex-trailer "@bye\n")
636 ;; Prevent filling certain lines, in addition to ones specified
637 ;; by the user.
638 (let ((prevent-filling "^@\\(def\\|multitable\\)"))
639 (set (make-local-variable 'auto-fill-inhibit-regexp)
640 (if (null auto-fill-inhibit-regexp)
641 prevent-filling
642 (concat auto-fill-inhibit-regexp "\\|" prevent-filling)))))
646 ;;; Insert string commands
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 texinfo-environments
656 nil nil nil nil texinfo-block-default))
657 \n "@" str \n _ \n "@end " str \n)
659 (defun texinfo-inside-macro-p (macro &optional bound)
660 "Non-nil if inside a macro matching the regexp MACRO."
661 (condition-case nil
662 (save-excursion
663 (save-restriction
664 (narrow-to-region bound (point))
665 (while (progn
666 (up-list -1)
667 (not (condition-case nil
668 (save-excursion
669 (backward-sexp 1)
670 (looking-at macro))
671 (scan-error nil)))))
673 (scan-error nil)))
675 (defun texinfo-inside-env-p (env &optional bound)
676 "Non-nil if inside an environment matching the regexp @ENV."
677 (save-excursion
678 (and (re-search-backward (concat "@\\(end\\s +\\)?" env) bound t)
679 (not (match-end 1)))))
681 (defvar texinfo-enable-quote-macros "@\\(code\\|samp\\|kbd\\)\\>")
682 (defvar texinfo-enable-quote-envs '("example\\>" "lisp\\>"))
683 (defun texinfo-insert-quote (&optional arg)
684 "Insert the appropriate quote mark for Texinfo.
685 Usually inserts the value of `texinfo-open-quote' (normally ``) or
686 `texinfo-close-quote' (normally ''), depending on the context.
687 With prefix argument or inside @code or @example, inserts a plain \"."
688 (interactive "*P")
689 (let ((top (or (save-excursion (re-search-backward "@node\\>" nil t))
690 (point-min))))
691 (if (or arg
692 (= (preceding-char) ?\\)
693 (save-excursion
694 (backward-char (length texinfo-open-quote))
695 (when (or (looking-at texinfo-open-quote)
696 (looking-at texinfo-close-quote))
697 (delete-char (length texinfo-open-quote))
699 (texinfo-inside-macro-p texinfo-enable-quote-macros top)
700 (let ((in-env nil))
701 (dolist (env texinfo-enable-quote-envs in-env)
702 (if (texinfo-inside-env-p env top)
703 (setq in-env t)))))
704 (self-insert-command (prefix-numeric-value arg))
705 (insert
706 (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s))
707 texinfo-open-quote
708 texinfo-close-quote)))))
710 ;; The following texinfo-insert-@end command not only inserts a SPC
711 ;; after the @end, but tries to find out what belongs there. It is
712 ;; not very smart: it does not understand nested lists.
714 (defun texinfo-last-unended-begin ()
715 (while (and (re-search-backward texinfo-environment-regexp)
716 (looking-at "@end"))
717 (texinfo-last-unended-begin)))
719 (defun texinfo-next-unmatched-end ()
720 (while (and (re-search-forward texinfo-environment-regexp)
721 (save-excursion
722 (goto-char (match-beginning 0))
723 (not (looking-at "@end"))))
724 (texinfo-next-unmatched-end)))
726 (defun texinfo-insert-@end ()
727 "Insert the matching `@end' for the last Texinfo command that needs one."
728 (interactive)
729 (let ((string
730 (ignore-errors
731 (save-excursion
732 (texinfo-last-unended-begin)
733 (match-string 1)))))
734 (insert "@end ")
735 (if string (insert string "\n"))))
737 ;; The following insert commands accept a prefix arg N, which is the
738 ;; number of words (actually s-exprs) that should be surrounded by
739 ;; braces. Thus you can first paste a variable name into a .texinfo
740 ;; buffer, then say C-u 1 C-c C-c v at the beginning of the just
741 ;; pasted variable name to put @var{...} *around* the variable name.
742 ;; Operate on previous word or words with negative arg.
744 ;; These commands use texinfo-insert-@-with-arg
745 (defun texinfo-insert-@-with-arg (string &optional arg)
746 (if arg
747 (progn
748 (setq arg (prefix-numeric-value arg))
749 (if (< arg 0)
750 (progn
751 (skip-chars-backward " \t\n\r\f")
752 (save-excursion
753 (forward-sexp arg)
754 (insert "@" string "{"))
755 (insert "}"))
756 (skip-chars-forward " \t\n\r\f")
757 (insert "@" string "{")
758 (forward-sexp arg)
759 (insert "}")))
760 (insert "@" string "{}")
761 (backward-char)))
763 (defun texinfo-insert-braces ()
764 "Make a pair of braces and be poised to type inside of them.
765 Use \\[up-list] to move forward out of the braces."
766 (interactive)
767 (insert "{}")
768 (backward-char))
770 (defun texinfo-insert-@code (&optional arg)
771 "Insert a `@code{...}' command in a Texinfo buffer.
772 A numeric argument says how many words the braces should surround.
773 The default is not to surround any existing words with the braces."
774 (interactive "P")
775 (texinfo-insert-@-with-arg "code" arg))
777 (defun texinfo-insert-@dfn (&optional arg)
778 "Insert a `@dfn{...}' command in a Texinfo buffer.
779 A numeric argument says how many words the braces should surround.
780 The default is not to surround any existing words with the braces."
781 (interactive "P")
782 (texinfo-insert-@-with-arg "dfn" arg))
784 (defun texinfo-insert-@email (&optional arg)
785 "Insert a `@email{...}' command in a Texinfo buffer.
786 A numeric argument says how many words the braces should surround.
787 The default is not to surround any existing words with the braces."
788 (interactive "P")
789 (texinfo-insert-@-with-arg "email" arg))
791 (defun texinfo-insert-@emph (&optional arg)
792 "Insert a `@emph{...}' command in a Texinfo buffer.
793 A numeric argument says how many words the braces should surround.
794 The default is not to surround any existing words with the braces."
795 (interactive "P")
796 (texinfo-insert-@-with-arg "emph" arg))
798 (defun texinfo-insert-@example ()
799 "Insert the string `@example' in a Texinfo buffer."
800 (interactive)
801 (insert "@example\n"))
803 (defun texinfo-insert-@file (&optional arg)
804 "Insert a `@file{...}' command in a Texinfo buffer.
805 A numeric argument says how many words the braces should surround.
806 The default is not to surround any existing words with the braces."
807 (interactive "P")
808 (texinfo-insert-@-with-arg "file" arg))
810 (defun texinfo-insert-@item ()
811 "Insert the string `@item' in a Texinfo buffer.
812 If in a table defined by @table, follow said string with a space.
813 Otherwise, follow with a newline."
814 (interactive)
815 (insert "@item"
816 (if (equal (ignore-errors
817 (save-excursion
818 (texinfo-last-unended-begin)
819 (match-string 1)))
820 "table")
822 ?\n)))
824 (defun texinfo-insert-@kbd (&optional arg)
825 "Insert a `@kbd{...}' command in a Texinfo buffer.
826 A numeric argument says how many words the braces should surround.
827 The default is not to surround any existing words with the braces."
828 (interactive "P")
829 (texinfo-insert-@-with-arg "kbd" arg))
831 (defun texinfo-insert-@node ()
832 "Insert the string `@node' in a Texinfo buffer.
833 Insert a comment on the following line indicating the order of
834 arguments to @node. Insert a carriage return after the comment line.
835 Leave point after `@node'."
836 (interactive)
837 (insert "@node \n@comment node-name, next, previous, up\n")
838 (forward-line -2)
839 (forward-char 6))
841 (defun texinfo-insert-@noindent ()
842 "Insert the string `@noindent' in a Texinfo buffer."
843 (interactive)
844 (insert "@noindent\n"))
846 (defun texinfo-insert-@quotation ()
847 "Insert the string `@quotation' in a Texinfo buffer."
848 (interactive)
849 (insert "@quotation\n"))
851 (defun texinfo-insert-@samp (&optional arg)
852 "Insert a `@samp{...}' command in a Texinfo buffer.
853 A numeric argument says how many words the braces should surround.
854 The default is not to surround any existing words with the braces."
855 (interactive "P")
856 (texinfo-insert-@-with-arg "samp" arg))
858 (defun texinfo-insert-@strong (&optional arg)
859 "Insert a `@strong{...}' command in a Texinfo buffer.
860 A numeric argument says how many words the braces should surround.
861 The default is not to surround any existing words with the braces."
862 (interactive "P")
863 (texinfo-insert-@-with-arg "strong" arg))
865 (defun texinfo-insert-@table ()
866 "Insert the string `@table' in a Texinfo buffer."
867 (interactive)
868 (insert "@table "))
870 (defun texinfo-insert-@var (&optional arg)
871 "Insert a `@var{}' command in a Texinfo buffer.
872 A numeric argument says how many words the braces should surround.
873 The default is not to surround any existing words with the braces."
874 (interactive "P")
875 (texinfo-insert-@-with-arg "var" arg))
877 (defun texinfo-insert-@uref (&optional arg)
878 "Insert a `@uref{}' command in a Texinfo buffer.
879 A numeric argument says how many words the braces should surround.
880 The default is not to surround any existing words with the braces."
881 (interactive "P")
882 (texinfo-insert-@-with-arg "uref" arg))
883 (defalias 'texinfo-insert-@url 'texinfo-insert-@uref)
885 ;;; Texinfo file structure
887 (defun texinfo-show-structure (&optional nodes-too)
888 "Show the structure of a Texinfo file.
889 List the lines in the file that begin with the @-sign commands for
890 @chapter, @section, and the like.
892 With optional argument (prefix if interactive), list both the lines
893 with @-sign commands for @chapter, @section, and the like, and list
894 @node lines.
896 Lines with structuring commands beginning in them are displayed in
897 another buffer named `*Occur*'. In that buffer, you can move point to
898 one of those lines and then use
899 \\<occur-mode-map>\\[occur-mode-goto-occurrence],
900 to jump to the corresponding spot in the Texinfo source file."
902 (interactive "P")
903 ;; First, remember current location
904 (let (current-location)
905 (save-excursion
906 (end-of-line) ; so as to find section on current line
907 (if (re-search-backward
908 ;; do not require `texinfo-section-types-regexp' in texnfo-upd.el
909 "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
910 nil t)
911 (setq current-location
912 (progn
913 (beginning-of-line)
914 (buffer-substring (point) (progn (end-of-line) (point)))))
915 ;; else point is located before any section command.
916 (setq current-location "tex")))
917 ;; Second, create and format an *Occur* buffer
918 (save-excursion
919 (goto-char (point-min))
920 (occur (concat "^\\(?:" (if nodes-too "@node\\>\\|")
921 outline-regexp "\\)")))
922 (pop-to-buffer "*Occur*")
923 (goto-char (point-min))
924 (let ((inhibit-read-only t))
925 (flush-lines "-----")
926 ;; Now format the "*Occur*" buffer to show the structure.
927 ;; Thanks to ceder@signum.se (Per Cederqvist)
928 (goto-char (point-max))
929 (let (level)
930 (while (re-search-backward "^ *[0-9]*:@\\(\\sw+\\)" nil 0)
931 (goto-char (1- (match-beginning 1)))
932 (setq level
933 (or (cadr (assoc (match-string 1) texinfo-section-list)) 2))
934 (indent-to-column (+ (current-column) (* 4 (- level 2))))
935 (beginning-of-line))))
936 ;; Third, go to line corresponding to location in source file
937 ;; potential bug: two exactly similar `current-location' lines ...
938 (goto-char (point-min))
939 (re-search-forward current-location nil t)
940 (beginning-of-line)
944 ;;; The tex and print function definitions:
946 (defcustom texinfo-texi2dvi-command "texi2dvi"
947 "Command used by `texinfo-tex-buffer' to run TeX and texindex on a buffer."
948 :type 'string
949 :group 'texinfo)
951 (defcustom texinfo-tex-command "tex"
952 "Command used by `texinfo-tex-region' to run TeX on a region."
953 :type 'string
954 :group 'texinfo)
956 (defcustom texinfo-texindex-command "texindex"
957 "Command used by `texinfo-texindex' to sort unsorted index files."
958 :type 'string
959 :group 'texinfo)
961 (defcustom texinfo-delete-from-print-queue-command "lprm"
962 "Command string used to delete a job from the line printer queue.
963 Command is used by \\[texinfo-delete-from-print-queue] based on
964 number provided by a previous \\[tex-show-print-queue]
965 command."
966 :type 'string
967 :group 'texinfo)
969 (defvar texinfo-tex-trailer "@bye"
970 "String appended after a region sent to TeX by `texinfo-tex-region'.")
972 (defun texinfo-tex-region (beg end)
973 "Run TeX on the current region.
974 This works by writing a temporary file (`tex-zap-file') in the directory
975 that is the value of `tex-directory', then running TeX on that file.
977 The first line of the buffer is copied to the
978 temporary file; and if the buffer has a header, it is written to the
979 temporary file before the region itself. The buffer's header is all lines
980 between the strings defined by `tex-start-of-header' and `tex-end-of-header'
981 inclusive. The header must start in the first 100 lines.
983 The value of `texinfo-tex-trailer' is appended to the temporary file after the region."
984 (interactive "r")
985 (require 'tex-mode)
986 (let ((tex-command texinfo-tex-command)
987 (tex-trailer texinfo-tex-trailer))
988 (tex-region beg end)))
990 (defun texinfo-tex-buffer ()
991 "Run TeX on visited file, once or twice, to make a correct `.dvi' file."
992 (interactive)
993 (require 'tex-mode)
994 (let ((tex-command texinfo-texi2dvi-command)
995 ;; Disable tex-start-options-string. texi2dvi would not
996 ;; understand anything specified here.
997 (tex-start-options-string ""))
998 (tex-buffer)))
1000 (defun texinfo-texindex ()
1001 "Run `texindex' on unsorted index files.
1002 The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
1003 This runs the shell command defined by `texinfo-texindex-command'."
1004 (interactive)
1005 (require 'tex-mode)
1006 (tex-send-command texinfo-texindex-command (concat tex-zap-file ".??"))
1007 ;; alternatively
1008 ;; (send-string "tex-shell"
1009 ;; (concat texinfo-texindex-command
1010 ;; " " tex-zap-file ".??" "\n"))
1011 (tex-recenter-output-buffer nil))
1013 (defun texinfo-tex-print ()
1014 "Print `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
1015 This runs the shell command defined by `tex-dvi-print-command'."
1016 (interactive)
1017 (require 'tex-mode)
1018 (tex-print))
1020 (defun texinfo-tex-view ()
1021 "View `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
1022 This runs the shell command defined by `tex-dvi-view-command'."
1023 (interactive)
1024 (require 'tex-mode)
1025 (tex-view))
1027 (defun texinfo-quit-job ()
1028 "Quit currently running TeX job, by sending an `x' to it."
1029 (interactive)
1030 (if (not (get-process "tex-shell"))
1031 (error "No TeX shell running"))
1032 (tex-send-command "x"))
1033 ;; alternatively:
1034 ;; save-excursion
1035 ;; (set-buffer (get-buffer "*tex-shell*"))
1036 ;; (goto-char (point-max))
1037 ;; (insert "x")
1038 ;; (comint-send-input)
1040 (defun texinfo-delete-from-print-queue (job-number)
1041 "Delete job from the line printer spooling queue.
1042 You are prompted for the job number (use a number shown by a previous
1043 \\[tex-show-print-queue] command)."
1044 (interactive "nPrinter job number for deletion: ")
1045 (require 'tex-mode)
1046 (if (tex-shell-running)
1047 (tex-kill-job)
1048 (tex-start-shell))
1049 (tex-send-command texinfo-delete-from-print-queue-command job-number)
1050 ;; alternatively
1051 ;; (send-string "tex-shell"
1052 ;; (concat
1053 ;; texinfo-delete-from-print-queue-command
1054 ;; " "
1055 ;; job-number"\n"))
1056 (tex-recenter-output-buffer nil))
1058 (provide 'texinfo)
1060 ;; arch-tag: 005d7c38-43b9-4b7d-aa1d-aea69bae73e1
1061 ;;; texinfo.el ends here