# HG changeset patch # User Jim Blandy # Date 671301407 0 # Node ID 25644943fb13393bf3fb19c107dd0ad9f41a147b # Parent c7cad852d5b4599812f22b686960dcb1125f5aed *** empty log message *** diff -r c7cad852d5b4 -r 25644943fb13 lisp/textmodes/page.el --- a/lisp/textmodes/page.el Wed Apr 10 16:35:52 1991 +0000 +++ b/lisp/textmodes/page.el Wed Apr 10 16:36:47 1991 +0000 @@ -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 @@ (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)))