]> git.eshelyaron.com Git - emacs.git/commitdiff
; Change let* to just let in last change.
authorSean Whitton <spwhitton@spwhitton.name>
Fri, 25 Apr 2025 01:27:00 +0000 (09:27 +0800)
committerEshel Yaron <me@eshelyaron.com>
Sat, 26 Apr 2025 17:30:07 +0000 (19:30 +0200)
(cherry picked from commit 648453c04d9b91d96452b930c0c948b0b39b5dc0)

lisp/newcomment.el

index 8ccedb0ef0fbd48c2599bc93bdc21b48f2e9f2a0..28ee4467589ca7ecb39744c3c8b7bf1a30a32490 100644 (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).