From: Sean Whitton Date: Fri, 25 Apr 2025 01:27:00 +0000 (+0800) Subject: ; Change let* to just let in last change. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9bc7faa8b8f6751e77d3b528dff7a7520279d085;p=emacs.git ; Change let* to just let in last change. (cherry picked from commit 648453c04d9b91d96452b930c0c948b0b39b5dc0) --- diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 8ccedb0ef0f..28ee4467589 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -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).