1 ;;;; Emacs Lisp help for writing the Subversion Documentation. ;;;;
3 (defun svn-doc-visit-info-file ()
4 "Visit the local info file in progress.
5 Right now there's only one place to go, so no prompting is done."
7 (Info-goto-node (concat "(" default-directory
"svn-design.info)Top")))
10 (defun svn-doc-texinfo-new-node (name)
11 "Insert a new node (defaults to `section' heading).
12 Includes the commented separator line we like to use."
13 ;; todo: search backwards for menu and build a completion table?
14 (interactive "sNode name: ")
18 (insert "@node " name
"\n")
19 (insert "@section " name
"\n\n"))