Also load for .sgm and .dtd files.
[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
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
edbd2f74
ER
23;;; Commentary:
24
25;; This code provides the page-oriented movement and selection commands
26;; documented in the Emacs manual.
27
e5167999 28;;; Code:
a2535589
JA
29
30(defun forward-page (&optional count)
31 "Move forward to page boundary. With arg, repeat, or go back if negative.
fa8a7944
JB
32A page boundary is any line whose beginning matches the regexp
33`page-delimiter'."
a2535589
JA
34 (interactive "p")
35 (or count (setq count 1))
36 (while (and (> count 0) (not (eobp)))
07f4ea75
RS
37 ;; In case the page-delimiter matches the null string,
38 ;; don't find a match without moving.
39 (if (bolp) (forward-char 1))
a2535589
JA
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)
944fa80a
RS
46 (let (result (end (point)))
47 ;; If we find a match that ends where we started searching,
48 ;; look for another one.
49 (while (and (setq result (re-search-backward page-delimiter nil t))
50 (= (match-end 0) end))
51 ;; Just search again.
52 )
53 (if result
54 ;; We found one--move to the end of it.
55 (goto-char (match-end 0))
56 ;; We found nothing--go to beg of buffer.
57 (goto-char (point-min))))
a2535589
JA
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.
fa8a7944
JB
62A page boundary is any line whose beginning matches the regexp
63`page-delimiter'."
a2535589
JA
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.
70A numeric arg specifies to move forward or backward by that many pages,
71thus 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)
6be72a0b 79 (push-mark nil t t)
a2535589
JA
80 (forward-page -1))
81
82(defun narrow-to-page (&optional arg)
83 "Make text outside current page invisible.
84A numeric arg specifies to move forward or backward by that many pages,
85thus 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.
8105b77e
RS
99 (if (save-excursion
100 (goto-char (match-beginning 0)) ; was (beginning-of-line)
101 (looking-at page-delimiter))
a2535589
JA
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)))))
6594deb0 114(put 'narrow-to-page 'disabled t)
a2535589
JA
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)))))))
8105b77e
RS
149\f
150;;; Place `provide' at end of file.
151(provide 'page)
6594deb0
ER
152
153;;; page.el ends here