diff options
| -rw-r--r-- | lisp/electric.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/electric.el b/lisp/electric.el index 599b584c146..5f4304462dd 100644 --- a/lisp/electric.el +++ b/lisp/electric.el | |||
| @@ -39,8 +39,6 @@ | |||
| 39 | 39 | ||
| 40 | ;;; Code: | 40 | ;;; Code: |
| 41 | 41 | ||
| 42 | (eval-when-compile (require 'elec-pair)) | ||
| 43 | |||
| 44 | ;; This loop is the guts for non-standard modes which retain control | 42 | ;; This loop is the guts for non-standard modes which retain control |
| 45 | ;; until some event occurs. It is a `do-forever', the only way out is | 43 | ;; until some event occurs. It is a `do-forever', the only way out is |
| 46 | ;; to throw. It assumes that you have set up the keymap, window, and | 44 | ;; to throw. It assumes that you have set up the keymap, window, and |
| @@ -471,6 +469,8 @@ substitution is inhibited. The functions are called after the | |||
| 471 | after the inserted character. The functions in this hook should | 469 | after the inserted character. The functions in this hook should |
| 472 | not move point or change the current buffer.") | 470 | not move point or change the current buffer.") |
| 473 | 471 | ||
| 472 | (defvar electric-pair-text-pairs) | ||
| 473 | |||
| 474 | (defun electric-quote-post-self-insert-function () | 474 | (defun electric-quote-post-self-insert-function () |
| 475 | "Function that `electric-quote-mode' adds to `post-self-insert-hook'. | 475 | "Function that `electric-quote-mode' adds to `post-self-insert-hook'. |
| 476 | This requotes when a quoting key is typed." | 476 | This requotes when a quoting key is typed." |