summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/electric.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/electric.el b/lisp/electric.el
index 86c01438e9a..da5fa973757 100644
--- a/lisp/electric.el
+++ b/lisp/electric.el
@@ -758,8 +758,10 @@ corresponding `block-comment-end'."
:group 'electricity
:version "31.1"
(if electric-block-comment-mode
- (add-hook 'post-self-insert-hook #'electric-block-comment-post-self-insert-function 10 t)
- (remove-hook 'post-self-insert-hook #'electric-block-comment-post-self-insert-function t)))
+ (add-hook 'post-self-insert-hook
+ #'electric-block-comment-post-self-insert-function 10 t)
+ (remove-hook 'post-self-insert-hook
+ #'electric-block-comment-post-self-insert-function t)))
(provide 'electric)