diff options
| author | Glenn Morris | 2013-12-27 12:24:25 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-12-27 12:24:25 -0800 |
| commit | b1797e3eebf2f5c428a187d41dfa3dd7a396a505 (patch) | |
| tree | ed61f800698a95cf59cc9a94628ba2155960b171 | |
| parent | 5eedd0b92daed0c4178a5bea79e95962edd0874b (diff) | |
| download | emacs-b1797e3eebf2f5c428a187d41dfa3dd7a396a505.tar.gz emacs-b1797e3eebf2f5c428a187d41dfa3dd7a396a505.zip | |
* lisp/emacs-lisp/lisp-mode.el (lisp-mode-variables): Unbreak bootstrap.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 861b3ba3d60..b93d9ff4e98 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-12-27 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): Unbreak bootstrap. | ||
| 4 | |||
| 1 | 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org> | 5 | 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 6 | ||
| 3 | * net/shr.el (shr-insert): Don't infloop if the width is zero. | 7 | * net/shr.el (shr-insert): Don't infloop if the width is zero. |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index f1eae18c507..0b02c2f8c16 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -474,9 +474,10 @@ font-lock keywords will not be case sensitive." | |||
| 474 | . lisp-font-lock-syntactic-face-function))) | 474 | . lisp-font-lock-syntactic-face-function))) |
| 475 | (setq-local prettify-symbols-alist lisp--prettify-symbols-alist) | 475 | (setq-local prettify-symbols-alist lisp--prettify-symbols-alist) |
| 476 | ;; electric | 476 | ;; electric |
| 477 | (when elisp | 477 | (and elisp |
| 478 | (setq-local electric-pair-text-pairs | 478 | (boundp 'electric-pair-text-pairs) |
| 479 | (cons '(?\` . ?\') electric-pair-text-pairs))) | 479 | (setq-local electric-pair-text-pairs |
| 480 | (cons '(?\` . ?\') electric-pair-text-pairs))) | ||
| 480 | (setq-local electric-pair-skip-whitespace 'chomp) | 481 | (setq-local electric-pair-skip-whitespace 'chomp) |
| 481 | (setq-local electric-pair-open-newline-between-pairs nil)) | 482 | (setq-local electric-pair-open-newline-between-pairs nil)) |
| 482 | 483 | ||