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:
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 "*")
|
(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).
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue