* lisp/newcomment.el (comment-normalize-vars): Better test validity of

comment-end-skip.
This commit is contained in:
Stefan Monnier 2010-09-21 15:09:22 +02:00
parent 872b1b16c3
commit c9805d2356
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
* newcomment.el (comment-normalize-vars): Better test validity of
comment-end-skip.
2010-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/float-sup.el (float-pi): New name for `pi'.

View file

@ -318,7 +318,8 @@ the variables are properly set."
"+\\)[ \t]*")))
(unless (and comment-end-skip
;; In case comment-end has changed since last time.
(string-match comment-end-skip comment-end))
(string-match comment-end-skip
(if (string= "" comment-end) "\n" comment-end)))
(let ((ce (if (string= "" comment-end) "\n"
(comment-string-strip comment-end t t))))
(set (make-local-variable 'comment-end-skip)