1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -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 "*") (interactive "*")
(comment-normalize-vars) (comment-normalize-vars)
(beginning-of-line) (beginning-of-line)
(let* ((starter (or (and continue comment-continue) (let ((starter (or (and continue comment-continue)
comment-start comment-start
(error "No comment syntax defined"))) (error "No comment syntax defined")))
(ender (or (and continue comment-continue "") (ender (or (and continue comment-continue "")
comment-end)) comment-end))
(begpos (comment-search-forward (line-end-position) t)) (begpos (comment-search-forward (line-end-position) t))
cpos indent) cpos indent)
(cond (cond
;; If we couldn't find a comment *starting* on this line, see if we ;; If we couldn't find a comment *starting* on this line, see if we
;; are already within a multiline comment at BOL (bug#78003). ;; are already within a multiline comment at BOL (bug#78003).