Mercurial > emacs
annotate lisp/textmodes/page.el @ 15453:ad4f0ac5e7ef
(smtpmail-via-smtp): Bracket names in FROM and RCPT TO commands.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 18 Jun 1996 22:39:51 +0000 |
parents | 83f275dcd93a |
children | 521d5794ac2b |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
1 ;;; page.el --- page motion commands for emacs. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
36 | 6 |
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:
659
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 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 | |
14169 | 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
36 | 23 |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1080
diff
changeset
|
24 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1080
diff
changeset
|
25 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1080
diff
changeset
|
26 ;; This code provides the page-oriented movement and selection commands |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1080
diff
changeset
|
27 ;; documented in the Emacs manual. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1080
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
29 ;;; Code: |
36 | 30 |
31 (defun forward-page (&optional count) | |
32 "Move forward to page boundary. With arg, repeat, or go back if negative. | |
236 | 33 A page boundary is any line whose beginning matches the regexp |
34 `page-delimiter'." | |
36 | 35 (interactive "p") |
36 (or count (setq count 1)) | |
37 (while (and (> count 0) (not (eobp))) | |
1080 | 38 ;; In case the page-delimiter matches the null string, |
39 ;; don't find a match without moving. | |
40 (if (bolp) (forward-char 1)) | |
36 | 41 (if (re-search-forward page-delimiter nil t) |
42 nil | |
43 (goto-char (point-max))) | |
44 (setq count (1- count))) | |
45 (while (and (< count 0) (not (bobp))) | |
14160
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
46 ;; In case the page-delimiter matches the null string, |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
47 ;; don't find a match without moving. |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
48 (and (save-excursion (re-search-backward page-delimiter nil t)) |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
49 (= (match-end 0) (point)) |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
50 (goto-char (match-beginning 0))) |
36 | 51 (forward-char -1) |
14160
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
52 (if (re-search-backward page-delimiter nil t) |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
53 ;; We found one--move to the end of it. |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
54 (goto-char (match-end 0)) |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
55 ;; We found nothing--go to beg of buffer. |
d85151c5699d
(forward-page): Simplify how we avoid getting stuck when moving backwards.
Richard M. Stallman <rms@gnu.org>
parents:
8751
diff
changeset
|
56 (goto-char (point-min))) |
36 | 57 (setq count (1+ count)))) |
58 | |
59 (defun backward-page (&optional count) | |
60 "Move backward to page boundary. With arg, repeat, or go fwd if negative. | |
236 | 61 A page boundary is any line whose beginning matches the regexp |
62 `page-delimiter'." | |
36 | 63 (interactive "p") |
64 (or count (setq count 1)) | |
65 (forward-page (- count))) | |
66 | |
67 (defun mark-page (&optional arg) | |
68 "Put mark at end of page, point at beginning. | |
69 A numeric arg specifies to move forward or backward by that many pages, | |
70 thus marking a page other than the one point was originally in." | |
71 (interactive "P") | |
72 (setq arg (if arg (prefix-numeric-value arg) 0)) | |
73 (if (> arg 0) | |
74 (forward-page arg) | |
75 (if (< arg 0) | |
76 (forward-page (1- arg)))) | |
77 (forward-page) | |
2825
bddd28afcc26
(mark-page): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
78 (push-mark nil t t) |
36 | 79 (forward-page -1)) |
80 | |
81 (defun narrow-to-page (&optional arg) | |
82 "Make text outside current page invisible. | |
83 A numeric arg specifies to move forward or backward by that many pages, | |
84 thus showing a page other than the one point was originally in." | |
85 (interactive "P") | |
86 (setq arg (if arg (prefix-numeric-value arg) 0)) | |
87 (save-excursion | |
88 (widen) | |
89 (if (> arg 0) | |
90 (forward-page arg) | |
91 (if (< arg 0) | |
92 (forward-page (1- arg)))) | |
93 ;; Find the end of the page. | |
94 (forward-page) | |
95 ;; If we stopped due to end of buffer, stay there. | |
96 ;; If we stopped after a page delimiter, put end of restriction | |
97 ;; at the beginning of that line. | |
5022 | 98 (if (save-excursion |
99 (goto-char (match-beginning 0)) ; was (beginning-of-line) | |
100 (looking-at page-delimiter)) | |
36 | 101 (beginning-of-line)) |
102 (narrow-to-region (point) | |
103 (progn | |
104 ;; Find the top of the page. | |
105 (forward-page -1) | |
106 ;; If we found beginning of buffer, stay there. | |
107 ;; If extra text follows page delimiter on same line, | |
108 ;; include it. | |
109 ;; Otherwise, show text starting with following line. | |
110 (if (and (eolp) (not (bobp))) | |
111 (forward-line 1)) | |
112 (point))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
113 (put 'narrow-to-page 'disabled t) |
36 | 114 |
115 (defun count-lines-page () | |
116 "Report number of lines on current page, and how many are before or after point." | |
117 (interactive) | |
118 (save-excursion | |
119 (let ((opoint (point)) beg end | |
120 total before after) | |
121 (forward-page) | |
122 (beginning-of-line) | |
123 (or (looking-at page-delimiter) | |
124 (end-of-line)) | |
125 (setq end (point)) | |
126 (backward-page) | |
127 (setq beg (point)) | |
128 (setq total (count-lines beg end) | |
129 before (count-lines beg opoint) | |
130 after (count-lines opoint end)) | |
131 (message "Page has %d lines (%d + %d)" total before after)))) | |
132 | |
133 (defun what-page () | |
134 "Print page and line number of point." | |
135 (interactive) | |
136 (save-restriction | |
137 (widen) | |
138 (save-excursion | |
139 (beginning-of-line) | |
140 (let ((count 1) | |
141 (opoint (point))) | |
142 (goto-char 1) | |
143 (while (re-search-forward page-delimiter opoint t) | |
144 (setq count (1+ count))) | |
145 (message "Page %d, line %d" | |
146 count | |
147 (1+ (count-lines (point) opoint))))))) | |
5022 | 148 |
149 ;;; Place `provide' at end of file. | |
150 (provide 'page) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
151 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
152 ;;; page.el ends here |