# HG changeset patch # User Richard M. Stallman # Date 739734159 0 # Node ID 58f653fa4e5ba27110d8ce71592753463a673027 # Parent 40506f2cd86cd2c361b6e33633a3a0dbb80cb334 (bibtex-mode-map): Use tex-insert-quote, not TeX-... diff -r 40506f2cd86c -r 58f653fa4e5b lisp/textmodes/bibtex.el --- 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)