(reftex-customize): Added call to customize browse.
[bpt/emacs.git] / lisp / textmodes / page.el
CommitLineData
6594deb0
ER
1;;; page.el --- page motion commands for emacs.
2
a2535589
JA
3;; Copyright (C) 1985 Free Software Foundation, Inc.
4
3a801d0c
ER
5;; Maintainer: FSF
6
a2535589
JA
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
e5167999 11;; the Free Software Foundation; either version 2, or (at your option)
a2535589
JA
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
b578f267
EN
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.
a2535589 23
edbd2f74
ER
24;;; Commentary:
25
26;; This code provides the page-oriented movement and selection commands
27;; documented in the Emacs manual.
28
e5167999 29;;; Code:
a2535589
JA
30
31(defun forward-page (&optional count)
32 "Move forward to page boundary. With arg, repeat, or go back if negative.
fa8a7944
JB
33A page boundary is any line whose beginning matches the regexp
34`page-delimiter'."
a2535589
JA
35 (interactive "p")
36 (or count (setq count 1))
37 (while (and (> count 0) (not (eobp)))
07f4ea75
RS
38 ;; In case the page-delimiter matches the null string,
39 ;; don't find a match without moving.
40 (if (bolp) (forward-char 1))
a2535589
JA
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)))
b69863f2
RS
46 ;; In case the page-delimiter matches the null string,
47 ;; don't find a match without moving.
48 (and (save-excursion (re-search-backward page-delimiter nil t))
49 (= (match-end 0) (point))
50 (goto-char (match-beginning 0)))
a2535589 51 (forward-char -1)
b69863f2
RS
52 (if (re-search-backward page-delimiter nil t)
53 ;; We found one--move to the end of it.
54 (goto-char (match-end 0))
55 ;; We found nothing--go to beg of buffer.
56 (goto-char (point-min)))
a2535589
JA
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.
fa8a7944
JB
61A page boundary is any line whose beginning matches the regexp
62`page-delimiter'."
a2535589
JA
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.
69A numeric arg specifies to move forward or backward by that many pages,
70thus 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)
6be72a0b 78 (push-mark nil t t)
a2535589
JA
79 (forward-page -1))
80
81(defun narrow-to-page (&optional arg)
82 "Make text outside current page invisible.
83A numeric arg specifies to move forward or backward by that many pages,
84thus 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)
cb70d915
RS
92 (let ((adjust 0)
93 (opoint (point)))
94 ;; If we are not now at the beginning of a page,
95 ;; move back one extra time, to get to the start of this page.
96 (save-excursion
97 (beginning-of-line)
98 (or (and (looking-at page-delimiter)
99 (eq (match-end 0) opoint))
100 (setq adjust 1)))
101 (forward-page (- arg adjust)))))
a2535589
JA
102 ;; Find the end of the page.
103 (forward-page)
104 ;; If we stopped due to end of buffer, stay there.
105 ;; If we stopped after a page delimiter, put end of restriction
106 ;; at the beginning of that line.
8105b77e
RS
107 (if (save-excursion
108 (goto-char (match-beginning 0)) ; was (beginning-of-line)
109 (looking-at page-delimiter))
a2535589
JA
110 (beginning-of-line))
111 (narrow-to-region (point)
112 (progn
113 ;; Find the top of the page.
114 (forward-page -1)
115 ;; If we found beginning of buffer, stay there.
116 ;; If extra text follows page delimiter on same line,
117 ;; include it.
118 ;; Otherwise, show text starting with following line.
119 (if (and (eolp) (not (bobp)))
120 (forward-line 1))
121 (point)))))
6594deb0 122(put 'narrow-to-page 'disabled t)
a2535589
JA
123
124(defun count-lines-page ()
125 "Report number of lines on current page, and how many are before or after point."
126 (interactive)
127 (save-excursion
128 (let ((opoint (point)) beg end
129 total before after)
130 (forward-page)
131 (beginning-of-line)
132 (or (looking-at page-delimiter)
133 (end-of-line))
134 (setq end (point))
135 (backward-page)
136 (setq beg (point))
137 (setq total (count-lines beg end)
138 before (count-lines beg opoint)
139 after (count-lines opoint end))
140 (message "Page has %d lines (%d + %d)" total before after))))
141
142(defun what-page ()
143 "Print page and line number of point."
144 (interactive)
145 (save-restriction
146 (widen)
147 (save-excursion
148 (beginning-of-line)
149 (let ((count 1)
150 (opoint (point)))
151 (goto-char 1)
152 (while (re-search-forward page-delimiter opoint t)
153 (setq count (1+ count)))
154 (message "Page %d, line %d"
155 count
156 (1+ (count-lines (point) opoint)))))))
8105b77e
RS
157\f
158;;; Place `provide' at end of file.
159(provide 'page)
6594deb0
ER
160
161;;; page.el ends here