1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; Change let* to just let in last change.

This commit is contained in:
Sean Whitton 2025-04-25 09:27:00 +08:00
parent a6829a0c35
commit 648453c04d

View file

@ -714,13 +714,13 @@ If CONTINUE is non-nil, use the `comment-continue' markers if any."
(interactive "*")
(comment-normalize-vars)
(beginning-of-line)
(let* ((starter (or (and continue comment-continue)
comment-start
(error "No comment syntax defined")))
(ender (or (and continue comment-continue "")
comment-end))
(begpos (comment-search-forward (line-end-position) t))
cpos indent)
(let ((starter (or (and continue comment-continue)
comment-start
(error "No comment syntax defined")))
(ender (or (and continue comment-continue "")
comment-end))
(begpos (comment-search-forward (line-end-position) t))
cpos indent)
(cond
;; If we couldn't find a comment *starting* on this line, see if we
;; are already within a multiline comment at BOL (bug#78003).