summaryrefslogtreecommitdiff
path: root/lisp/newcomment.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@is.elta.co.il>2004-02-16 14:10:41 +0000
committerEli Zaretskii <eliz@is.elta.co.il>2004-02-16 14:10:41 +0000
commit5b365b6e60c6012eb7e1fa1de98a17dfdbf44408 (patch)
tree8414a1738f62dafc0667401186a49b7d5fc0cfdc /lisp/newcomment.el
parent632e5157a5507802f2f46738b6c957305631988e (diff)
downloademacs-5b365b6e60c6012eb7e1fa1de98a17dfdbf44408.tar.gz
(uncomment-region): Allow eob as comment end.
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r--lisp/newcomment.el32
1 files changed, 30 insertions, 2 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index cf5a815fe95..91943503f5e 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -698,7 +698,7 @@ The numeric prefix ARG can specify a number of chars to remove from the
comment markers."
(interactive "*r\nP")
(comment-normalize-vars)
- (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
+ (when (> beg end) (setq beg (prog1 end (setq end beg))))
(save-excursion
(if uncomment-region-function
(funcall uncomment-region-function beg end arg)
@@ -716,7 +716,35 @@ comment markers."
;; Find the end of the comment.
(ept (progn
(goto-char spt)
- (unless (comment-forward)
+ (unless
+ (or
+ (comment-forward)
+ ;; Allow eob as comment-end instead of \n.
+ (and
+ (eobp)
+ (let ((s1 (aref (syntax-table) (char-after spt)))
+ (s2 (aref (syntax-table)
+ (or (char-after (1+ spt)) 0)))
+ (sn (aref (syntax-table) ?\n))
+ (flag->b (car (string-to-syntax "> b")))
+ (flag-1b (car (string-to-syntax " 1b")))
+ (flag-2b (car (string-to-syntax " 2b"))))
+ (cond
+ ;; One-character comment-start terminated by
+ ;; \n.
+ ((and
+ (equal sn (string-to-syntax ">"))
+ (equal s1 (string-to-syntax "<")))
+ (insert-char ?\n 1)
+ t)
+ ;; Two-character type b comment-start
+ ;; terminated by \n.
+ ((and
+ (= (logand (car sn) flag->b) flag->b)
+ (= (logand (car s1) flag-1b) flag-1b)
+ (= (logand (car s2) flag-2b) flag-2b))
+ (insert-char ?\n 1)
+ t)))))
(error "Can't find the comment end"))
(point)))
(box nil)