+2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * textmodes/fill.el (fill-comment-paragraph): Be more careful when
+ recognizing leading comment on code line.
+
+2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
+ only comment-start (in case the mode hasn't set it).
+
+ * Makefile.in (AUTOGENEL): New var.
+ (bootstrap-prepare): Rename from bootstrap-clean.
+ Don't remove elc files.
+ (maintainer-clean): New target.
+
+ * xml.el (xml-get-attribute-or-nil): Simplify.
+
2004-03-02 Juri Linkov <juri@jurta.org>
* net/browse-url.el (browse-url-netscape, browse-url-mozilla)
(looking-at comment-re)))
;; We may have gone too far. Go forward again.
(line-beginning-position
- (if (looking-at (concat ".*\\(?:" comment-start-skip "\\)"))
+ (if (progn
+ (goto-char
+ (or (comment-search-forward (line-end-position) t)
+ (point)))
+ (looking-at comment-re))
1 2))))
;; Find the beginning of the first line past the region to fill.
(save-excursion