From: Eli Zaretskii Date: Sat, 29 Mar 2025 11:01:35 +0000 (+0300) Subject: ; Fix last change (bug#77081) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=74489fe09eb30373e3667381d6053891ad2a9173;p=emacs.git ; Fix last change (bug#77081) * lisp/electric.el (electric-block-comment-mode): Fix whitespace. * etc/NEWS: Move entry to its proper place; fix punctuation. (cherry picked from commit e9a07417ab280ea627594fa4328c5a0b2de6fd7c) --- diff --git a/lisp/electric.el b/lisp/electric.el index 8c8824a6327..43cb8e8f8f5 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -425,8 +425,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)