diff options
| author | Jim Blandy | 1992-08-12 12:50:10 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-08-12 12:50:10 +0000 |
| commit | 7e1dae733a5eda79d5681349ca39bfc36ca27871 (patch) | |
| tree | ac88eef920fb50a8ece8593ee46a8f46160e6311 /lisp/textmodes | |
| parent | 9f34a2a0c82e7323e825471b10b54fa60ea8859f (diff) | |
| download | emacs-7e1dae733a5eda79d5681349ca39bfc36ca27871.tar.gz emacs-7e1dae733a5eda79d5681349ca39bfc36ca27871.zip | |
entered into RCS
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 18b0782b92d..02277d796d6 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el | |||
| @@ -29,24 +29,29 @@ | |||
| 29 | ;; This was a pain. Now, make-comint should autoload comint. | 29 | ;; This was a pain. Now, make-comint should autoload comint. |
| 30 | ;; (require 'comint) | 30 | ;; (require 'comint) |
| 31 | 31 | ||
| 32 | ;;;###autoload | ||
| 32 | (defvar tex-shell-file-name nil | 33 | (defvar tex-shell-file-name nil |
| 33 | "*If non-nil, is file name to use for the subshell in which TeX is run.") | 34 | "*If non-nil, is file name to use for the subshell in which TeX is run.") |
| 34 | 35 | ||
| 36 | ;;;###autoload | ||
| 35 | (defvar tex-directory "." | 37 | (defvar tex-directory "." |
| 36 | "*Directory in which temporary files are left. | 38 | "*Directory in which temporary files are left. |
| 37 | You can make this /tmp if your TEXINPUTS has no relative directories in it | 39 | You can make this /tmp if your TEXINPUTS has no relative directories in it |
| 38 | and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are | 40 | and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are |
| 39 | \\input commands with relative directories.") | 41 | \\input commands with relative directories.") |
| 40 | 42 | ||
| 43 | ;;;###autoload | ||
| 41 | (defvar tex-offer-save t | 44 | (defvar tex-offer-save t |
| 42 | "*If non-nil, ask about saving modified buffers before \\[tex-file] is run.") | 45 | "*If non-nil, ask about saving modified buffers before \\[tex-file] is run.") |
| 43 | 46 | ||
| 47 | ;;;###autoload | ||
| 44 | (defvar tex-run-command "tex" | 48 | (defvar tex-run-command "tex" |
| 45 | "*Command used to run TeX subjob. | 49 | "*Command used to run TeX subjob. |
| 46 | If this string contains an asterisk (*), it will be replaced by the | 50 | If this string contains an asterisk (*), it will be replaced by the |
| 47 | filename; if not, the name of the file, preceded by blank, will be added to | 51 | filename; if not, the name of the file, preceded by blank, will be added to |
| 48 | this string.") | 52 | this string.") |
| 49 | 53 | ||
| 54 | ;;;###autoload | ||
| 50 | (defvar latex-run-command "latex" | 55 | (defvar latex-run-command "latex" |
| 51 | "*Command used to run LaTeX subjob. | 56 | "*Command used to run LaTeX subjob. |
| 52 | If this string contains an asterisk (*), it will be replaced by the | 57 | If this string contains an asterisk (*), it will be replaced by the |
| @@ -65,28 +70,33 @@ this string.") | |||
| 65 | "verbatim" "verbatim*" "verse") | 70 | "verbatim" "verbatim*" "verse") |
| 66 | "Standard LaTeX block names.") | 71 | "Standard LaTeX block names.") |
| 67 | 72 | ||
| 73 | ;;;###autoload | ||
| 68 | (defvar latex-block-names nil | 74 | (defvar latex-block-names nil |
| 69 | "*User defined LaTeX block names. | 75 | "*User defined LaTeX block names. |
| 70 | Combined with `standard-latex-block-names' for minibuffer completion.") | 76 | Combined with `standard-latex-block-names' for minibuffer completion.") |
| 71 | 77 | ||
| 78 | ;;;###autoload | ||
| 72 | (defvar slitex-run-command "slitex" | 79 | (defvar slitex-run-command "slitex" |
| 73 | "*Command used to run SliTeX subjob. | 80 | "*Command used to run SliTeX subjob. |
| 74 | If this string contains an asterisk (*), it will be replaced by the | 81 | If this string contains an asterisk (*), it will be replaced by the |
| 75 | filename; if not, the name of the file, preceded by blank, will be added to | 82 | filename; if not, the name of the file, preceded by blank, will be added to |
| 76 | this string.") | 83 | this string.") |
| 77 | 84 | ||
| 85 | ;;;###autoload | ||
| 78 | (defvar tex-bibtex-command "bibtex" | 86 | (defvar tex-bibtex-command "bibtex" |
| 79 | "*Command used by `tex-bibtex-file' to gather bibliographic data. | 87 | "*Command used by `tex-bibtex-file' to gather bibliographic data. |
| 80 | If this string contains an asterisk (*), it will be replaced by the | 88 | If this string contains an asterisk (*), it will be replaced by the |
| 81 | filename; if not, the name of the file, preceded by blank, will be added to | 89 | filename; if not, the name of the file, preceded by blank, will be added to |
| 82 | this string.") | 90 | this string.") |
| 83 | 91 | ||
| 92 | ;;;###autoload | ||
| 84 | (defvar tex-dvi-print-command "lpr -d" | 93 | (defvar tex-dvi-print-command "lpr -d" |
| 85 | "*Command used by \\[tex-print] to print a .dvi file. | 94 | "*Command used by \\[tex-print] to print a .dvi file. |
| 86 | If this string contains an asterisk (*), it will be replaced by the | 95 | If this string contains an asterisk (*), it will be replaced by the |
| 87 | filename; if not, the name of the file, preceded by blank, will be added to | 96 | filename; if not, the name of the file, preceded by blank, will be added to |
| 88 | this string.") | 97 | this string.") |
| 89 | 98 | ||
| 99 | ;;;###autoload | ||
| 90 | (defvar tex-alt-dvi-print-command "lpr -d" | 100 | (defvar tex-alt-dvi-print-command "lpr -d" |
| 91 | "*Command used by \\[tex-print] with a prefix arg to print a .dvi file. | 101 | "*Command used by \\[tex-print] with a prefix arg to print a .dvi file. |
| 92 | If this string contains an asterisk (*), it will be replaced by the | 102 | If this string contains an asterisk (*), it will be replaced by the |
| @@ -103,6 +113,7 @@ for example, | |||
| 103 | would tell \\[tex-print] with a prefix argument to ask you which printer to | 113 | would tell \\[tex-print] with a prefix argument to ask you which printer to |
| 104 | use.") | 114 | use.") |
| 105 | 115 | ||
| 116 | ;;;###autoload | ||
| 106 | (defvar tex-dvi-view-command nil | 117 | (defvar tex-dvi-view-command nil |
| 107 | "*Command used by \\[tex-view] to display a .dvi file. | 118 | "*Command used by \\[tex-view] to display a .dvi file. |
| 108 | If this string contains an asterisk (*), it will be replaced by the | 119 | If this string contains an asterisk (*), it will be replaced by the |
| @@ -118,19 +129,23 @@ window system being used. For example, | |||
| 118 | would tell \\[tex-view] use xdvi under X windows and to use dvi2tty | 129 | would tell \\[tex-view] use xdvi under X windows and to use dvi2tty |
| 119 | otherwise.") | 130 | otherwise.") |
| 120 | 131 | ||
| 132 | ;;;###autoload | ||
| 121 | (defvar tex-show-queue-command "lpq" | 133 | (defvar tex-show-queue-command "lpq" |
| 122 | "*Command used by \\[tex-show-print-queue] to show the print queue. | 134 | "*Command used by \\[tex-show-print-queue] to show the print queue. |
| 123 | Should show the queue(s) that \\[tex-print] puts jobs on.") | 135 | Should show the queue(s) that \\[tex-print] puts jobs on.") |
| 124 | 136 | ||
| 137 | ;;;###autoload | ||
| 125 | (defvar tex-default-mode 'plain-tex-mode | 138 | (defvar tex-default-mode 'plain-tex-mode |
| 126 | "*Mode to enter for a new file that might be either TeX or LaTeX. | 139 | "*Mode to enter for a new file that might be either TeX or LaTeX. |
| 127 | This variable is used when it can't be determined whether the file | 140 | This variable is used when it can't be determined whether the file |
| 128 | is plain TeX or LaTeX or what because the file contains no commands. | 141 | is plain TeX or LaTeX or what because the file contains no commands. |
| 129 | Normally set to either 'plain-tex-mode or 'latex-mode.") | 142 | Normally set to either 'plain-tex-mode or 'latex-mode.") |
| 130 | 143 | ||
| 144 | ;;;###autoload | ||
| 131 | (defvar tex-open-quote "``" | 145 | (defvar tex-open-quote "``" |
| 132 | "*String inserted by typing \\[tex-insert-quote] to open a quotation.") | 146 | "*String inserted by typing \\[tex-insert-quote] to open a quotation.") |
| 133 | 147 | ||
| 148 | ;;;###autoload | ||
| 134 | (defvar tex-close-quote "''" | 149 | (defvar tex-close-quote "''" |
| 135 | "*String inserted by typing \\[tex-insert-quote] to close a quotation.") | 150 | "*String inserted by typing \\[tex-insert-quote] to close a quotation.") |
| 136 | 151 | ||