Mercurial > emacs
annotate lisp/textmodes/fill.el @ 10347:8f382ecc4dfa
Bump version.
author | Johan Vromans <jvromans@squirrel.nl> |
---|---|
date | Thu, 05 Jan 1995 12:32:28 +0000 |
parents | 18d52489f138 |
children | 166aed4ba78b |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1 ;;; fill.el --- fill commands for Emacs |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
821
diff
changeset
|
4 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Keywords: wp |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
6 |
75 | 7 ;; This file is part of GNU Emacs. |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
75 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2109
diff
changeset
|
23 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2109
diff
changeset
|
24 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2109
diff
changeset
|
25 ;; All the commands for filling text. These are documented in the Emacs |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2109
diff
changeset
|
26 ;; manual. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2109
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
28 ;;; Code: |
75 | 29 |
638 | 30 (defconst fill-individual-varying-indent nil |
31 "*Controls criterion for a new paragraph in `fill-individual-paragraphs'. | |
32 Non-nil means changing indent doesn't end a paragraph. | |
33 That mode can handle paragraphs with extra indentation on the first line, | |
34 but it requires separator lines between paragraphs. | |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
35 A value of nil means that any change in indentation starts a new paragraph.") |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
36 |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
37 (defconst sentence-end-double-space t |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
38 "*Non-nil means a single space does not end a sentence.") |
638 | 39 |
75 | 40 (defun set-fill-prefix () |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
41 "Set the fill prefix to the current line up to point. |
218 | 42 Filling expects lines to start with the fill prefix and |
43 reinserts the fill prefix in each resulting line." | |
75 | 44 (interactive) |
45 (setq fill-prefix (buffer-substring | |
46 (save-excursion (beginning-of-line) (point)) | |
47 (point))) | |
48 (if (equal fill-prefix "") | |
49 (setq fill-prefix nil)) | |
50 (if fill-prefix | |
51 (message "fill-prefix: \"%s\"" fill-prefix) | |
52 (message "fill-prefix cancelled"))) | |
53 | |
218 | 54 (defconst adaptive-fill-mode t |
55 "*Non-nil means determine a paragraph's fill prefix from its text.") | |
56 | |
57 (defconst adaptive-fill-regexp "[ \t]*\\([>*] +\\)?" | |
58 "*Regexp to match text at start of line that constitutes indentation. | |
59 If Adaptive Fill mode is enabled, whatever text matches this pattern | |
60 on the second line of a paragraph is used as the standard indentation | |
61 for the paragraph.") | |
62 | |
75 | 63 (defun fill-region-as-paragraph (from to &optional justify-flag) |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
64 "Fill region as one paragraph: break lines to fit `fill-column'. |
75 | 65 Prefix arg means justify too. |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
66 If `sentence-end-double-space' is non-nil, then period followed by one |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
67 space does not end a sentence, so don't break a line there. |
75 | 68 From program, pass args FROM, TO and JUSTIFY-FLAG." |
69 (interactive "r\nP") | |
1332
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
70 ;; Arrange for undoing the fill to restore point. |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
71 (if (and buffer-undo-list (not (eq buffer-undo-list t))) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
72 (setq buffer-undo-list (cons (point) buffer-undo-list))) |
218 | 73 ;; Don't let Adaptive Fill mode alter the fill prefix permanently. |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
74 (let ((fill-prefix fill-prefix)) |
218 | 75 ;; Figure out how this paragraph is indented, if desired. |
670
bff41708644e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
76 (if (and adaptive-fill-mode |
bff41708644e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
77 (or (null fill-prefix) (string= fill-prefix ""))) |
218 | 78 (save-excursion |
79 (goto-char (min from to)) | |
80 (if (eolp) (forward-line 1)) | |
81 (forward-line 1) | |
82 (if (< (point) (max from to)) | |
83 (let ((start (point))) | |
84 (re-search-forward adaptive-fill-regexp) | |
85 (setq fill-prefix (buffer-substring start (point)))) | |
86 (goto-char (min from to)) | |
87 (if (eolp) (forward-line 1)) | |
7721
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
88 ;; If paragraph has only one line, don't assume in general |
218 | 89 ;; that additional lines would have the same starting |
729
5d684b81ac6b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
719
diff
changeset
|
90 ;; decoration. Assume no indentation. |
7721
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
91 ;; But if left-margin is nonzero, we can assume ordinary |
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
92 ;; lines do have indentation. |
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
93 (if (> left-margin 0) |
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
94 (progn |
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
95 (re-search-forward adaptive-fill-regexp) |
b04897534717
(fill-region-as-paragraph): if left-margin is nonzero,
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
96 (setq fill-prefix (make-string (current-column) ?\ )))) |
729
5d684b81ac6b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
719
diff
changeset
|
97 ))) |
75 | 98 |
218 | 99 (save-restriction |
10110
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
100 (let (end) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
101 (goto-char (max from to)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
102 ;; If specified region ends before a newline, |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
103 ;; include that newline. |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
104 (if (and (eolp) (not (eobp)) (not (bolp))) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
105 (forward-char 1)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
106 (setq end (point)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
107 (setq from (min from to)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
108 (goto-char from) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
109 (beginning-of-line) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
110 (narrow-to-region (point) end)) |
218 | 111 (skip-chars-forward "\n") |
112 (narrow-to-region (point) (point-max)) | |
10110
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
113 (if (> from (point)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
114 (goto-char from) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
115 (setq from (point))) |
218 | 116 (goto-char (point-max)) |
117 (let ((fpre (and fill-prefix (not (equal fill-prefix "")) | |
118 (regexp-quote fill-prefix)))) | |
119 ;; Delete the fill prefix from every line except the first. | |
120 ;; The first line may not even have a fill prefix. | |
121 (and fpre | |
122 (progn | |
123 (if (>= (length fill-prefix) fill-column) | |
124 (error "fill-prefix too long for specified width")) | |
10110
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
125 (goto-char from) |
218 | 126 (forward-line 1) |
127 (while (not (eobp)) | |
128 (if (looking-at fpre) | |
129 (delete-region (point) (match-end 0))) | |
130 (forward-line 1)) | |
10110
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
131 (goto-char from) |
218 | 132 (and (looking-at fpre) (forward-char (length fill-prefix))) |
133 (setq from (point))))) | |
134 ;; from is now before the text to fill, | |
135 ;; but after any fill prefix on the first line. | |
75 | 136 |
218 | 137 ;; Make sure sentences ending at end of line get an extra space. |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
138 ;; loses on split abbrevs ("Mr.\nSmith") |
218 | 139 (goto-char from) |
670
bff41708644e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
662
diff
changeset
|
140 (while (re-search-forward "[.?!][])}\"']*$" nil t) |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
141 (insert ? )) |
218 | 142 |
143 ;; Then change all newlines to spaces. | |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
144 (subst-char-in-region from (point-max) ?\n ?\ ) |
2376
f7a3795bd1c5
(fill-paragraph, justify-current-line) Now uses the skip-syntax-
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
145 |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
146 ;; Flush excess spaces, except in the paragraph indentation. |
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
147 (goto-char from) |
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
148 (skip-chars-forward " \t") |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
149 ;; Nuke tabs while we're at it; they get screwed up in a fill. |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
150 ;; This is quick, but loses when a tab follows the end of a sentence. |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
151 ;; Actually, it is difficult to tell that from "Mr.\tSmith". |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
152 ;; Blame the typist. |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
153 (subst-char-in-region (point) (point-max) ?\t ?\ ) |
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
154 (while (re-search-forward " *" nil t) |
218 | 155 (delete-region |
156 (+ (match-beginning 0) | |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
157 (if (and sentence-end-double-space |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
158 (save-excursion |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
159 (skip-chars-backward " ]})\"'") |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
160 (memq (preceding-char) '(?. ?? ?!)))) |
218 | 161 2 1)) |
162 (match-end 0))) | |
163 (goto-char (point-max)) | |
164 (delete-horizontal-space) | |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
165 (insert " ") |
218 | 166 (goto-char (point-min)) |
167 | |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
168 ;; This is the actual filling loop. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
169 (let ((prefixcol 0) linebeg) |
218 | 170 (while (not (eobp)) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
171 (setq linebeg (point)) |
218 | 172 (move-to-column (1+ fill-column)) |
173 (if (eobp) | |
174 nil | |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
175 ;; Move back to start of word. |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
176 (skip-chars-backward "^ \n" linebeg) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
177 ;; Don't break after a period followed by just one space. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
178 ;; Move back to the previous place to break. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
179 ;; The reason is that if a period ends up at the end of a line, |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
180 ;; further fills will assume it ends a sentence. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
181 ;; If we now know it does not end a sentence, |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
182 ;; avoid putting it at the end of the line. |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
183 (if sentence-end-double-space |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
184 (while (and (> (point) (+ linebeg 2)) |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
185 (eq (preceding-char) ?\ ) |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
186 (not (eq (following-char) ?\ )) |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
187 (eq (char-after (- (point) 2)) ?\.)) |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
188 (forward-char -2) |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
189 (skip-chars-backward "^ \n" linebeg))) |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
190 (if (if (zerop prefixcol) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
191 (save-excursion |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
192 (skip-chars-backward " " linebeg) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
193 (bolp)) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
194 (>= prefixcol (current-column))) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
195 ;; Keep at least one word even if fill prefix exceeds margin. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
196 ;; This handles all but the first line of the paragraph. |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
197 ;; Meanwhile, don't stop at a period followed by one space. |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
198 (let ((first t)) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
199 (move-to-column prefixcol) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
200 (while (and (not (eobp)) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
201 (or first |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
202 (and (not (bobp)) |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
203 sentence-end-double-space |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
204 (save-excursion (forward-char -1) |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
205 (and (looking-at "\\. ") |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
206 (not (looking-at "\\. "))))))) |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
207 (skip-chars-forward " ") |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
208 (skip-chars-forward "^ \n") |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
209 (setq first nil))) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
210 ;; Normally, move back over the single space between the words. |
4352
d00889d02f75
(fill-region-as-paragraph): Move misplaced paren
Richard M. Stallman <rms@gnu.org>
parents:
2520
diff
changeset
|
211 (forward-char -1)) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
212 (if (and fill-prefix (zerop prefixcol) |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
213 (< (- (point) (point-min)) (length fill-prefix)) |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
214 (string= (buffer-substring (point-min) (point)) |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
215 (substring fill-prefix 0 (- (point) (point-min))))) |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
216 ;; Keep at least one word even if fill prefix exceeds margin. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
217 ;; This handles the first line of the paragraph. |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
218 ;; Don't stop at a period followed by just one space. |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
219 (let ((first t)) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
220 (while (and (not (eobp)) |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
221 (or first |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
222 (and (not (bobp)) |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
223 sentence-end-double-space |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
224 (save-excursion (forward-char -1) |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
225 (and (looking-at "\\. ") |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
226 (not (looking-at "\\. "))))))) |
4413
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
227 (skip-chars-forward " ") |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
228 (skip-chars-forward "^ \n") |
5a00cec8e9b0
(fill-region-as-paragraph): When we take one word
Richard M. Stallman <rms@gnu.org>
parents:
4352
diff
changeset
|
229 (setq first nil))))) |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
230 ;; Replace all whitespace here with one newline. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
231 ;; Insert before deleting, so we don't forget which side of |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
232 ;; the whitespace point or markers used to be on. |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
233 (skip-chars-backward " ") |
218 | 234 (insert ?\n) |
235 (delete-horizontal-space) | |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
236 ;; Insert the fill prefix at start of each line. |
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
237 ;; Set prefixcol so whitespace in the prefix won't get lost. |
218 | 238 (and (not (eobp)) fill-prefix (not (equal fill-prefix "")) |
239 (progn | |
240 (insert fill-prefix) | |
241 (setq prefixcol (current-column)))) | |
719
3007551721dc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
670
diff
changeset
|
242 ;; Justify the line just ended, if desired. |
218 | 243 (and justify-flag (not (eobp)) |
244 (progn | |
245 (forward-line -1) | |
246 (justify-current-line) | |
247 (forward-line 1)))))))) | |
75 | 248 |
249 (defun fill-paragraph (arg) | |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
250 "Fill paragraph at or after point. Prefix arg means justify as well. |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
251 If `sentence-end-double-space' is non-nil, then period followed by one |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
252 space does not end a sentence, so don't break a line there." |
75 | 253 (interactive "P") |
1332
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
254 (let ((before (point))) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
255 (save-excursion |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
256 (forward-paragraph) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
257 (or (bolp) (newline 1)) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
258 (let ((end (point)) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
259 (beg (progn (backward-paragraph) (point)))) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
260 (goto-char before) |
955ebdb98095
(fill-paragraph): Don't actually change point before
Richard M. Stallman <rms@gnu.org>
parents:
1067
diff
changeset
|
261 (fill-region-as-paragraph beg end arg))))) |
75 | 262 |
263 (defun fill-region (from to &optional justify-flag) | |
264 "Fill each of the paragraphs in the region. | |
5770
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
265 Prefix arg (non-nil third arg, if called from program) means justify as well. |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
266 If `sentence-end-double-space' is non-nil, then period followed by one |
92dd602768d2
(sentence-end-double-space): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5291
diff
changeset
|
267 space does not end a sentence, so don't break a line there." |
75 | 268 (interactive "r\nP") |
10110
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
269 (let (end beg) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
270 (save-restriction |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
271 (goto-char (max from to)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
272 ;; If specified region ends before a newline, |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
273 ;; include that newline. |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
274 (if (and (eolp) (not (eobp)) (not (bolp))) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
275 (forward-char 1)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
276 (setq end (point)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
277 (goto-char (setq beg (min from to))) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
278 (beginning-of-line) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
279 (narrow-to-region (point) end) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
280 (while (not (eobp)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
281 (let ((initial (point)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
282 (end (progn |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
283 (forward-paragraph 1) (point)))) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
284 (forward-paragraph -1) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
285 (if (< (point) beg) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
286 (goto-char beg)) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
287 (if (>= (point) initial) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
288 (fill-region-as-paragraph (point) end justify-flag) |
18d52489f138
(fill-region-as-paragraph): If region starts in mid-line,
Richard M. Stallman <rms@gnu.org>
parents:
9706
diff
changeset
|
289 (goto-char end))))))) |
75 | 290 |
291 (defun justify-current-line () | |
218 | 292 "Add spaces to line point is in, so it ends at `fill-column'." |
75 | 293 (interactive) |
294 (save-excursion | |
295 (save-restriction | |
8363
bf559544bd48
(justify-current-line): Delete space at end of line.
Richard M. Stallman <rms@gnu.org>
parents:
7721
diff
changeset
|
296 (let (ncols beg indent end) |
75 | 297 (beginning-of-line) |
298 (forward-char (length fill-prefix)) | |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
299 (skip-chars-forward " \t") |
218 | 300 (setq indent (current-column)) |
75 | 301 (setq beg (point)) |
302 (end-of-line) | |
303 (narrow-to-region beg (point)) | |
8363
bf559544bd48
(justify-current-line): Delete space at end of line.
Richard M. Stallman <rms@gnu.org>
parents:
7721
diff
changeset
|
304 (setq end (point)) |
bf559544bd48
(justify-current-line): Delete space at end of line.
Richard M. Stallman <rms@gnu.org>
parents:
7721
diff
changeset
|
305 (skip-chars-backward " \t") |
bf559544bd48
(justify-current-line): Delete space at end of line.
Richard M. Stallman <rms@gnu.org>
parents:
7721
diff
changeset
|
306 (delete-char (- end (point))) |
75 | 307 (goto-char beg) |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
308 (while (re-search-forward " *" nil t) |
75 | 309 (delete-region |
310 (+ (match-beginning 0) | |
311 (if (save-excursion | |
2409
d03c7b8ac284
Cancel previous change; this version should be identical to version 1.17.
Richard M. Stallman <rms@gnu.org>
parents:
2376
diff
changeset
|
312 (skip-chars-backward " ])\"'") |
75 | 313 (memq (preceding-char) '(?. ?? ?!))) |
314 2 1)) | |
315 (match-end 0))) | |
316 (goto-char beg) | |
1067 | 317 (while (re-search-forward "[.?!][])\"']*\n" nil t) |
75 | 318 (forward-char -1) |
9026
74fd93bc3568
(justify-current-line): Inherit props when inserting spaces.
Richard M. Stallman <rms@gnu.org>
parents:
8363
diff
changeset
|
319 (insert-and-inherit ? )) |
75 | 320 (goto-char (point-max)) |
218 | 321 ;; Note that the buffer bounds start after the indentation, |
322 ;; so the columns counted by INDENT don't appear in (current-column). | |
323 (setq ncols (- fill-column (current-column) indent)) | |
75 | 324 (if (search-backward " " nil t) |
325 (while (> ncols 0) | |
326 (let ((nmove (+ 3 (random 3)))) | |
327 (while (> nmove 0) | |
328 (or (search-backward " " nil t) | |
329 (progn | |
330 (goto-char (point-max)) | |
331 (search-backward " "))) | |
332 (skip-chars-backward " ") | |
333 (setq nmove (1- nmove)))) | |
9026
74fd93bc3568
(justify-current-line): Inherit props when inserting spaces.
Richard M. Stallman <rms@gnu.org>
parents:
8363
diff
changeset
|
334 (insert-and-inherit " ") |
75 | 335 (skip-chars-backward " ") |
2109
73485780a8f9
* simple.el (yank, yank-pop): Always return nil; don't rely on
Jim Blandy <jimb@redhat.com>
parents:
1332
diff
changeset
|
336 (setq ncols (1- ncols))))))) |
73485780a8f9
* simple.el (yank, yank-pop): Always return nil; don't rely on
Jim Blandy <jimb@redhat.com>
parents:
1332
diff
changeset
|
337 nil) |
9026
74fd93bc3568
(justify-current-line): Inherit props when inserting spaces.
Richard M. Stallman <rms@gnu.org>
parents:
8363
diff
changeset
|
338 |
75 | 339 |
2520
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
340 (defun fill-nonuniform-paragraphs (min max &optional justifyp mailp) |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
341 "Fill paragraphs within the region, allowing varying indentation within each. |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
342 This command divides the region into \"paragraphs\", |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
343 only at paragraph-separator lines, then fills each paragraph |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
344 using as the fill prefix the smallest indentation of any line |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
345 in the paragraph. |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
346 |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
347 When calling from a program, pass range to fill as first two arguments. |
638 | 348 |
2520
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
349 Optional third and fourth arguments JUSTIFY-FLAG and MAIL-FLAG: |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
350 JUSTIFY-FLAG to justify paragraphs (prefix arg), |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
351 MAIL-FLAG for a mail message, i. e. don't fill header lines." |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
352 (interactive "r\nP") |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
353 (let ((fill-individual-varying-indent t)) |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
354 (fill-individual-paragraphs min max justifyp mailp))) |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
355 |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
356 (defun fill-individual-paragraphs (min max &optional justifyp mailp) |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
357 "Fill paragraphs of uniform indentation within the region. |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
358 This command divides the region into \"paragraphs\", |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
359 treating every change in indentation level as a paragraph boundary, |
ef643dbb7d40
(fill-nonuniform-paragraphs): New command.
Richard M. Stallman <rms@gnu.org>
parents:
2412
diff
changeset
|
360 then fills each paragraph using its indentation level as the fill prefix. |
638 | 361 |
362 When calling from a program, pass range to fill as first two arguments. | |
363 | |
75 | 364 Optional third and fourth arguments JUSTIFY-FLAG and MAIL-FLAG: |
365 JUSTIFY-FLAG to justify paragraphs (prefix arg), | |
366 MAIL-FLAG for a mail message, i. e. don't fill header lines." | |
367 (interactive "r\nP") | |
474 | 368 (save-restriction |
369 (save-excursion | |
370 (goto-char min) | |
371 (beginning-of-line) | |
9706
f5f7d07eece8
(fill-individual-paragraphs): Avoid infinite loop
Richard M. Stallman <rms@gnu.org>
parents:
9217
diff
changeset
|
372 (narrow-to-region (point) max) |
474 | 373 (if mailp |
9706
f5f7d07eece8
(fill-individual-paragraphs): Avoid infinite loop
Richard M. Stallman <rms@gnu.org>
parents:
9217
diff
changeset
|
374 (while (and (not (eobp)) |
f5f7d07eece8
(fill-individual-paragraphs): Avoid infinite loop
Richard M. Stallman <rms@gnu.org>
parents:
9217
diff
changeset
|
375 (or (looking-at "[ \t]*[^ \t\n]*:") |
f5f7d07eece8
(fill-individual-paragraphs): Avoid infinite loop
Richard M. Stallman <rms@gnu.org>
parents:
9217
diff
changeset
|
376 (looking-at "[ \t]*$"))) |
4992
8a3293abe1ba
(fill-individual-paragraphs): Fix skipping headers of yanked message.
Richard M. Stallman <rms@gnu.org>
parents:
4413
diff
changeset
|
377 (if (looking-at "[ \t]*[^ \t\n]*:") |
8a3293abe1ba
(fill-individual-paragraphs): Fix skipping headers of yanked message.
Richard M. Stallman <rms@gnu.org>
parents:
4413
diff
changeset
|
378 (search-forward "\n\n" nil 'move) |
8a3293abe1ba
(fill-individual-paragraphs): Fix skipping headers of yanked message.
Richard M. Stallman <rms@gnu.org>
parents:
4413
diff
changeset
|
379 (forward-line 1)))) |
474 | 380 (narrow-to-region (point) max) |
381 ;; Loop over paragraphs. | |
382 (while (progn (skip-chars-forward " \t\n") (not (eobp))) | |
383 (beginning-of-line) | |
384 (let ((start (point)) | |
385 fill-prefix fill-prefix-regexp) | |
386 ;; Find end of paragraph, and compute the smallest fill-prefix | |
387 ;; that fits all the lines in this paragraph. | |
388 (while (progn | |
389 ;; Update the fill-prefix on the first line | |
390 ;; and whenever the prefix good so far is too long. | |
391 (if (not (and fill-prefix | |
392 (looking-at fill-prefix-regexp))) | |
393 (setq fill-prefix | |
394 (buffer-substring (point) | |
395 (save-excursion (skip-chars-forward " \t") (point))) | |
396 fill-prefix-regexp | |
397 (regexp-quote fill-prefix))) | |
398 (forward-line 1) | |
399 ;; Now stop the loop if end of paragraph. | |
400 (and (not (eobp)) | |
638 | 401 (if fill-individual-varying-indent |
402 ;; If this line is a separator line, with or | |
403 ;; without prefix, end the paragraph. | |
404 (and | |
474 | 405 (not (looking-at paragraph-separate)) |
406 (save-excursion | |
407 (not (and (looking-at fill-prefix-regexp) | |
408 (progn (forward-char (length fill-prefix)) | |
638 | 409 (looking-at paragraph-separate)))))) |
410 ;; If this line has more or less indent | |
411 ;; than the fill prefix wants, end the paragraph. | |
412 (and (looking-at fill-prefix-regexp) | |
413 (save-excursion | |
414 (not (progn (forward-char (length fill-prefix)) | |
415 (or (looking-at paragraph-separate) | |
416 (looking-at paragraph-start)))))))))) | |
474 | 417 ;; Fill this paragraph, but don't add a newline at the end. |
418 (let ((had-newline (bolp))) | |
419 (fill-region-as-paragraph start (point) justifyp) | |
638 | 420 (or had-newline (delete-char -1)))))))) |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
421 |
732 | 422 ;;; fill.el ends here |