summaryrefslogtreecommitdiff
path: root/lisp/textmodes/page.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1991-04-10 16:36:47 +0000
committerJim Blandy <jimb@redhat.com>1991-04-10 16:36:47 +0000
commit944074111fe448161cbfa046ba4fa47bf4731a71 (patch)
tree7449bf5e4c943151ab741d4dea53dc341f784458 /lisp/textmodes/page.el
parent2ee93b17f2703d058b509ed0b2ba427aa798328e (diff)
downloademacs-944074111fe448161cbfa046ba4fa47bf4731a71.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/textmodes/page.el')
-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 @@
(defun forward-page (&optional count)
"Move forward to page boundary. With arg, repeat, or go back if negative.
-A page boundary is any line whose beginning matches the regexp page-delimiter."
+A page boundary is any line whose beginning matches the regexp
+`page-delimiter'."
(interactive "p")
(or count (setq count 1))
(while (and (> count 0) (not (eobp)))
@@ -37,7 +38,8 @@ A page boundary is any line whose beginning matches the regexp page-delimiter."
(defun backward-page (&optional count)
"Move backward to page boundary. With arg, repeat, or go fwd if negative.
-A page boundary is any line whose beginning matches the regexp page-delimiter."
+A page boundary is any line whose beginning matches the regexp
+`page-delimiter'."
(interactive "p")
(or count (setq count 1))
(forward-page (- count)))