# HG changeset patch # User Stefan Monnier # Date 1042935584 0 # Node ID 7a843709dcdacd903c48cf6f34c2016f2dbdb61b # Parent 961191767061fac0849627ad0b17fb73a0765e5d (fill-comment-paragraph): Fix simplistic regexp-concatenation. diff -r 961191767061 -r 7a843709dcda lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Sun Jan 19 00:12:12 2003 +0000 +++ b/lisp/textmodes/fill.el Sun Jan 19 00:19:44 2003 +0000 @@ -807,7 +807,7 @@ (looking-at comment-re))) ;; We may have gone too far. Go forward again. (line-beginning-position - (if (looking-at (concat ".*" comment-start-skip)) + (if (looking-at (concat ".*\\(?:" comment-start-skip "\\)")) 1 2)))) ;; Find the beginning of the first line past the region to fill. (save-excursion