# HG changeset patch # User Richard M. Stallman # Date 788828563 0 # Node ID c58e6bb970380a661ffb4601808b803d7f2fe6df # Parent 6ed7d0ea5fb916c7a5d551e0b45a5197bd64be51 (tex-mode-map): Add BibTeX File menu item. diff -r 6ed7d0ea5fb9 -r c58e6bb97038 lisp/textmodes/tex-mode.el --- a/lisp/textmodes/tex-mode.el Fri Dec 30 20:48:30 1994 +0000 +++ b/lisp/textmodes/tex-mode.el Fri Dec 30 23:02:43 1994 +0000 @@ -216,15 +216,17 @@ (define-key tex-mode-map "\C-c\C-o" 'tex-latex-block) (define-key tex-mode-map "\C-c\C-e" 'tex-close-latex-block) (define-key tex-mode-map "\C-c\C-u" 'tex-goto-last-unclosed-latex-block) + (define-key tex-mode-map [menu-bar tex tex-bibtex-file] + '("BibTeX File" . tex-bibtex-file)) (define-key tex-mode-map [menu-bar tex tex-validate-region] '("Validate Region" . tex-validate-region)) (define-key tex-mode-map [menu-bar tex validate-tex-buffer] '("Validate Buffer" . validate-tex-buffer)) (define-key tex-mode-map [menu-bar tex tex-region] - '("Tex Region" . tex-region)) + '("TeX Region" . tex-region)) (define-key tex-mode-map [menu-bar tex tex-buffer] - '("Tex Buffer" . tex-buffer)) - (define-key tex-mode-map [menu-bar tex tex-file] '("Tex File" . tex-file))) + '("TeX Buffer" . tex-buffer)) + (define-key tex-mode-map [menu-bar tex tex-file] '("TeX File" . tex-file))) (put 'tex-region 'menu-enable 'mark-active) (put 'tex-validate-region 'menu-enable 'mark-active) @@ -1072,7 +1074,7 @@ (defun tex-alt-print () "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file]. -Runs the shell command defined by tex-alt-dvi-print-command." +Runs the shell command defined by `tex-alt-dvi-print-command'." (interactive) (tex-print t))