You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
591 B

25 years ago
  1. ;; Emacs Lisp program to insert nodes and menus in a TeXinfo file.
  2. (texinfo-mode)
  3. (texinfo-insert-node-lines
  4. (save-excursion (beginning-of-buffer) (point))
  5. (save-excursion (end-of-buffer) (point))
  6. t
  7. )
  8. (texinfo-master-menu t)
  9. ;; The following is not needed because it is already done by the
  10. ;; (texinfo-master-menu t) command.
  11. ; (texinfo-every-node-update)
  12. ;; The following should not be needed because it should already done by the
  13. ;; (texinfo-master-menu t) command. Alas, `texinfo-master-menu' is buggy:
  14. ;; It forgets to create the `Customizing' menu...
  15. (texinfo-all-menus-update)