aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/page.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index 19b29d02f08..576e23a7560 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -20,7 +20,8 @@
20 20
21(defun forward-page (&optional count) 21(defun forward-page (&optional count)
22 "Move forward to page boundary. With arg, repeat, or go back if negative. 22 "Move forward to page boundary. With arg, repeat, or go back if negative.
23A page boundary is any line whose beginning matches the regexp page-delimiter." 23A page boundary is any line whose beginning matches the regexp
24`page-delimiter'."
24 (interactive "p") 25 (interactive "p")
25 (or count (setq count 1)) 26 (or count (setq count 1))
26 (while (and (> count 0) (not (eobp))) 27 (while (and (> count 0) (not (eobp)))
@@ -37,7 +38,8 @@ A page boundary is any line whose beginning matches the regexp page-delimiter."
37 38
38(defun backward-page (&optional count) 39(defun backward-page (&optional count)
39 "Move backward to page boundary. With arg, repeat, or go fwd if negative. 40 "Move backward to page boundary. With arg, repeat, or go fwd if negative.
40A page boundary is any line whose beginning matches the regexp page-delimiter." 41A page boundary is any line whose beginning matches the regexp
42`page-delimiter'."
41 (interactive "p") 43 (interactive "p")
42 (or count (setq count 1)) 44 (or count (setq count 1))
43 (forward-page (- count))) 45 (forward-page (- count)))