Mercurial > emacs
annotate lisp/textmodes/paragraphs.el @ 10717:e0f6b4ab7412
(x_decode_color): Ignore failure from defined_color.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 12 Feb 1995 01:25:14 +0000 |
parents | 765fe4b8deaf |
children | 33769cbeb58e |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
1 ;;; paragraphs.el --- paragraph and sentence parsing. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 86, 87, 91, 94 Free Software Foundation, Inc. |
845 | 4 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
6 ;; Keywords: wp |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
804 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1462
diff
changeset
|
24 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1462
diff
changeset
|
25 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1462
diff
changeset
|
26 ;; This package provides the paragraph-oriented commands documented in the |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1462
diff
changeset
|
27 ;; Emacs manual. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1462
diff
changeset
|
28 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
29 ;;; Code: |
36 | 30 |
269 | 31 (defconst paragraph-start "^[ \t\n\f]" "\ |
4585
04e78c728252
(paragraph-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2828
diff
changeset
|
32 *Regexp for beginning of a line that starts OR separates paragraphs. |
04e78c728252
(paragraph-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2828
diff
changeset
|
33 This regexp should match lines that separate paragraphs |
04e78c728252
(paragraph-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2828
diff
changeset
|
34 and should also match lines that start a paragraph |
04e78c728252
(paragraph-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2828
diff
changeset
|
35 \(and are part of that paragraph). |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
36 |
4585
04e78c728252
(paragraph-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2828
diff
changeset
|
37 The variable `paragraph-separate' specifies how to distinguish |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
38 lines that start paragraphs from lines that separate them. |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
39 |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
40 If the variable `use-hard-newlines' is nonnil, then only lines following a |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
41 hard newline are considered to match.") |
264 | 42 |
269 | 43 (defconst paragraph-separate "^[ \t\f]*$" "\ |
44 *Regexp for beginning of a line that separates paragraphs. | |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
45 If you change this, you may have to change paragraph-start also. |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
46 |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
47 If the variable `use-hard-newlines' is nonnil, then only lines following a |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
48 hard newline are considered to match.") |
264 | 49 |
269 | 50 (defconst sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\ |
51 *Regexp describing the end of a sentence. | |
2503
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
52 All paragraph boundaries also end sentences, regardless. |
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
53 |
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
54 In order to be recognized as the end of a sentence, the ending period, |
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
55 question mark, or exclamation point must be followed by two spaces, |
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
56 unless it's inside some sort of quotes or parenthesis.") |
264 | 57 |
269 | 58 (defconst page-delimiter "^\014" "\ |
59 *Regexp describing line-beginnings that separate pages.") | |
264 | 60 |
269 | 61 (defvar paragraph-ignore-fill-prefix nil "\ |
62 Non-nil means the paragraph commands are not affected by `fill-prefix'. | |
63 This is desirable in modes where blank lines are the paragraph delimiters.") | |
264 | 64 |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
65 (defsubst looking-at-hard (re) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
66 ;; Just for convenience in writing the function below. |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
67 (and (or (null use-hard-newlines) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
68 (bobp) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
69 (get-text-property (1- (point)) 'hard)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
70 (looking-at re))) |
36 | 71 |
72 (defun forward-paragraph (&optional arg) | |
73 "Move forward to end of paragraph. | |
5653
db6bea4e5345
(forward-paragraph): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5608
diff
changeset
|
74 With arg N, do it N times; negative arg -N means move backward N paragraphs. |
36 | 75 |
76 A line which `paragraph-start' matches either separates paragraphs | |
77 \(if `paragraph-separate' matches it also) or is the first line of a paragraph. | |
78 A paragraph end is the beginning of a line which is not part of the paragraph | |
79 to which the end of the previous line belongs, or the end of the buffer." | |
80 (interactive "p") | |
81 (or arg (setq arg 1)) | |
82 (let* ((fill-prefix-regexp | |
83 (and fill-prefix (not (equal fill-prefix "")) | |
84 (not paragraph-ignore-fill-prefix) | |
85 (regexp-quote fill-prefix))) | |
86 (paragraph-separate | |
87 (if fill-prefix-regexp | |
88 (concat paragraph-separate "\\|^" | |
89 fill-prefix-regexp "[ \t]*$") | |
90 paragraph-separate))) | |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
91 (while (and (< arg 0) (not (bobp))) |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
92 (if (and (not (looking-at-hard paragraph-separate)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
93 (re-search-backward "^\n" (max (1- (point)) (point-min)) t) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
94 (looking-at-hard paragraph-separate)) |
36 | 95 nil |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
96 ;; Move back over paragraph-separating lines. |
36 | 97 (forward-char -1) (beginning-of-line) |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
98 (while (and (not (bobp)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
99 (looking-at-hard paragraph-separate)) |
36 | 100 (forward-line -1)) |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
101 (if (bobp) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
102 nil |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
103 ;; Go to end of the previous (non-separating) line. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
104 (end-of-line) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
105 ;; Search back for line that starts or separates paragraphs. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
106 (if (if fill-prefix-regexp |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
107 ;; There is a fill prefix; it overrides paragraph-start. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
108 (progn |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
109 (while (progn (beginning-of-line) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
110 (and (not (bobp)) |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
111 (not (looking-at-hard |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
112 paragraph-separate)) |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
113 (looking-at fill-prefix-regexp))) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
114 (forward-line -1)) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
115 (not (bobp))) |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
116 (while (and (re-search-backward paragraph-start nil 1) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
117 use-hard-newlines |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
118 (not (bobp)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
119 (null (get-text-property (1- (point)) 'hard))) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
120 (if (not (bobp)) (backward-char 1))) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
121 (> (point) (point-min))) |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
122 ;; Found one. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
123 (progn |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
124 ;; Move forward over paragraph separators. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
125 ;; We know this cannot reach the place we started |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
126 ;; because we know we moved back over a non-separator. |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
127 (while (and (not (eobp)) (looking-at-hard paragraph-separate)) |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
128 (forward-line 1)) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
129 (if (eq (char-after (- (point) 2)) ?\n) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
130 (forward-line -1))) |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
131 ;; No starter or separator line => use buffer beg. |
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
132 (goto-char (point-min))))) |
36 | 133 (setq arg (1+ arg))) |
5608
c4c662362d39
(forward-paragraph): If moving back we find nothing
Richard M. Stallman <rms@gnu.org>
parents:
4585
diff
changeset
|
134 (while (and (> arg 0) (not (eobp))) |
36 | 135 (beginning-of-line) |
136 (while (prog1 (and (not (eobp)) | |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
137 (looking-at-hard paragraph-separate)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
138 (forward-line 1))) |
36 | 139 (if fill-prefix-regexp |
140 ;; There is a fill prefix; it overrides paragraph-start. | |
141 (while (and (not (eobp)) | |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
142 (not (looking-at-hard paragraph-separate)) |
36 | 143 (looking-at fill-prefix-regexp)) |
144 (forward-line 1)) | |
10464
765fe4b8deaf
(forward-paragraph): Fix end-of-buffer bug.
Richard M. Stallman <rms@gnu.org>
parents:
10424
diff
changeset
|
145 (while (and (re-search-forward paragraph-start nil 1) |
765fe4b8deaf
(forward-paragraph): Fix end-of-buffer bug.
Richard M. Stallman <rms@gnu.org>
parents:
10424
diff
changeset
|
146 (not (eobp)) |
10424
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
147 use-hard-newlines |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
148 (null (get-text-property (1- (match-beginning 0)) 'hard))) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
149 (forward-char 1)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
150 (if (< (point) (point-max)) |
6bcb93cec6f8
(forward-paragraph): Notice use-hard-newlines value.
Richard M. Stallman <rms@gnu.org>
parents:
9169
diff
changeset
|
151 (goto-char (match-beginning 0)))) |
36 | 152 (setq arg (1- arg))))) |
153 | |
154 (defun backward-paragraph (&optional arg) | |
155 "Move backward to start of paragraph. | |
156 With arg N, do it N times; negative arg -N means move forward N paragraphs. | |
157 | |
237 | 158 A paragraph start is the beginning of a line which is a |
159 `first-line-of-paragraph' or which is ordinary text and follows a | |
160 paragraph-separating line; except: if the first real line of a | |
161 paragraph is preceded by a blank line, the paragraph starts at that | |
162 blank line. | |
163 | |
164 See `forward-paragraph' for more information." | |
36 | 165 (interactive "p") |
166 (or arg (setq arg 1)) | |
167 (forward-paragraph (- arg))) | |
168 | |
169 (defun mark-paragraph () | |
170 "Put point at beginning of this paragraph, mark at end. | |
171 The paragraph marked is the one that contains point or follows point." | |
172 (interactive) | |
173 (forward-paragraph 1) | |
2827
0daa9d777306
(mark-paragraph): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2503
diff
changeset
|
174 (push-mark nil t t) |
36 | 175 (backward-paragraph 1)) |
176 | |
177 (defun kill-paragraph (arg) | |
178 "Kill forward to end of paragraph. | |
179 With arg N, kill forward to Nth end of paragraph; | |
180 negative arg -N means kill backward to Nth start of paragraph." | |
237 | 181 (interactive "p") |
7064
19a84bb30e9e
(kill-paragraph): Don't use save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
5653
diff
changeset
|
182 (kill-region (point) (progn (forward-paragraph arg) (point)))) |
36 | 183 |
184 (defun backward-kill-paragraph (arg) | |
185 "Kill back to start of paragraph. | |
186 With arg N, kill back to Nth start of paragraph; | |
187 negative arg -N means kill forward to Nth end of paragraph." | |
237 | 188 (interactive "p") |
7064
19a84bb30e9e
(kill-paragraph): Don't use save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
5653
diff
changeset
|
189 (kill-region (point) (progn (backward-paragraph arg) (point)))) |
36 | 190 |
191 (defun transpose-paragraphs (arg) | |
192 "Interchange this (or next) paragraph with previous one." | |
193 (interactive "*p") | |
194 (transpose-subr 'forward-paragraph arg)) | |
195 | |
196 (defun start-of-paragraph-text () | |
197 (let ((opoint (point)) npoint) | |
198 (forward-paragraph -1) | |
199 (setq npoint (point)) | |
200 (skip-chars-forward " \t\n") | |
68 | 201 ;; If the range of blank lines found spans the original start point, |
202 ;; try again from the beginning of it. | |
203 ;; Must be careful to avoid infinite loop | |
204 ;; when following a single return at start of buffer. | |
205 (if (and (>= (point) opoint) (< npoint opoint)) | |
36 | 206 (progn |
207 (goto-char npoint) | |
208 (if (> npoint (point-min)) | |
209 (start-of-paragraph-text)))))) | |
210 | |
211 (defun end-of-paragraph-text () | |
212 (let ((opoint (point))) | |
213 (forward-paragraph 1) | |
214 (if (eq (preceding-char) ?\n) (forward-char -1)) | |
215 (if (<= (point) opoint) | |
216 (progn | |
217 (forward-char 1) | |
218 (if (< (point) (point-max)) | |
219 (end-of-paragraph-text)))))) | |
220 | |
221 (defun forward-sentence (&optional arg) | |
2503
fb3509fdf8b7
Sat Apr 10 00:39:29 1993 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
2308
diff
changeset
|
222 "Move forward to next `sentence-end'. With argument, repeat. |
237 | 223 With negative argument, move backward repeatedly to `sentence-beginning'. |
36 | 224 |
237 | 225 The variable `sentence-end' is a regular expression that matches ends of |
226 sentences. Also, every paragraph boundary terminates sentences as well." | |
36 | 227 (interactive "p") |
228 (or arg (setq arg 1)) | |
229 (while (< arg 0) | |
230 (let ((par-beg (save-excursion (start-of-paragraph-text) (point)))) | |
231 (if (re-search-backward (concat sentence-end "[^ \t\n]") par-beg t) | |
232 (goto-char (1- (match-end 0))) | |
233 (goto-char par-beg))) | |
234 (setq arg (1+ arg))) | |
235 (while (> arg 0) | |
236 (let ((par-end (save-excursion (end-of-paragraph-text) (point)))) | |
237 (if (re-search-forward sentence-end par-end t) | |
238 (skip-chars-backward " \t\n") | |
239 (goto-char par-end))) | |
240 (setq arg (1- arg)))) | |
241 | |
242 (defun backward-sentence (&optional arg) | |
243 "Move backward to start of sentence. With arg, do it arg times. | |
237 | 244 See `forward-sentence' for more information." |
36 | 245 (interactive "p") |
246 (or arg (setq arg 1)) | |
247 (forward-sentence (- arg))) | |
248 | |
249 (defun kill-sentence (&optional arg) | |
250 "Kill from point to end of sentence. | |
251 With arg, repeat; negative arg -N means kill back to Nth start of sentence." | |
9169
edc1c9086c5c
(backward-kill-sentence): Work in read-only buffers.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
252 (interactive "p") |
7064
19a84bb30e9e
(kill-paragraph): Don't use save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
5653
diff
changeset
|
253 (kill-region (point) (progn (forward-sentence arg) (point)))) |
36 | 254 |
255 (defun backward-kill-sentence (&optional arg) | |
256 "Kill back from point to start of sentence. | |
257 With arg, repeat, or kill forward to Nth end of sentence if negative arg -N." | |
9169
edc1c9086c5c
(backward-kill-sentence): Work in read-only buffers.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
258 (interactive "p") |
7064
19a84bb30e9e
(kill-paragraph): Don't use save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
5653
diff
changeset
|
259 (kill-region (point) (progn (backward-sentence arg) (point)))) |
36 | 260 |
261 (defun mark-end-of-sentence (arg) | |
237 | 262 "Put mark at end of sentence. Arg works as in `forward-sentence'." |
36 | 263 (interactive "p") |
264 (push-mark | |
265 (save-excursion | |
266 (forward-sentence arg) | |
2828
abc6df78588f
(mark-end-of-sentence): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2827
diff
changeset
|
267 (point)) |
abc6df78588f
(mark-end-of-sentence): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2827
diff
changeset
|
268 nil t)) |
36 | 269 |
270 (defun transpose-sentences (arg) | |
271 "Interchange this (next) and previous sentence." | |
272 (interactive "*p") | |
273 (transpose-subr 'forward-sentence arg)) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
274 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
275 ;;; paragraphs.el ends here |