File: addnodes.el

package info (click to toggle)
cln 0.98-7.1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 12,188 kB
  • ctags: 15,282
  • sloc: cpp: 71,545; ansic: 12,015; asm: 8,431; sh: 3,159; makefile: 886; lisp: 64
file content (17 lines) | stat: -rw-r--r-- 591 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; Emacs Lisp program to insert nodes and menus in a TeXinfo file.

(texinfo-mode)
(texinfo-insert-node-lines
  (save-excursion (beginning-of-buffer) (point))
  (save-excursion (end-of-buffer) (point))
  t
)
(texinfo-master-menu t)
;; The following is not needed because it is already done by the
;; (texinfo-master-menu t) command.
; (texinfo-every-node-update)
;; The following should not be needed because it should already done by the
;; (texinfo-master-menu t) command. Alas, `texinfo-master-menu' is buggy:
;; It forgets to create the `Customizing' menu...
(texinfo-all-menus-update)