annotate lisp/paragraphs.el @ 359:8e84bee8ddd0 r21-1-9

Import from CVS: tag r21-1-9
author cvs
date Mon, 13 Aug 2007 10:57:55 +0200
parents 1f0dabaa0855
children a4f53d9b3154
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; paragraphs.el --- paragraph and sentence parsing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985, 86, 87, 91, 94, 95, 97 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5 ;; Maintainer: FSF
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6 ;; Keywords: wp, dumped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23 ;; 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25 ;;; Synched up with: FSF 19.34.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29 ;; This file is dumped with XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31 ;; This package provides the paragraph-oriented commands documented in the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32 ;; XEmacs Reference Manual.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34 ;; 06/11/1997 - Use char-(after|before) instead of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35 ;; (following|preceding)-char. -slb
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 (defvar use-hard-newlines nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 "Non-nil means to distinguish hard and soft newlines.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41 When this is non-nil, the functions `newline' and `open-line' add the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42 text-property `hard' to newlines that they insert. Also, a line is
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
43 only considered as a candidate to match `paragraph-start' or
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
44 `paragraph-separate' if it follows a hard newline. Newlines not
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 marked hard are called \"soft\", and are always internal to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 paragraphs. The fill functions always insert soft newlines.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
47
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48 Each buffer has its own value of this variable.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
49 (make-variable-buffer-local 'use-hard-newlines)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
51 (defun use-hard-newlines (&optional arg insert)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
52 "Minor mode to distinguish hard and soft newlines.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
53 When active, the functions `newline' and `open-line' add the
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
54 text-property `hard' to newlines that they insert, and a line is
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
55 only considered as a candidate to match `paragraph-start' or
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
56 `paragraph-separate' if it follows a hard newline.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
57
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
58 Prefix argument says to turn mode on if positive, off if negative.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
59 When the mode is turned on, if there are newlines in the buffer but no hard
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
60 newlines, ask the user whether to mark as hard any newlines preceeding a
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
61 `paragraph-start' line. From a program, second arg INSERT specifies whether
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
62 to do this; it can be `never' to change nothing, t or `always' to force
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
63 marking, `guess' to try to do the right thing with no questions, nil
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
64 or anything else to ask the user.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
65
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
66 Newlines not marked hard are called \"soft\", and are always internal
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
67 to paragraphs. The fill functions insert and delete only soft newlines."
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
68 (interactive (list current-prefix-arg nil))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
69 (if (or (<= (prefix-numeric-value arg) 0)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
70 (and use-hard-newlines (null arg)))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
71 ;; Turn mode off
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
72 (setq use-hard-newlines nil)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
73 ;; Turn mode on
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
74 ;; Intuit hard newlines --
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
75 ;; mark as hard any newlines preceding a paragraph-start line.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
76 (if (or (eq insert t) (eq insert 'always)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
77 (and (not (eq 'never insert))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
78 (not use-hard-newlines)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
79 (not (text-property-any (point-min) (point-max) 'hard t))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
80 (save-excursion
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
81 (goto-char (point-min))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
82 (search-forward "\n" nil t))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
83 (or (eq insert 'guess)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
84 (y-or-n-p "Make newlines between paragraphs hard? "))))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
85 (save-excursion
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
86 (goto-char (point-min))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
87 (while (search-forward "\n" nil t)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
88 (let ((pos (point)))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
89 (move-to-left-margin)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
90 (if (looking-at paragraph-start)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
91 (progn
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
92 (set-hard-newline-properties (1- pos) pos)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
93 ;; If paragraph-separate, newline after it is hard too.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
94 (if (looking-at paragraph-separate)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
95 (progn
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
96 (end-of-line)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
97 (if (not (eobp))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
98 (set-hard-newline-properties
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
99 (point) (1+ (point))))))))))))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
100 (setq use-hard-newlines t)))
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
101
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
102 ;; XEmacs - use purecopy
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
103 (defconst paragraph-start (purecopy "[ \t\n\f]") "\
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
104 *Regexp for beginning of a line that starts OR separates paragraphs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
105 This regexp should match lines that separate paragraphs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
106 and should also match lines that start a paragraph
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
107 \(and are part of that paragraph).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
108
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
109 This is matched against the text at the left margin, which is not necessarily
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
110 the beginning of the line, so it should never use \"^\" as an anchor. This
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
111 ensures that the paragraph functions will work equally well within a region
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
112 of text indented by a margin setting.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
113
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
114 The variable `paragraph-separate' specifies how to distinguish
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
115 lines that start paragraphs from lines that separate them.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
116
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
117 If the variable `use-hard-newlines' is non-nil, then only lines following a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
118 hard newline are considered to match.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
119
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
120 ;; paragraph-start requires a hard newline, but paragraph-separate does not:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
121 ;; It is assumed that paragraph-separate is distinctive enough to be believed
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
122 ;; whenever it occurs, while it is reasonable to set paragraph-start to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
123 ;; something very minimal, even including "." (which makes every hard newline
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
124 ;; start a new paragraph).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
125
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
126 ;; XEmacs -- use purecopy
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
127 (defconst paragraph-separate (purecopy "[ \t\f]*$") "\
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
128 *Regexp for beginning of a line that separates paragraphs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
129 If you change this, you may have to change paragraph-start also.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
130
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
131 This is matched against the text at the left margin, which is not necessarily
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
132 the beginning of the line, so it should not use \"^\" as an anchor. This
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
133 ensures that the paragraph functions will work equally within a region of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
134 text indented by a margin setting.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
136 ;; XEmacs -- use purecopy
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
137 (defconst sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138 *Regexp describing the end of a sentence.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
139 All paragraph boundaries also end sentences, regardless.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
140
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
141 In order to be recognized as the end of a sentence, the ending period,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
142 question mark, or exclamation point must be followed by two spaces,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
143 unless it's inside some sort of quotes or parenthesis.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
144
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
145 ;; XEmacs -- use purecopy
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146 (defconst page-delimiter (purecopy "^\014") "\
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
147 *Regexp describing line-beginnings that separate pages.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
148
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149 (defvar paragraph-ignore-fill-prefix nil "\
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
150 Non-nil means the paragraph commands are not affected by `fill-prefix'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
151 This is desirable in modes where blank lines are the paragraph delimiters.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
152
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153 (defun forward-paragraph (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
154 "Move forward to end of paragraph.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
155 With arg N, do it N times; negative arg -N means move backward N paragraphs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
156
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
157 A line which `paragraph-start' matches either separates paragraphs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
158 \(if `paragraph-separate' matches it also) or is the first line of a paragraph.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
159 A paragraph end is the beginning of a line which is not part of the paragraph
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160 to which the end of the previous line belongs, or the end of the buffer."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
161 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
162 (or arg (setq arg 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
163 (let* ((fill-prefix-regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164 (and fill-prefix (not (equal fill-prefix ""))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165 (not paragraph-ignore-fill-prefix)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166 (regexp-quote fill-prefix)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167 ;; Remove ^ from paragraph-start and paragraph-sep if they are there.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168 ;; These regexps shouldn't be anchored, because we look for them
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
169 ;; starting at the left-margin. This allows paragraph commands to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
170 ;; work normally with indented text.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
171 ;; This hack will not find problem cases like "whatever\\|^something".
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
172 (paragraph-start (if (and (not (equal "" paragraph-start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
173 (equal ?^ (aref paragraph-start 0)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
174 (substring paragraph-start 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
175 paragraph-start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
176 (paragraph-separate (if (and (not (equal "" paragraph-start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
177 (equal ?^ (aref paragraph-separate 0)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
178 (substring paragraph-separate 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
179 paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
180 (paragraph-separate
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
181 (if fill-prefix-regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
182 (concat paragraph-separate "\\|"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
183 fill-prefix-regexp "[ \t]*$")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
184 paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
185 ;; This is used for searching.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
186 (sp-paragraph-start (concat "^[ \t]*\\(" paragraph-start "\\)"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
187 start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
188 (while (and (< arg 0) (not (bobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
189 (if (and (not (looking-at paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
190 (re-search-backward "^\n" (max (1- (point)) (point-min)) t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
191 (looking-at paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
192 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
193 (setq start (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
194 ;; Move back over paragraph-separating lines.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
195 (forward-char -1) (beginning-of-line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
196 (while (and (not (bobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
197 (progn (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
198 (looking-at paragraph-separate)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
199 (forward-line -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
200 (if (bobp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
201 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
202 ;; Go to end of the previous (non-separating) line.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
203 (end-of-line)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
204 ;; Search back for line that starts or separates paragraphs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
205 (if (if fill-prefix-regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
206 ;; There is a fill prefix; it overrides paragraph-start.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
207 (let (multiple-lines)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
208 (while (and (progn (beginning-of-line) (not (bobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
209 (progn (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
210 (not (looking-at paragraph-separate)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
211 (looking-at fill-prefix-regexp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
212 (if (not (= (point) start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
213 (setq multiple-lines t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
214 (forward-line -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
215 (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
216 ;; Don't move back over a line before the paragraph
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
217 ;; which doesn't start with fill-prefix
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
218 ;; unless that is the only line we've moved over.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
219 (and (not (looking-at fill-prefix-regexp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
220 multiple-lines
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
221 (forward-line 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
222 (not (bobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
223 (while (and (re-search-backward sp-paragraph-start nil 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
224 ;; Found a candidate, but need to check if it is a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
225 ;; REAL paragraph-start.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
226 (not (bobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
227 (progn (setq start (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
228 (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
229 (not (looking-at paragraph-separate)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
230 (or (not (looking-at paragraph-start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
231 (and use-hard-newlines
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
232 (not (get-text-property (1- start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
233 'hard)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
234 (goto-char start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
235 (> (point) (point-min)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
236 ;; Found one.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
237 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
238 ;; Move forward over paragraph separators.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
239 ;; We know this cannot reach the place we started
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
240 ;; because we know we moved back over a non-separator.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
241 (while (and (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
242 (progn (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
243 (looking-at paragraph-separate)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
244 (forward-line 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
245 ;; If line before paragraph is just margin, back up to there.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
246 (end-of-line 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
247 (if (> (current-column) (current-left-margin))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
248 (forward-char 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
249 (skip-chars-backward " \t")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
250 (if (not (bolp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
251 (forward-line 1))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
252 ;; No starter or separator line => use buffer beg.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
253 (goto-char (point-min)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
254 (setq arg (1+ arg)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
255 (while (and (> arg 0) (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
256 ;; Move forward over separator lines, and one more line.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
257 (while (prog1 (and (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
258 (progn (move-to-left-margin) (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
259 (looking-at paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
260 (forward-line 1)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
261 (if fill-prefix-regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
262 ;; There is a fill prefix; it overrides paragraph-start.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
263 (while (and (not (eobp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
264 (progn (move-to-left-margin) (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
265 (not (looking-at paragraph-separate))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
266 (looking-at fill-prefix-regexp))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
267 (forward-line 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
268 (while (and (re-search-forward sp-paragraph-start nil 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
269 (progn (setq start (match-beginning 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
270 (goto-char start)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
271 (not (eobp)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
272 (progn (move-to-left-margin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
273 (not (looking-at paragraph-separate)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
274 (or (not (looking-at paragraph-start))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
275 (and use-hard-newlines
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
276 (not (get-text-property (1- start) 'hard)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
277 (forward-char 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
278 (if (< (point) (point-max))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
279 (goto-char start)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
280 (setq arg (1- arg)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
281
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
282 (defun backward-paragraph (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
283 "Move backward to start of paragraph.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
284 With arg N, do it N times; negative arg -N means move forward N paragraphs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
285
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
286 A paragraph start is the beginning of a line which is a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
287 `first-line-of-paragraph' or which is ordinary text and follows a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
288 paragraph-separating line; except: if the first real line of a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
289 paragraph is preceded by a blank line, the paragraph starts at that
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
290 blank line.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
291
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
292 See `forward-paragraph' for more information."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
293 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
294 (or arg (setq arg 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
295 (forward-paragraph (- arg)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
296
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
297 (defun mark-paragraph ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
298 "Put point at beginning of this paragraph, mark at end.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
299 The paragraph marked is the one that contains point or follows point."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
300 (interactive)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
301 (forward-paragraph 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
302 (push-mark nil t t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
303 (backward-paragraph 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
304
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
305 (defun kill-paragraph (arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
306 "Kill forward to end of paragraph.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
307 With arg N, kill forward to Nth end of paragraph;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
308 negative arg -N means kill backward to Nth start of paragraph."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
309 (interactive "*p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
310 (kill-region (point) (progn (forward-paragraph arg) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
311
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
312 (defun backward-kill-paragraph (arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
313 "Kill back to start of paragraph.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
314 With arg N, kill back to Nth start of paragraph;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
315 negative arg -N means kill forward to Nth end of paragraph."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
316 (interactive "*p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
317 (kill-region (point) (progn (backward-paragraph arg) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
318
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
319 (defun transpose-paragraphs (arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
320 "Interchange this (or next) paragraph with previous one."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
321 (interactive "*p")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
322 (transpose-subr 'forward-paragraph arg))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
323
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
324 (defun start-of-paragraph-text ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
325 (let ((opoint (point)) npoint)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
326 (forward-paragraph -1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
327 (setq npoint (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
328 (skip-chars-forward " \t\n")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
329 ;; If the range of blank lines found spans the original start point,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
330 ;; try again from the beginning of it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
331 ;; Must be careful to avoid infinite loop
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
332 ;; when following a single return at start of buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
333 (if (and (>= (point) opoint) (< npoint opoint))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
334 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
335 (goto-char npoint)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
336 (if (> npoint (point-min))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
337 (start-of-paragraph-text))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
338
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
339 (defun end-of-paragraph-text ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
340 (let ((opoint (point)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
341 (forward-paragraph 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
342 (if (eq (char-before (point)) ?\n) (forward-char -1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
343 (if (<= (point) opoint)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
344 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
345 (forward-char 1)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
346 (if (< (point) (point-max))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
347 (end-of-paragraph-text))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
348
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
349 (defun forward-sentence (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
350 "Move forward to next `sentence-end'. With argument, repeat.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
351 With negative argument, move backward repeatedly to `sentence-beginning'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
352
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
353 The variable `sentence-end' is a regular expression that matches ends of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
354 sentences. Also, every paragraph boundary terminates sentences as well."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
355 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
356 (or arg (setq arg 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
357 (while (< arg 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
358 (let ((par-beg (save-excursion (start-of-paragraph-text) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
359 (if (re-search-backward (concat sentence-end "[^ \t\n]") par-beg t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
360 (goto-char (1- (match-end 0)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
361 (goto-char par-beg)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
362 (setq arg (1+ arg)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
363 (while (> arg 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
364 (let ((par-end (save-excursion (end-of-paragraph-text) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
365 (if (re-search-forward sentence-end par-end t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
366 (skip-chars-backward " \t\n")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
367 (goto-char par-end)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
368 (setq arg (1- arg))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
369
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
370 (defun backward-sentence (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
371 "Move backward to start of sentence. With arg, do it arg times.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
372 See `forward-sentence' for more information."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
373 (interactive "_p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
374 (or arg (setq arg 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
375 (forward-sentence (- arg)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
376
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
377 (defun kill-sentence (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
378 "Kill from point to end of sentence.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
379 With arg, repeat; negative arg -N means kill back to Nth start of sentence."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
380 (interactive "*p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
381 (kill-region (point) (progn (forward-sentence arg) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
382
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
383 (defun backward-kill-sentence (&optional arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
384 "Kill back from point to start of sentence.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
385 With arg, repeat, or kill forward to Nth end of sentence if negative arg -N."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
386 (interactive "*p") ; XEmacs
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
387 (kill-region (point) (progn (backward-sentence arg) (point))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
388
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
389 (defun mark-end-of-sentence (arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
390 "Put mark at end of sentence. Arg works as in `forward-sentence'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
391 (interactive "p")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
392 ;; FSF Version:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
393 ; (push-mark
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
394 ; (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
395 ; (forward-sentence arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
396 ; (point))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
397 ; nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
398 (mark-something 'mark-end-of-sentence 'forward-sentence arg))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
399
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
400 (defun mark-end-of-line (arg)
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
401 "Put mark at end of line. Arg works as in `end-of-line'."
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
402 (interactive "p")
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
403 (mark-something 'mark-end-of-line 'end-of-line arg))
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
404
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
405
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
406 (defun transpose-sentences (arg)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
407 "Interchange this (next) and previous sentence."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
408 (interactive "*p")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
409 (transpose-subr 'forward-sentence arg))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
410
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
411 ;;; paragraphs.el ends here