mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(comment-indent): "?\ " -> "?\s".
This commit is contained in:
parent
66564ab0df
commit
7c0bbe7fa1
1 changed files with 2 additions and 2 deletions
|
|
@ -551,8 +551,8 @@ If CONTINUE is non-nil, use the `comment-continue' markers if any."
|
|||
(indent-to comment-column)
|
||||
;; Ensure there's a space before the comment for things
|
||||
;; like sh where it matters (as well as being neater).
|
||||
(unless (memq (char-before) '(nil ?\n ?\t ?\ ))
|
||||
(insert ?\ ))
|
||||
(unless (memq (char-before) '(nil ?\n ?\t ?\s))
|
||||
(insert ?\s))
|
||||
(setq begpos (point))
|
||||
(insert starter)
|
||||
(setq cpos (point-marker))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue