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 f2061c2f52c..9610b4be22f 100644 --- a/lisp/electric.el +++ b/lisp/electric.el | |||
| @@ -198,8 +198,8 @@ relative order must be maintained within it." | |||
| 198 | (setq-default post-self-insert-hook | 198 | (setq-default post-self-insert-hook |
| 199 | (sort (default-value 'post-self-insert-hook) | 199 | (sort (default-value 'post-self-insert-hook) |
| 200 | #'(lambda (fn1 fn2) | 200 | #'(lambda (fn1 fn2) |
| 201 | (< (or (get fn1 'priority) 0) | 201 | (< (or (if (symbol fn1) (get fn1 'priority)) 0) |
| 202 | (or (get fn2 'priority) 0)))))) | 202 | (or (if (symbol fn2) (get fn2 'priority)) 0)))))) |
| 203 | 203 | ||
| 204 | ;;; Electric indentation. | 204 | ;;; Electric indentation. |
| 205 | 205 | ||