mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
* lisp/electric.el: Fix typo in last change.
This commit is contained in:
parent
d1ea675d2c
commit
6896604bab
1 changed files with 2 additions and 2 deletions
|
|
@ -198,8 +198,8 @@ relative order must be maintained within it."
|
|||
(setq-default post-self-insert-hook
|
||||
(sort (default-value 'post-self-insert-hook)
|
||||
#'(lambda (fn1 fn2)
|
||||
(< (or (if (symbol fn1) (get fn1 'priority)) 0)
|
||||
(or (if (symbol fn2) (get fn2 'priority)) 0))))))
|
||||
(< (or (if (symbolp fn1) (get fn1 'priority)) 0)
|
||||
(or (if (symbolp fn2) (get fn2 'priority)) 0))))))
|
||||
|
||||
;;; Electric indentation.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue