summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-12-30 08:14:01 +0000
committerRichard M. Stallman <rms@gnu.org>1992-12-30 08:14:01 +0000
commit76a66e5e9fcabb8735019500e273e6205d3f3f2c (patch)
tree7f4988f55242b19016309e87ae574d00b86421e6 /lisp
parent1df181b65f87f181326d5950dcecf243db8ae461 (diff)
downloademacs-76a66e5e9fcabb8735019500e273e6205d3f3f2c.tar.gz
emacs-76a66e5e9fcabb8735019500e273e6205d3f3f2c.tar.bz2
emacs-76a66e5e9fcabb8735019500e273e6205d3f3f2c.zip
(texinfo-tex-command): Use texi2dvi.
(texinfo-texindex, texinfo-texindex-command): Commented out.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/texinfo.el26
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 3f024908232..359d7acbc18 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -53,7 +53,7 @@
(define-key texinfo-mode-map "\C-c\C-t\C-l" 'tex-recenter-output-buffer)
(define-key texinfo-mode-map "\C-c\C-t\C-q" 'tex-show-print-queue)
(define-key texinfo-mode-map "\C-c\C-t\C-p" 'texinfo-tex-print)
- (define-key texinfo-mode-map "\C-c\C-t\C-i" 'texinfo-texindex)
+;; (define-key texinfo-mode-map "\C-c\C-t\C-i" 'texinfo-texindex)
(define-key texinfo-mode-map "\C-c\C-t\C-t" 'texinfo-tex-buffer)
(define-key texinfo-mode-map "\C-c\C-t\C-r" 'texinfo-tex-region)
@@ -310,11 +310,11 @@ to jump to the corresponding spot in the Texinfo file."
;;; The tex and print function definitions:
-(defvar texinfo-tex-command "tex"
+(defvar texinfo-tex-command "texi2dvi"
"*Command used by texinfo-tex-region to run tex on a region.")
-(defvar texinfo-texindex-command "texindex"
- "*Command used by texinfo-texindex to sort unsorted index files.")
+;;(defvar texinfo-texindex-command "texindex"
+;; "*Command used by texinfo-texindex to sort unsorted index files.")
(defun texinfo-tex-region (beg end)
"Run tex on the current region.
@@ -395,15 +395,15 @@ See \\[texinfo-tex-region] for more information."
(interactive)
(texinfo-tex-region (point-min) (point-max)))
-(defun texinfo-texindex ()
- "Run texindex on unsorted index files.
-The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
-Runs the shell command defined by `texinfo-texindex-command'."
- (interactive)
- (send-string "tex-shell"
- (concat texinfo-texindex-command
- " " tex-zap-file ".??" "\n"))
- (tex-recenter-output-buffer nil))
+;;(defun texinfo-texindex ()
+;; "Run texindex on unsorted index files.
+;;The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
+;;Runs the shell command defined by `texinfo-texindex-command'."
+;; (interactive)
+;; (send-string "tex-shell"
+;; (concat texinfo-texindex-command
+;; " " tex-zap-file ".??" "\n"))
+;; (tex-recenter-output-buffer nil))
(defun texinfo-tex-print ()
"Print .dvi file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].