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