Mercurial > emacs
annotate lisp/textmodes/page.el @ 1068:2fee5d1fe47e
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 01 Sep 1992 20:07:45 +0000 |
parents | 20674ae6bf52 |
children | 8f64d3122435 |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
23 ;;; Code: |
36 | 24 |
25 (defun forward-page (&optional count) | |
26 "Move forward to page boundary. With arg, repeat, or go back if negative. | |
236 | 27 A page boundary is any line whose beginning matches the regexp |
28 `page-delimiter'." | |
36 | 29 (interactive "p") |
30 (or count (setq count 1)) | |
31 (while (and (> count 0) (not (eobp))) | |
32 (if (re-search-forward page-delimiter nil t) | |
33 nil | |
34 (goto-char (point-max))) | |
35 (setq count (1- count))) | |
36 (while (and (< count 0) (not (bobp))) | |
37 (forward-char -1) | |
38 (if (re-search-backward page-delimiter nil t) | |
39 (goto-char (match-end 0)) | |
40 (goto-char (point-min))) | |
41 (setq count (1+ count)))) | |
42 | |
43 (defun backward-page (&optional count) | |
44 "Move backward to page boundary. With arg, repeat, or go fwd if negative. | |
236 | 45 A page boundary is any line whose beginning matches the regexp |
46 `page-delimiter'." | |
36 | 47 (interactive "p") |
48 (or count (setq count 1)) | |
49 (forward-page (- count))) | |
50 | |
51 (defun mark-page (&optional arg) | |
52 "Put mark at end of page, point at beginning. | |
53 A numeric arg specifies to move forward or backward by that many pages, | |
54 thus marking a page other than the one point was originally in." | |
55 (interactive "P") | |
56 (setq arg (if arg (prefix-numeric-value arg) 0)) | |
57 (if (> arg 0) | |
58 (forward-page arg) | |
59 (if (< arg 0) | |
60 (forward-page (1- arg)))) | |
61 (forward-page) | |
62 (push-mark nil t) | |
63 (forward-page -1)) | |
64 | |
65 (defun narrow-to-page (&optional arg) | |
66 "Make text outside current page invisible. | |
67 A numeric arg specifies to move forward or backward by that many pages, | |
68 thus showing a page other than the one point was originally in." | |
69 (interactive "P") | |
70 (setq arg (if arg (prefix-numeric-value arg) 0)) | |
71 (save-excursion | |
72 (widen) | |
73 (if (> arg 0) | |
74 (forward-page arg) | |
75 (if (< arg 0) | |
76 (forward-page (1- arg)))) | |
77 ;; Find the end of the page. | |
78 (forward-page) | |
79 ;; If we stopped due to end of buffer, stay there. | |
80 ;; If we stopped after a page delimiter, put end of restriction | |
81 ;; at the beginning of that line. | |
82 (if (save-excursion (beginning-of-line) | |
83 (looking-at page-delimiter)) | |
84 (beginning-of-line)) | |
85 (narrow-to-region (point) | |
86 (progn | |
87 ;; Find the top of the page. | |
88 (forward-page -1) | |
89 ;; If we found beginning of buffer, stay there. | |
90 ;; If extra text follows page delimiter on same line, | |
91 ;; include it. | |
92 ;; Otherwise, show text starting with following line. | |
93 (if (and (eolp) (not (bobp))) | |
94 (forward-line 1)) | |
95 (point))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
96 (put 'narrow-to-page 'disabled t) |
36 | 97 |
98 (defun count-lines-page () | |
99 "Report number of lines on current page, and how many are before or after point." | |
100 (interactive) | |
101 (save-excursion | |
102 (let ((opoint (point)) beg end | |
103 total before after) | |
104 (forward-page) | |
105 (beginning-of-line) | |
106 (or (looking-at page-delimiter) | |
107 (end-of-line)) | |
108 (setq end (point)) | |
109 (backward-page) | |
110 (setq beg (point)) | |
111 (setq total (count-lines beg end) | |
112 before (count-lines beg opoint) | |
113 after (count-lines opoint end)) | |
114 (message "Page has %d lines (%d + %d)" total before after)))) | |
115 | |
116 (defun what-page () | |
117 "Print page and line number of point." | |
118 (interactive) | |
119 (save-restriction | |
120 (widen) | |
121 (save-excursion | |
122 (beginning-of-line) | |
123 (let ((count 1) | |
124 (opoint (point))) | |
125 (goto-char 1) | |
126 (while (re-search-forward page-delimiter opoint t) | |
127 (setq count (1+ count))) | |
128 (message "Page %d, line %d" | |
129 count | |
130 (1+ (count-lines (point) opoint))))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
131 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
236
diff
changeset
|
132 ;;; page.el ends here |