(uncomment-region): Fix let/let* use.
This commit is contained in:
parent
cf681de6e5
commit
4679af47c1
2 changed files with 18 additions and 14 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-09-11 Juanma Barranquero <lektu@terra.es>
|
||||
|
||||
* newcomment.el (uncomment-region): Fix let/let* use.
|
||||
|
||||
2002-09-11 Simon Josefsson <jas@extundo.com>
|
||||
|
||||
* gud.el (gud-gdb-massage-args): Don't secretly add -fullname.
|
||||
|
|
|
@ -622,22 +622,22 @@ comment markers."
|
|||
(save-excursion
|
||||
(goto-char beg)
|
||||
(setq end (copy-marker end))
|
||||
(let ((numarg (prefix-numeric-value arg))
|
||||
(ccs comment-continue)
|
||||
(srei (comment-padright ccs 're))
|
||||
(sre (and srei (concat "^\\s-*?\\(" srei "\\)")))
|
||||
spt)
|
||||
(let* ((numarg (prefix-numeric-value arg))
|
||||
(ccs comment-continue)
|
||||
(srei (comment-padright ccs 're))
|
||||
(sre (and srei (concat "^\\s-*?\\(" srei "\\)")))
|
||||
spt)
|
||||
(while (and (< (point) end)
|
||||
(setq spt (comment-search-forward end t)))
|
||||
(let* ((ipt (point))
|
||||
;; Find the end of the comment.
|
||||
(ept (progn
|
||||
(goto-char spt)
|
||||
(unless (comment-forward)
|
||||
(error "Can't find the comment end"))
|
||||
(point)))
|
||||
(box nil)
|
||||
(box-equal nil)) ;Whether we might be using `=' for boxes.
|
||||
(let ((ipt (point))
|
||||
;; Find the end of the comment.
|
||||
(ept (progn
|
||||
(goto-char spt)
|
||||
(unless (comment-forward)
|
||||
(error "Can't find the comment end"))
|
||||
(point)))
|
||||
(box nil)
|
||||
(box-equal nil)) ;Whether we might be using `=' for boxes.
|
||||
(save-restriction
|
||||
(narrow-to-region spt ept)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue