diff options
| author | Richard M. Stallman | 1993-06-10 17:42:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-10 17:42:39 +0000 |
| commit | a857ed136a598e746a3d5ecd6cddc577f5b4c1a6 (patch) | |
| tree | 86cda927c4e9a4b674b5d254b2f89e2f6a11b24f | |
| parent | 118c9082db1347575675ffd5cf9e8de907968c75 (diff) | |
| download | emacs-a857ed136a598e746a3d5ecd6cddc577f5b4c1a6.tar.gz emacs-a857ed136a598e746a3d5ecd6cddc577f5b4c1a6.zip | |
(bibtex-mode-map): Use tex-insert-quote, not TeX-...
| -rw-r--r-- | lisp/textmodes/bibtex.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index b6c13fb8605..4bdf73c0670 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -138,7 +138,7 @@ | |||
| 138 | ;;; user visible variables added: | 138 | ;;; user visible variables added: |
| 139 | ;;; bibtex-maintain-sorted-entries | 139 | ;;; bibtex-maintain-sorted-entries |
| 140 | ;;; new local keybindings: | 140 | ;;; new local keybindings: |
| 141 | ;;; " TeX-insert-quote | 141 | ;;; " tex-insert-quote |
| 142 | ;;; C-c$ ispell-bibtex-entry | 142 | ;;; C-c$ ispell-bibtex-entry |
| 143 | ;;; M-C-a beginning-of-bibtex-entry | 143 | ;;; M-C-a beginning-of-bibtex-entry |
| 144 | ;;; M-C-e end-of-bibtex-entry | 144 | ;;; M-C-e end-of-bibtex-entry |
| @@ -233,8 +233,8 @@ | |||
| 233 | ;;; these guys typically don't have autoloads...[alarson:19920131.1548CST] | 233 | ;;; these guys typically don't have autoloads...[alarson:19920131.1548CST] |
| 234 | ;;; Check for fboundp first so that if user autoloads them from non standard | 234 | ;;; Check for fboundp first so that if user autoloads them from non standard |
| 235 | ;;; places, the users bindings will take precedence. | 235 | ;;; places, the users bindings will take precedence. |
| 236 | (if (not (fboundp 'TeX-insert-quote)) | 236 | (if (not (fboundp 'tex-insert-quote)) |
| 237 | (autoload 'TeX-insert-quote "tex-mode")) | 237 | (autoload 'tex-insert-quote "tex-mode")) |
| 238 | (if (not (fboundp 'sort-subr)) | 238 | (if (not (fboundp 'sort-subr)) |
| 239 | (autoload 'sort-subr "sort")) | 239 | (autoload 'sort-subr "sort")) |
| 240 | 240 | ||
| @@ -308,7 +308,7 @@ string and the cdr the value to be inserted.") | |||
| 308 | (define-key km "\C-c\C-d" 'bibtex-empty-field) | 308 | (define-key km "\C-c\C-d" 'bibtex-empty-field) |
| 309 | 309 | ||
| 310 | ;; [alarson:19920131.1543CST] | 310 | ;; [alarson:19920131.1543CST] |
| 311 | (define-key km "\"" 'TeX-insert-quote) | 311 | (define-key km "\"" 'tex-insert-quote) |
| 312 | (define-key km "\C-c$" 'ispell-bibtex-entry) | 312 | (define-key km "\C-c$" 'ispell-bibtex-entry) |
| 313 | (define-key km "\M-\C-a" 'beginning-of-bibtex-entry) | 313 | (define-key km "\M-\C-a" 'beginning-of-bibtex-entry) |
| 314 | (define-key km "\M-\C-e" 'end-of-bibtex-entry) | 314 | (define-key km "\M-\C-e" 'end-of-bibtex-entry) |