comparison lisp/textmodes/fill.el @ 47269:dd5bcff29f6a

(fill-nonuniform-paragraphs, fill-individual-paragraphs): Fix spacing.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 06 Sep 2002 07:18:44 +0000
parents 09c66758d36e
children cd005e017b51
comparison
equal deleted inserted replaced
47268:6f9bcb1377db 47269:dd5bcff29f6a
1092 Optional third and fourth arguments JUSTIFY and MAIL-FLAG: 1092 Optional third and fourth arguments JUSTIFY and MAIL-FLAG:
1093 JUSTIFY to justify paragraphs (prefix arg), 1093 JUSTIFY to justify paragraphs (prefix arg),
1094 When filling a mail message, pass a regexp for CITATION-REGEXP 1094 When filling a mail message, pass a regexp for CITATION-REGEXP
1095 which will match the prefix of a line which is a citation marker 1095 which will match the prefix of a line which is a citation marker
1096 plus whitespace, but no other kind of prefix. 1096 plus whitespace, but no other kind of prefix.
1097 Also, if CITATION-REGEXP is non-nil, don't fill header lines." 1097 Also, if CITATION-REGEXP is non-nil, don't fill header lines."
1098 (interactive (progn 1098 (interactive (progn
1099 (barf-if-buffer-read-only) 1099 (barf-if-buffer-read-only)
1100 (list (region-beginning) (region-end) 1100 (list (region-beginning) (region-end)
1101 (if current-prefix-arg 'full)))) 1101 (if current-prefix-arg 'full))))
1102 (let ((fill-individual-varying-indent t)) 1102 (let ((fill-individual-varying-indent t))
1122 Optional third and fourth arguments JUSTIFY and MAIL-FLAG: 1122 Optional third and fourth arguments JUSTIFY and MAIL-FLAG:
1123 JUSTIFY to justify paragraphs (prefix arg), 1123 JUSTIFY to justify paragraphs (prefix arg),
1124 When filling a mail message, pass a regexp for CITATION-REGEXP 1124 When filling a mail message, pass a regexp for CITATION-REGEXP
1125 which will match the prefix of a line which is a citation marker 1125 which will match the prefix of a line which is a citation marker
1126 plus whitespace, but no other kind of prefix. 1126 plus whitespace, but no other kind of prefix.
1127 Also, if CITATION-REGEXP is non-nil, don't fill header lines." 1127 Also, if CITATION-REGEXP is non-nil, don't fill header lines."
1128 (interactive (progn 1128 (interactive (progn
1129 (barf-if-buffer-read-only) 1129 (barf-if-buffer-read-only)
1130 (list (region-beginning) (region-end) 1130 (list (region-beginning) (region-end)
1131 (if current-prefix-arg 'full)))) 1131 (if current-prefix-arg 'full))))
1132 (save-restriction 1132 (save-restriction