aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-12-27 16:03:17 -0800
committerGlenn Morris2013-12-27 16:03:17 -0800
commitf1a85e52c8aac3d84a723b0da7402450a463baa0 (patch)
tree5db0b294d5c5445f986dcd853adf005b089c518d
parent9cadbf5a9330759892197a6932ad41e805194fc5 (diff)
downloademacs-f1a85e52c8aac3d84a723b0da7402450a463baa0.tar.gz
emacs-f1a85e52c8aac3d84a723b0da7402450a463baa0.zip
Revert unnecessary earlier change
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/lisp-mode.el7
2 files changed, 3 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 988322d4f40..573b326058c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -4,10 +4,6 @@
4 the current buffer's directory, on systems in which this behaviour 4 the current buffer's directory, on systems in which this behaviour
5 is the default (windows-nt, ms-dos). 5 is the default (windows-nt, ms-dos).
6 6
72013-12-27 Glenn Morris <rgm@gnu.org>
8
9 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Unbreak bootstrap.
10
112013-12-27 Lars Ingebrigtsen <larsi@gnus.org> 72013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
12 8
13 * net/shr.el (shr-insert): Don't infloop if the width is zero. 9 * 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 0b02c2f8c16..f1eae18c507 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -474,10 +474,9 @@ 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 (and elisp 477 (when elisp
478 (boundp 'electric-pair-text-pairs) 478 (setq-local electric-pair-text-pairs
479 (setq-local electric-pair-text-pairs 479 (cons '(?\` . ?\') electric-pair-text-pairs)))
480 (cons '(?\` . ?\') electric-pair-text-pairs)))
481 (setq-local electric-pair-skip-whitespace 'chomp) 480 (setq-local electric-pair-skip-whitespace 'chomp)
482 (setq-local electric-pair-open-newline-between-pairs nil)) 481 (setq-local electric-pair-open-newline-between-pairs nil))
483 482