Index: lisp/textmodes/fill.el =================================================================== RCS file: /sources/emacs/emacs/lisp/textmodes/fill.el,v retrieving revision 1.223 diff -c -r1.223 fill.el *** lisp/textmodes/fill.el 8 Apr 2009 04:02:35 -0000 1.223 --- lisp/textmodes/fill.el 22 Jul 2009 03:44:20 -0000 *************** *** 976,986 **** (max comstart beg) end justify nil ;; Don't canonicalize spaces within the code just before ;; the comment. ! (save-excursion ! (goto-char beg) ! (if (looking-at fill-prefix) ! nil ! (re-search-forward comment-start-skip)))) ;; Make sure we don't return nil. t)))))) --- 976,987 ---- (max comstart beg) end justify nil ;; Don't canonicalize spaces within the code just before ;; the comment. ! (and comment-start-skip ! (save-excursion ! (goto-char beg) ! (if (looking-at fill-prefix) ! nil ! (re-search-forward comment-start-skip nil t))))) ;; Make sure we don't return nil. t))))))