diff options
Diffstat (limited to 'doc/misc')
-rw-r--r-- | doc/misc/efaq-w32.texi | 4 | ||||
-rw-r--r-- | doc/misc/efaq.texi | 2 | ||||
-rw-r--r-- | doc/misc/speedbar.texi | 8 |
3 files changed, 7 insertions, 7 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}: @cindex movemail, using pop3 @cindex MAILHOST @vindex rmail-primary-inbox-list -@vindex rmail-pop-password-required +@vindex rmail-remote-password-required For incoming mail using the Rmail package and a POP3 server, you will need the following configuration: @@ -1603,7 +1603,7 @@ need the following configuration: @example (setenv "MAILHOST" "@var{domain.name.of.your.pop3.server}") (setq rmail-primary-inbox-list '("po:@var{your logon id}")) -(setq rmail-pop-password-required t) +(setq rmail-remote-password-required t) @end example @node Incoming mail with Gnus diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index e1575f592bf..d657ba64c40 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi @@ -4340,7 +4340,7 @@ fontset, or you can select it by setting the default font in your @file{~/.emacs}: @lisp - (set-default-font "fontset-bdf") + (set-frame-font "fontset-bdf") @end lisp 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. Contract the item under the cursor. @end table -@cindex @code{speedbar-line-path} -These function require that function @code{speedbar-line-path} be +@cindex @code{speedbar-line-directory} +These functions require that the function @code{speedbar-line-directory} be correctly overloaded to work. Next, register your extension like this; @@ -1013,14 +1013,14 @@ like this: (speedbar-add-mode-functions-list '("MYEXTENSION" (speedbar-item-info . MyExtension-speedbar-item-info) - (speedbar-line-path . MyExtension-speedbar-line-path))) + (speedbar-line-directory . MyExtension-speedbar-line-directory))) @end example The first element in the list is the name of you extension. The second is an alist of functions to overload. The function to overload is first, followed by what you want called instead. -For @code{speedbar-line-path} your function should take an optional DEPTH +For @code{speedbar-line-directory} your function should take an optional DEPTH parameter. This is the starting depth for heavily indented lines. If it is not provided, you can derive it like this: |