diff options
| author | Glenn Morris | 2015-06-15 20:40:41 -0400 |
|---|---|---|
| committer | Glenn Morris | 2015-06-15 20:40:41 -0400 |
| commit | 2f1f014b931ff570554522f17ae687cc8163c415 (patch) | |
| tree | ef55648d18abbb51314a2395df1960e305aece74 | |
| parent | b95f53f0383b5df82e0b711f5027881950893f4f (diff) | |
| download | emacs-2f1f014b931ff570554522f17ae687cc8163c415.tar.gz emacs-2f1f014b931ff570554522f17ae687cc8163c415.zip | |
* lisp/textmodes/page-ext.el (add-new-page, pages-directory)
(pages-directory-for-addresses): Doc fixes.
| -rw-r--r-- | lisp/textmodes/page-ext.el | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lisp/textmodes/page-ext.el b/lisp/textmodes/page-ext.el index 3781c98546d..d3bd33e98f0 100644 --- a/lisp/textmodes/page-ext.el +++ b/lisp/textmodes/page-ext.el | |||
| @@ -345,14 +345,13 @@ If point is in the pages directory buffer, insert the new page in the | |||
| 345 | buffer associated with the directory. | 345 | buffer associated with the directory. |
| 346 | 346 | ||
| 347 | Insert the new page just before current page if | 347 | Insert the new page just before current page if |
| 348 | pages-directory-for-adding-new-page-before-current-page-p variable | 348 | `pages-directory-for-adding-new-page-before-current-page-p' is non-nil. |
| 349 | is non-nil. Else insert at exact location of point. | 349 | Else insert at exact location of point. |
| 350 | 350 | ||
| 351 | Narrow to new page if | 351 | Narrow to new page if `pages-directory-for-adding-page-narrowing-p' is |
| 352 | pages-directory-for-adding-page-narrowing-p variable | 352 | non-nil. |
| 353 | is non-nil. | ||
| 354 | 353 | ||
| 355 | Page begins with a `^L' as the default page-delimiter. | 354 | Page begins with a '^L' as the default `page-delimiter'. |
| 356 | Use \\[set-page-delimiter] to change the page-delimiter. | 355 | Use \\[set-page-delimiter] to change the page-delimiter. |
| 357 | Point is left in the body of page." | 356 | Point is left in the body of page." |
| 358 | (interactive "sHeader line: ") | 357 | (interactive "sHeader line: ") |
| @@ -516,7 +515,7 @@ resets the page-delimiter to the original value." | |||
| 516 | (defun pages-directory | 515 | (defun pages-directory |
| 517 | (pages-list-all-headers-p count-lines-p &optional regexp) | 516 | (pages-list-all-headers-p count-lines-p &optional regexp) |
| 518 | "Display a directory of the page headers in a temporary buffer. | 517 | "Display a directory of the page headers in a temporary buffer. |
| 519 | A header is the first non-blank line after the page-delimiter. | 518 | A header is the first non-blank line after the `page-delimiter'. |
| 520 | \\[pages-directory-mode] | 519 | \\[pages-directory-mode] |
| 521 | You may move point to one of the lines in the temporary buffer, | 520 | You may move point to one of the lines in the temporary buffer, |
| 522 | then use \\<pages-directory-goto> to go to the same line in the pages buffer. | 521 | then use \\<pages-directory-goto> to go to the same line in the pages buffer. |
| @@ -752,10 +751,10 @@ Move point to one of the lines in the displayed directory, | |||
| 752 | then use \\[pages-directory-goto] to go to the same line | 751 | then use \\[pages-directory-goto] to go to the same line |
| 753 | in the addresses buffer. | 752 | in the addresses buffer. |
| 754 | 753 | ||
| 755 | If pages-directory-for-addresses-goto-narrowing-p is non-nil, | 754 | If `pages-directory-for-addresses-goto-narrowing-p' is non-nil, |
| 756 | `pages-directory-goto' narrows addresses buffer to entry. | 755 | `pages-directory-goto' narrows addresses buffer to entry. |
| 757 | 756 | ||
| 758 | If pages-directory-for-addresses-buffer-keep-windows-p is nil, | 757 | If `pages-directory-for-addresses-buffer-keep-windows-p' is nil, |
| 759 | this command deletes other windows when it displays the addresses | 758 | this command deletes other windows when it displays the addresses |
| 760 | directory." | 759 | directory." |
| 761 | 760 | ||