Mercurial > emacs
changeset 236:25644943fb13
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 10 Apr 1991 16:36:47 +0000 |
parents | c7cad852d5b4 |
children | 75cec14894db |
files | lisp/textmodes/page.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)))