* lisp/emacs-lisp/lisp-mode.el (lisp-mode-variables): Unbreak bootstrap.
This commit is contained in:
parent
5eedd0b92d
commit
b1797e3eeb
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-12-27 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/lisp-mode.el (lisp-mode-variables): Unbreak bootstrap.
|
||||
|
||||
2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* net/shr.el (shr-insert): Don't infloop if the width is zero.
|
||||
|
|
|
@ -474,9 +474,10 @@ font-lock keywords will not be case sensitive."
|
|||
. lisp-font-lock-syntactic-face-function)))
|
||||
(setq-local prettify-symbols-alist lisp--prettify-symbols-alist)
|
||||
;; electric
|
||||
(when elisp
|
||||
(setq-local electric-pair-text-pairs
|
||||
(cons '(?\` . ?\') electric-pair-text-pairs)))
|
||||
(and elisp
|
||||
(boundp 'electric-pair-text-pairs)
|
||||
(setq-local electric-pair-text-pairs
|
||||
(cons '(?\` . ?\') electric-pair-text-pairs)))
|
||||
(setq-local electric-pair-skip-whitespace 'chomp)
|
||||
(setq-local electric-pair-open-newline-between-pairs nil))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue