changeset 54247:fd1d1c7abf54

(fill-paragraph): Don't check comment-start-skip, only comment-start (in case the mode hasn't set it).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 02 Mar 2004 22:19:19 +0000
parents a4bd1232eb74
children 28e8d2c26aa1
files lisp/textmodes/fill.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/fill.el	Tue Mar 02 22:13:02 2004 +0000
+++ b/lisp/textmodes/fill.el	Tue Mar 02 22:19:19 2004 +0000
@@ -1,6 +1,6 @@
 ;;; fill.el --- fill commands for Emacs
 
-;; Copyright (C) 1985,86,92,94,95,96,97,1999,2001,02,2003
+;; Copyright (C) 1985,86,92,94,95,96,97,1999,2001,02,03,2004
 ;;               Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
@@ -732,7 +732,7 @@
       ;; Then try our syntax-aware filling code.
       (and fill-paragraph-handle-comment
 	   ;; Our code only handles \n-terminated comments right now.
-	   comment-start comment-start-skip (equal comment-end "")
+	   comment-start (equal comment-end "")
 	   (let ((fill-paragraph-handle-comment nil))
 	     (fill-comment-paragraph arg)))
       ;; If it all fails, default to the good ol' text paragraph filling.