diff options
author | Dave Love <fx@gnu.org> | 2003-08-05 15:07:38 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-08-05 15:07:38 +0000 |
commit | 4372483c63cf3fd6b457b6337a7677804d1f4f8f (patch) | |
tree | b4e21e33b250de2b732e10d56ed2b53adb2221c7 /lisp | |
parent | d1978f4897a0d8a5a9d4147156ef34c6da98caf2 (diff) | |
download | emacs-4372483c63cf3fd6b457b6337a7677804d1f4f8f.tar.gz |
(tex-dvi-view-command): Fix quoted quotes.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index ca345f8b635..f779b729949 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -196,7 +196,7 @@ use." :group 'tex-view) ;;;###autoload -(defcustom tex-dvi-view-command '(if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\") +(defcustom tex-dvi-view-command '(if (eq window-system 'x) "xdvi" "dvi2tty * | cat -s") "*Command used by \\[tex-view] to display a `.dvi' file. If it is a string, that specifies the command directly. If this string contains an asterisk (`*'), that is replaced by the file name; |