Mercurial > hg > xemacs-beta
comparison lisp/packages/makeinfo.el @ 120:cca96a509cfe r20-1b12
Import from CVS: tag r20-1b12
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:25:29 +0200 |
parents | ac2d302a0011 |
children | 489f57a838ef |
comparison
equal
deleted
inserted
replaced
119:d101af7320b8 | 120:cca96a509cfe |
---|---|
47 | 47 |
48 ;;; Variables used by `makeinfo' | 48 ;;; Variables used by `makeinfo' |
49 | 49 |
50 (require 'compile) | 50 (require 'compile) |
51 | 51 |
52 (defvar makeinfo-run-command "makeinfo" | 52 (defgroup makeinfo nil |
53 "Run makeinfo conveniently" | |
54 :group 'docs) | |
55 | |
56 | |
57 (defcustom makeinfo-run-command "makeinfo" | |
53 "*Command used to run `makeinfo' subjob. | 58 "*Command used to run `makeinfo' subjob. |
54 The name of the file is appended to this string, separated by a space.") | 59 The name of the file is appended to this string, separated by a space." |
55 | 60 :type 'string |
56 (defvar makeinfo-options "--fill-column=70" | 61 :group 'makeinfo) |
62 | |
63 (defcustom makeinfo-options "--fill-column=70" | |
57 "*String containing options for running `makeinfo'. | 64 "*String containing options for running `makeinfo'. |
58 Do not include `--footnote-style' or `--paragraph-indent'; | 65 Do not include `--footnote-style' or `--paragraph-indent'; |
59 the proper way to specify those is with the Texinfo commands | 66 the proper way to specify those is with the Texinfo commands |
60 `@footnotestyle` and `@paragraphindent'.") | 67 `@footnotestyle` and `@paragraphindent'." |
68 :type 'string | |
69 :group 'makeinfo) | |
61 | 70 |
62 (require 'texinfo) | 71 (require 'texinfo) |
63 | 72 |
64 (defvar makeinfo-compilation-process nil | 73 (defvar makeinfo-compilation-process nil |
65 "Process that runs `makeinfo'. Should start out nil.") | 74 "Process that runs `makeinfo'. Should start out nil.") |