Mercurial > emacs
changeset 3618:58f653fa4e5b
(bibtex-mode-map): Use tex-insert-quote, not TeX-...
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 10 Jun 1993 17:42:39 +0000 |
parents | 40506f2cd86c |
children | 062dbb10173d |
files | lisp/textmodes/bibtex.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/bibtex.el Thu Jun 10 13:11:27 1993 +0000 +++ b/lisp/textmodes/bibtex.el Thu Jun 10 17:42:39 1993 +0000 @@ -138,7 +138,7 @@ ;;; user visible variables added: ;;; bibtex-maintain-sorted-entries ;;; new local keybindings: -;;; " TeX-insert-quote +;;; " tex-insert-quote ;;; C-c$ ispell-bibtex-entry ;;; M-C-a beginning-of-bibtex-entry ;;; M-C-e end-of-bibtex-entry @@ -233,8 +233,8 @@ ;;; these guys typically don't have autoloads...[alarson:19920131.1548CST] ;;; Check for fboundp first so that if user autoloads them from non standard ;;; places, the users bindings will take precedence. -(if (not (fboundp 'TeX-insert-quote)) - (autoload 'TeX-insert-quote "tex-mode")) +(if (not (fboundp 'tex-insert-quote)) + (autoload 'tex-insert-quote "tex-mode")) (if (not (fboundp 'sort-subr)) (autoload 'sort-subr "sort")) @@ -308,7 +308,7 @@ (define-key km "\C-c\C-d" 'bibtex-empty-field) ;; [alarson:19920131.1543CST] - (define-key km "\"" 'TeX-insert-quote) + (define-key km "\"" 'tex-insert-quote) (define-key km "\C-c$" 'ispell-bibtex-entry) (define-key km "\M-\C-a" 'beginning-of-bibtex-entry) (define-key km "\M-\C-e" 'end-of-bibtex-entry)