if the commark doesn't match comment-start-skip.
2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
+ * textmodes/fill.el (fill-comment-paragraph): Don't try to do
+ comment-paragraph filling if the commark doesn't match
+ comment-start-skip.
+
* uniquify.el (uniquify-buffer-base-name): Undo last change.
2008-02-28 Daiki Ueno <ueno@unixuser.org>
(goto-char comstart) (skip-chars-backward " \t")
(setq has-code-and-comment (not (bolp)))))
- (if (not comstart)
+ (if (not (and comstart
+ ;; Make sure the comment-start mark we found is accepted by
+ ;; comment-start-skip. If not, all bets are off, and
+ ;; we'd better not mess with it.
+ (string-match comment-start-skip
+ (buffer-substring comstart comin))))
+
;; Return nil, so the normal filling will take place.
nil