diff options
| author | Glenn Morris | 2018-03-07 15:41:29 -0500 |
|---|---|---|
| committer | Glenn Morris | 2018-03-07 15:41:29 -0500 |
| commit | 6bcb48cf274fb1dd290b305e0ef01fbc1dbbaf66 (patch) | |
| tree | e57f51c629df0d94b42197959ed305903020f693 /doc | |
| parent | 317da2ace54e971c788d4718874df957d3d1c549 (diff) | |
| download | emacs-6bcb48cf274fb1dd290b305e0ef01fbc1dbbaf66.tar.gz emacs-6bcb48cf274fb1dd290b305e0ef01fbc1dbbaf66.zip | |
Replace some obsolete aliases in documentation
* doc/misc/efaq-w32.texi (Incoming mail with Rmail):
* doc/misc/speedbar.texi (Major Display Modes):
* lisp/mh-e/mh-folder.el (mh-restore-desktop-buffer):
Doc fixes re obsolete aliases.
; * lisp/autoinsert.el (auto-insert):
; * lisp/ffap.el (ffap-newfile-prompt):
; * lisp/woman.el (woman-insert-file-contents): Comment fixes.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/efaq-w32.texi | 4 | ||||
| -rw-r--r-- | doc/misc/speedbar.texi | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/misc/efaq-w32.texi b/doc/misc/efaq-w32.texi index af002d7a28f..8cdf870ad64 100644 --- a/doc/misc/efaq-w32.texi +++ b/doc/misc/efaq-w32.texi | |||
| @@ -1595,7 +1595,7 @@ non-@code{nil}, you should set it to @code{nil}: | |||
| 1595 | @cindex movemail, using pop3 | 1595 | @cindex movemail, using pop3 |
| 1596 | @cindex MAILHOST | 1596 | @cindex MAILHOST |
| 1597 | @vindex rmail-primary-inbox-list | 1597 | @vindex rmail-primary-inbox-list |
| 1598 | @vindex rmail-pop-password-required | 1598 | @vindex rmail-remote-password-required |
| 1599 | 1599 | ||
| 1600 | For incoming mail using the Rmail package and a POP3 server, you will | 1600 | For incoming mail using the Rmail package and a POP3 server, you will |
| 1601 | need the following configuration: | 1601 | need the following configuration: |
| @@ -1603,7 +1603,7 @@ need the following configuration: | |||
| 1603 | @example | 1603 | @example |
| 1604 | (setenv "MAILHOST" "@var{domain.name.of.your.pop3.server}") | 1604 | (setenv "MAILHOST" "@var{domain.name.of.your.pop3.server}") |
| 1605 | (setq rmail-primary-inbox-list '("po:@var{your logon id}")) | 1605 | (setq rmail-primary-inbox-list '("po:@var{your logon id}")) |
| 1606 | (setq rmail-pop-password-required t) | 1606 | (setq rmail-remote-password-required t) |
| 1607 | @end example | 1607 | @end example |
| 1608 | 1608 | ||
| 1609 | @node Incoming mail with Gnus | 1609 | @node Incoming mail with Gnus |
diff --git a/doc/misc/speedbar.texi b/doc/misc/speedbar.texi index 1c1b014f54e..d67c4e61456 100644 --- a/doc/misc/speedbar.texi +++ b/doc/misc/speedbar.texi | |||
| @@ -979,8 +979,8 @@ With a numeric argument (@kbd{C-u}), flush cached data before expanding. | |||
| 979 | Contract the item under the cursor. | 979 | Contract the item under the cursor. |
| 980 | @end table | 980 | @end table |
| 981 | 981 | ||
| 982 | @cindex @code{speedbar-line-path} | 982 | @cindex @code{speedbar-line-directory} |
| 983 | These function require that function @code{speedbar-line-path} be | 983 | These functions require that the function @code{speedbar-line-directory} be |
| 984 | correctly overloaded to work. | 984 | correctly overloaded to work. |
| 985 | 985 | ||
| 986 | Next, register your extension like this; | 986 | Next, register your extension like this; |
| @@ -1013,14 +1013,14 @@ like this: | |||
| 1013 | (speedbar-add-mode-functions-list | 1013 | (speedbar-add-mode-functions-list |
| 1014 | '("MYEXTENSION" | 1014 | '("MYEXTENSION" |
| 1015 | (speedbar-item-info . MyExtension-speedbar-item-info) | 1015 | (speedbar-item-info . MyExtension-speedbar-item-info) |
| 1016 | (speedbar-line-path . MyExtension-speedbar-line-path))) | 1016 | (speedbar-line-directory . MyExtension-speedbar-line-directory))) |
| 1017 | @end example | 1017 | @end example |
| 1018 | 1018 | ||
| 1019 | The first element in the list is the name of you extension. The second | 1019 | The first element in the list is the name of you extension. The second |
| 1020 | is an alist of functions to overload. The function to overload is | 1020 | is an alist of functions to overload. The function to overload is |
| 1021 | first, followed by what you want called instead. | 1021 | first, followed by what you want called instead. |
| 1022 | 1022 | ||
| 1023 | For @code{speedbar-line-path} your function should take an optional DEPTH | 1023 | For @code{speedbar-line-directory} your function should take an optional DEPTH |
| 1024 | parameter. This is the starting depth for heavily indented lines. If | 1024 | parameter. This is the starting depth for heavily indented lines. If |
| 1025 | it is not provided, you can derive it like this: | 1025 | it is not provided, you can derive it like this: |
| 1026 | 1026 | ||