From: Richard M. Stallman Date: Sun, 4 Dec 1994 14:37:24 +0000 (+0000) Subject: (bibtex-mode-map): Delete binding for ". X-Git-Tag: emacs-19.34~5749 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e230790596cc7662d5a778435c6588daae979918;p=emacs.git (bibtex-mode-map): Delete binding for ". Don't load in tex-insert-quote. --- diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 9d605e8e13d..d10b47801e0 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -138,7 +138,6 @@ ;;; user visible variables added: ;;; bibtex-maintain-sorted-entries ;;; new local keybindings: -;;; " tex-insert-quote ;;; C-c$ ispell-bibtex-entry ;;; M-C-a beginning-of-bibtex-entry ;;; M-C-e end-of-bibtex-entry @@ -233,8 +232,6 @@ ;;; 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 'sort-subr)) (autoload 'sort-subr "sort")) @@ -299,7 +296,6 @@ string and the cdr the value to be inserted.") (define-key km "\C-c\C-d" 'bibtex-empty-field) ;; [alarson:19920131.1543CST] - (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)