1 ;;; paragraphs.el --- paragraph and sentence parsing
3 ;; Copyright (C) 1985, 1986, 1987, 1991, 1994, 1995, 1996, 1997, 1999, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This package provides the paragraph-oriented commands documented in the
33 (defgroup paragraphs nil
34 "Paragraph and sentence parsing."
37 (put 'use-hard-newlines
'permanent-local t
)
38 (define-minor-mode use-hard-newlines
39 "Minor mode to distinguish hard and soft newlines.
40 When active, the functions `newline' and `open-line' add the
41 text-property `hard' to newlines that they insert, and a line is
42 only considered as a candidate to match `paragraph-start' or
43 `paragraph-separate' if it follows a hard newline.
45 Prefix argument says to turn mode on if positive, off if negative.
46 When the mode is turned on, if there are newlines in the buffer but no hard
47 newlines, ask the user whether to mark as hard any newlines preceeding a
48 `paragraph-start' line. From a program, second arg INSERT specifies whether
49 to do this; it can be `never' to change nothing, t or `always' to force
50 marking, `guess' to try to do the right thing with no questions, nil
51 or anything else to ask the user.
53 Newlines not marked hard are called \"soft\", and are always internal
54 to paragraphs. The fill functions insert and delete only soft newlines."
57 (when use-hard-newlines
59 ;; Intuit hard newlines --
60 ;; mark as hard any newlines preceding a paragraph-start line.
61 (if (or (eq insert t
) (eq insert
'always
)
62 (and (not (eq 'never insert
))
63 (not (text-property-any (point-min) (point-max) 'hard t
))
65 (goto-char (point-min))
66 (search-forward "\n" nil t
))
67 (or (eq insert
'guess
)
68 (y-or-n-p "Make newlines between paragraphs hard? "))))
70 (goto-char (point-min))
71 (while (search-forward "\n" nil t
)
74 (when (looking-at paragraph-start
)
75 (set-hard-newline-properties (1- pos
) pos
))
76 ;; If paragraph-separate, newline after it is hard too.
77 (when (looking-at paragraph-separate
)
78 (set-hard-newline-properties (1- pos
) pos
)
81 (set-hard-newline-properties (point) (1+ (point)))))))))))
83 (defcustom paragraph-start
"\f\\|[ \t]*$" "\
84 *Regexp for beginning of a line that starts OR separates paragraphs.
85 This regexp should match lines that separate paragraphs
86 and should also match lines that start a paragraph
87 \(and are part of that paragraph).
89 This is matched against the text at the left margin, which is not necessarily
90 the beginning of the line, so it should never use \"^\" as an anchor. This
91 ensures that the paragraph functions will work equally well within a region
92 of text indented by a margin setting.
94 The variable `paragraph-separate' specifies how to distinguish
95 lines that start paragraphs from lines that separate them.
97 If the variable `use-hard-newlines' is non-nil, then only lines following a
98 hard newline are considered to match."
102 ;; paragraph-start requires a hard newline, but paragraph-separate does not:
103 ;; It is assumed that paragraph-separate is distinctive enough to be believed
104 ;; whenever it occurs, while it is reasonable to set paragraph-start to
105 ;; something very minimal, even including "." (which makes every hard newline
106 ;; start a new paragraph).
108 (defcustom paragraph-separate
"[ \t\f]*$"
109 "*Regexp for beginning of a line that separates paragraphs.
110 If you change this, you may have to change `paragraph-start' also.
112 This is matched against the text at the left margin, which is not necessarily
113 the beginning of the line, so it should not use \"^\" as an anchor. This
114 ensures that the paragraph functions will work equally within a region of
115 text indented by a margin setting."
119 (defcustom sentence-end-double-space t
120 "*Non-nil means a single space does not end a sentence.
121 This is relevant for filling. See also `sentence-end-without-period'
122 and `colon-double-space'.
124 This value is used by the function `sentence-end' to construct the
125 regexp describing the end of a sentence, when the value of the variable
126 `sentence-end' is nil. See Info node `(elisp)Standard Regexps'."
130 (defcustom sentence-end-without-period nil
131 "*Non-nil means a sentence will end without a period.
132 For example, a sentence in Thai text ends with double space but
135 This value is used by the function `sentence-end' to construct the
136 regexp describing the end of a sentence, when the value of the variable
137 `sentence-end' is nil. See Info node `(elisp)Standard Regexps'."
141 (defcustom sentence-end-without-space
142 "\e$B!#!%!)!*\e$A!##.#?#!\e$(0!$!%!)!*\e$(G!$!%!)!*\e(B"
143 "*String of characters that end sentence without following spaces.
145 This value is used by the function `sentence-end' to construct the
146 regexp describing the end of a sentence, when the value of the variable
147 `sentence-end' is nil. See Info node `(elisp)Standard Regexps'."
151 (defcustom sentence-end nil
152 "*Regexp describing the end of a sentence.
153 The value includes the whitespace following the sentence.
154 All paragraph boundaries also end sentences, regardless.
156 The value nil means to use the default value defined by the
157 function `sentence-end'. You should always use this function
158 to obtain the value of this variable."
160 :type
'(choice regexp
(const :tag
"Use default value" nil
)))
162 (defun sentence-end ()
163 "Return the regexp describing the end of a sentence.
165 This function returns either the value of the variable `sentence-end'
166 if it is non-nil, or the default value constructed from the
167 variables `sentence-end-double-space', `sentence-end-without-period'
168 and `sentence-end-without-space'. The default value specifies
169 that in order to be recognized as the end of a sentence, the
170 ending period, question mark, or exclamation point must be
171 followed by two spaces, unless it's inside some sort of quotes or
172 parenthesis. See Info node `(elisp)Standard Regexps'."
174 (concat (if sentence-end-without-period
"\\w \\|")
175 "\\([.?!][]\"'\xd0c9\x5397d)}]*"
176 (if sentence-end-double-space
177 "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)")
178 "\\|[" sentence-end-without-space
"]+\\)"
181 (defcustom page-delimiter
"^\014"
182 "*Regexp describing line-beginnings that separate pages."
186 (defcustom paragraph-ignore-fill-prefix nil
187 "*Non-nil means the paragraph commands are not affected by `fill-prefix'.
188 This is desirable in modes where blank lines are the paragraph delimiters."
192 (defun forward-paragraph (&optional arg
)
193 "Move forward to end of paragraph.
194 With argument ARG, do it ARG times;
195 a negative argument ARG = -N means move backward N paragraphs.
197 A line which `paragraph-start' matches either separates paragraphs
198 \(if `paragraph-separate' matches it also) or is the first line of a paragraph.
199 A paragraph end is the beginning of a line which is not part of the paragraph
200 to which the end of the previous line belongs, or the end of the buffer.
201 Returns the count of paragraphs left to move."
203 (or arg
(setq arg
1))
204 (let* ((opoint (point))
206 (and fill-prefix
(not (equal fill-prefix
""))
207 (not paragraph-ignore-fill-prefix
)
208 (regexp-quote fill-prefix
)))
209 ;; Remove ^ from paragraph-start and paragraph-sep if they are there.
210 ;; These regexps shouldn't be anchored, because we look for them
211 ;; starting at the left-margin. This allows paragraph commands to
212 ;; work normally with indented text.
213 ;; This hack will not find problem cases like "whatever\\|^something".
214 (parstart (if (and (not (equal "" paragraph-start
))
215 (equal ?^
(aref paragraph-start
0)))
216 (substring paragraph-start
1)
218 (parsep (if (and (not (equal "" paragraph-separate
))
219 (equal ?^
(aref paragraph-separate
0)))
220 (substring paragraph-separate
1)
223 (if fill-prefix-regexp
225 fill-prefix-regexp
"[ \t]*$")
227 ;; This is used for searching.
228 (sp-parstart (concat "^[ \t]*\\(?:" parstart
"\\|" parsep
"\\)"))
230 (while (and (< arg
0) (not (bobp)))
231 (if (and (not (looking-at parsep
))
232 (re-search-backward "^\n" (max (1- (point)) (point-min)) t
)
236 ;; Move back over paragraph-separating lines.
237 (forward-char -
1) (beginning-of-line)
238 (while (and (not (bobp))
239 (progn (move-to-left-margin)
240 (looking-at parsep
)))
245 ;; Go to end of the previous (non-separating) line.
247 ;; Search back for line that starts or separates paragraphs.
248 (if (if fill-prefix-regexp
249 ;; There is a fill prefix; it overrides parstart.
250 (let (multiple-lines)
251 (while (and (progn (beginning-of-line) (not (bobp)))
252 (progn (move-to-left-margin)
253 (not (looking-at parsep
)))
254 (looking-at fill-prefix-regexp
))
255 (unless (= (point) start
)
256 (setq multiple-lines t
))
258 (move-to-left-margin)
259 ;; This deleted code caused a long hanging-indent line
260 ;; not to be filled together with the following lines.
261 ;; ;; Don't move back over a line before the paragraph
262 ;; ;; which doesn't start with fill-prefix
263 ;; ;; unless that is the only line we've moved over.
264 ;; (and (not (looking-at fill-prefix-regexp))
268 (while (and (re-search-backward sp-parstart nil
1)
270 ;; Found a candidate, but need to check if it is a
272 (progn (setq start
(point))
273 (move-to-left-margin)
274 (not (looking-at parsep
)))
275 (not (and (looking-at parstart
)
276 (or (not use-hard-newlines
)
279 (1- start
) 'hard
)))))
280 (setq found-start nil
)
285 ;; Move forward over paragraph separators.
286 ;; We know this cannot reach the place we started
287 ;; because we know we moved back over a non-separator.
288 (while (and (not (eobp))
289 (progn (move-to-left-margin)
290 (looking-at parsep
)))
292 ;; If line before paragraph is just margin, back up to there.
294 (if (> (current-column) (current-left-margin))
296 (skip-chars-backward " \t")
299 ;; No starter or separator line => use buffer beg.
300 (goto-char (point-min))))))
302 (while (and (> arg
0) (not (eobp)))
303 ;; Move forward over separator lines...
304 (while (and (not (eobp))
305 (progn (move-to-left-margin) (not (eobp)))
308 (unless (eobp) (setq arg
(1- arg
)))
309 ;; ... and one more line.
311 (if fill-prefix-regexp
312 ;; There is a fill prefix; it overrides parstart.
313 (while (and (not (eobp))
314 (progn (move-to-left-margin) (not (eobp)))
315 (not (looking-at parsep
))
316 (looking-at fill-prefix-regexp
))
318 (while (and (re-search-forward sp-parstart nil
1)
319 (progn (setq start
(match-beginning 0))
322 (progn (move-to-left-margin)
323 (not (looking-at parsep
)))
324 (or (not (looking-at parstart
))
325 (and use-hard-newlines
326 (not (get-text-property (1- start
) 'hard
)))))
328 (if (< (point) (point-max))
330 (constrain-to-field nil opoint t
)
331 ;; Return the number of steps that could not be done.
334 (defun backward-paragraph (&optional arg
)
335 "Move backward to start of paragraph.
336 With argument ARG, do it ARG times;
337 a negative argument ARG = -N means move forward N paragraphs.
339 A paragraph start is the beginning of a line which is a
340 `first-line-of-paragraph' or which is ordinary text and follows a
341 paragraph-separating line; except: if the first real line of a
342 paragraph is preceded by a blank line, the paragraph starts at that
345 See `forward-paragraph' for more information."
347 (or arg
(setq arg
1))
348 (forward-paragraph (- arg
)))
350 (defun mark-paragraph (&optional arg allow-extend
)
351 "Put point at beginning of this paragraph, mark at end.
352 The paragraph marked is the one that contains point or follows point.
354 With argument ARG, puts mark at end of a following paragraph, so that
355 the number of paragraphs marked equals ARG.
357 If ARG is negative, point is put at end of this paragraph, mark is put
358 at beginning of this or a previous paragraph.
360 Interactively, if this command is repeated
361 or (in Transient Mark mode) if the mark is active,
362 it marks the next ARG paragraphs after the ones already marked."
364 (unless arg
(setq arg
1))
366 (error "Cannot mark zero paragraphs"))
367 (cond ((and allow-extend
368 (or (and (eq last-command this-command
) (mark t
))
369 (and transient-mark-mode mark-active
)))
373 (forward-paragraph arg
)
376 (forward-paragraph arg
)
378 (backward-paragraph arg
))))
380 (defun kill-paragraph (arg)
381 "Kill forward to end of paragraph.
382 With arg N, kill forward to Nth end of paragraph;
383 negative arg -N means kill backward to Nth start of paragraph."
385 (kill-region (point) (progn (forward-paragraph arg
) (point))))
387 (defun backward-kill-paragraph (arg)
388 "Kill back to start of paragraph.
389 With arg N, kill back to Nth start of paragraph;
390 negative arg -N means kill forward to Nth end of paragraph."
392 (kill-region (point) (progn (backward-paragraph arg
) (point))))
394 (defun transpose-paragraphs (arg)
395 "Interchange this (or next) paragraph with previous one."
397 (transpose-subr 'forward-paragraph arg
))
399 (defun start-of-paragraph-text ()
400 (let ((opoint (point)) npoint
)
401 (forward-paragraph -
1)
402 (setq npoint
(point))
403 (skip-chars-forward " \t\n")
404 ;; If the range of blank lines found spans the original start point,
405 ;; try again from the beginning of it.
406 ;; Must be careful to avoid infinite loop
407 ;; when following a single return at start of buffer.
408 (if (and (>= (point) opoint
) (< npoint opoint
))
411 (if (> npoint
(point-min))
412 (start-of-paragraph-text))))))
414 (defun end-of-paragraph-text ()
415 (let ((opoint (point)))
416 (forward-paragraph 1)
417 (if (eq (preceding-char) ?
\n) (forward-char -
1))
418 (if (<= (point) opoint
)
421 (if (< (point) (point-max))
422 (end-of-paragraph-text))))))
424 (defun forward-sentence (&optional arg
)
425 "Move forward to next `sentence-end'. With argument, repeat.
426 With negative argument, move backward repeatedly to `sentence-beginning'.
428 The variable `sentence-end' is a regular expression that matches ends of
429 sentences. Also, every paragraph boundary terminates sentences as well."
431 (or arg
(setq arg
1))
432 (let ((opoint (point))
433 (sentence-end (sentence-end)))
436 (par-beg (save-excursion (start-of-paragraph-text) (point))))
437 (if (and (re-search-backward sentence-end par-beg t
)
438 (or (< (match-end 0) pos
)
439 (re-search-backward sentence-end par-beg t
)))
440 (goto-char (match-end 0))
441 (goto-char par-beg
)))
444 (let ((par-end (save-excursion (end-of-paragraph-text) (point))))
445 (if (re-search-forward sentence-end par-end t
)
446 (skip-chars-backward " \t\n")
447 (goto-char par-end
)))
449 (constrain-to-field nil opoint t
)))
451 (defun repunctuate-sentences ()
452 "Put two spaces at the end of sentences from point to the end of buffer.
453 It works using `query-replace-regexp'."
455 (query-replace-regexp "\\([]\"')]?\\)\\([.?!]\\)\\([]\"')]?\\) +"
459 (defun backward-sentence (&optional arg
)
460 "Move backward to start of sentence. With arg, do it arg times.
461 See `forward-sentence' for more information."
463 (or arg
(setq arg
1))
464 (forward-sentence (- arg
)))
466 (defun kill-sentence (&optional arg
)
467 "Kill from point to end of sentence.
468 With arg, repeat; negative arg -N means kill back to Nth start of sentence."
470 (kill-region (point) (progn (forward-sentence arg
) (point))))
472 (defun backward-kill-sentence (&optional arg
)
473 "Kill back from point to start of sentence.
474 With arg, repeat, or kill forward to Nth end of sentence if negative arg -N."
476 (kill-region (point) (progn (backward-sentence arg
) (point))))
478 (defun mark-end-of-sentence (arg)
479 "Put mark at end of sentence. Arg works as in `forward-sentence'.
480 If this command is repeated, it marks the next ARG sentences after the
481 ones already marked."
485 (if (and (eq last-command this-command
) (mark t
))
487 (forward-sentence arg
)
491 (defun transpose-sentences (arg)
492 "Interchange this (next) and previous sentence."
494 (transpose-subr 'forward-sentence arg
))
497 ;;; coding: iso-2022-7bit
500 ;;; arch-tag: e727eb1a-527a-4464-b9d7-9d3ec0d1a575
501 ;;; paragraphs.el ends here