]> code.delx.au - gnu-emacs/commitdiff
*** empty log message ***
authorJim Blandy <jimb@redhat.com>
Wed, 10 Apr 1991 16:36:47 +0000 (16:36 +0000)
committerJim Blandy <jimb@redhat.com>
Wed, 10 Apr 1991 16:36:47 +0000 (16:36 +0000)
lisp/textmodes/page.el

index 19b29d02f08043368edbb2c42188a9ccec0b262b..576e23a756056e2f02212fd27176718ef06ed64f 100644 (file)
@@ -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)))