From 9bc7faa8b8f6751e77d3b528dff7a7520279d085 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Fri, 25 Apr 2025 09:27:00 +0800 Subject: [PATCH] ; Change let* to just let in last change. (cherry picked from commit 648453c04d9b91d96452b930c0c948b0b39b5dc0) --- lisp/newcomment.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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). -- 2.39.5