]> git.eshelyaron.com Git - emacs.git/commitdiff
Replace some obsolete aliases in documentation
authorGlenn Morris <rgm@gnu.org>
Wed, 7 Mar 2018 20:41:29 +0000 (15:41 -0500)
committerGlenn Morris <rgm@gnu.org>
Wed, 7 Mar 2018 20:41:29 +0000 (15:41 -0500)
* 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.

doc/misc/efaq-w32.texi
doc/misc/speedbar.texi
lisp/autoinsert.el
lisp/ffap.el
lisp/mh-e/mh-folder.el
lisp/woman.el

index af002d7a28fa74280309542bd77b88680bdbeded..8cdf870ad649085fffcea8faa11f5b895217a2ec 100644 (file)
@@ -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
index 1c1b014f54e4a83edbfa7a2b73ab5bb6592f8f55..d67c4e61456f78e8b0a25864085e79bab88b9bb9 100644 (file)
@@ -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:
 
index f2ca52b1a19e49832e21331b539be7599313f384..dfa5b6030687778e18c9dcbb74a23d205ac7a807 100644 (file)
@@ -386,7 +386,7 @@ Matches the visited file name against the elements of `auto-insert-alist'."
              (not (eq this-command 'auto-insert))
              (set-buffer-modified-p (eq auto-insert t)))))
   ;; Return nil so that it could be used in
-  ;; `find-file-not-found-hooks', though that's probably inadvisable.
+  ;; `find-file-not-found-functions', though that's probably inadvisable.
   nil)
 
 
index 4e479d1b82bf1000f49875921a06c57901d3bc55..22be2f85369ac98881754f7ff21026e820fabb69 100644 (file)
@@ -248,7 +248,7 @@ it passes it on to `dired'."
 
 (defcustom ffap-newfile-prompt nil
   ;; Suggestion from RHOGEE, 11 Jul 1994.  Disabled, I think this is
-  ;; better handled by `find-file-not-found-hooks'.
+  ;; better handled by `find-file-not-found-functions'.
   "Whether `find-file-at-point' prompts about a nonexistent file."
   :type 'boolean
   :group 'ffap)
index 23cc2baab798b306a7d89c2f04798a2ed50f1440..82e28e8741de155f11164054e0cccd39e66b48b0 100644 (file)
@@ -88,7 +88,7 @@ the MH mail system."
 When desktop creates a buffer, DESKTOP-BUFFER-FILE-NAME holds the
 file name to visit, DESKTOP-BUFFER-NAME holds the desired buffer
 name, and DESKTOP-BUFFER-MISC holds a list of miscellaneous info
-used by the `desktop-buffer-handlers' functions."
+used by the `desktop-buffer-mode-handlers' functions."
   (mh-find-path)
   (mh-visit-folder desktop-buffer-name)
   (current-buffer))
index 73f18b0dd6ac2832a6c4454b37c3f6ee2b2ef43a..533f14674abfe945e556ce64b5b63ab3665037f6 100644 (file)
@@ -1759,8 +1759,8 @@ Leave point at end of new text.  Return length of inserted text."
           (condition-case ()
               (insert-file-contents filename nil)
             (file-error
-             ;; Run find-file-not-found-hooks until one returns non-nil.
-             ;; (run-hook-with-args-until-success 'find-file-not-found-hooks)
+             ;; Run find-file-not-found-functions until one returns non-nil.
+             ;; (run-hook-with-args-until-success 'find-file-not-found-functions)
              (insert "\n***** File " filename " not found! *****\n\n")))))))
 
 \f