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:
parent
a6829a0c35
commit
648453c04d
1 changed files with 7 additions and 7 deletions
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue