]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/newcomment.el: Allow 'comment-continue' with whitespace (bug#47167)
authorJuri Linkov <juri@linkov.net>
Thu, 18 Mar 2021 18:01:26 +0000 (20:01 +0200)
committerJuri Linkov <juri@linkov.net>
Thu, 18 Mar 2021 18:01:26 +0000 (20:01 +0200)
* lisp/newcomment.el (comment-region-default-1): Still use 'comment-continue'
as a string with whitespace even when 'comment-padright' returns nil.

lisp/newcomment.el

index ea47eec4fda11cb9cf199cc7a5fecb3341a5826d..a5bfb067954cced9eea756a1448fb3a5b88621ba 100644 (file)
@@ -1300,7 +1300,11 @@ out."
         (let ((s (comment-padleft comment-end numarg)))
           (and s (if (string-match comment-end-skip s) s
                    (comment-padright comment-end))))
-        (if multi (comment-padright comment-continue numarg))
+        (if multi
+             (or (comment-padright comment-continue numarg)
+                 ;; `comment-padright' returns nil when
+                 ;; `comment-continue' contains only whitespace
+                 (and (stringp comment-continue) comment-continue)))
         (if multi
             (comment-padleft (comment-string-reverse comment-continue) numarg))
         block