diff options
| author | Juanma Barranquero | 2006-03-31 16:03:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-03-31 16:03:46 +0000 |
| commit | a2cf021231c3b92e457bd53ff3abcb452b9c61ce (patch) | |
| tree | f12e7be72ad5fc1a275752e5328589ff07a59ac2 | |
| parent | ab1921073fe48bbceb17683b4da0a8402285907f (diff) | |
| download | emacs-a2cf021231c3b92e457bd53ff3abcb452b9c61ce.tar.gz emacs-a2cf021231c3b92e457bd53ff3abcb452b9c61ce.zip | |
(ido-report-no-match, ido-switch-buffer,
ido-read-file-name-as-directory-commands): Fix typos in docstrings.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ido.el | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4de14734ef9..bba6b2f0564 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | 2006-03-31 Juanma Barranquero <lekktu@gmail.com> | 1 | 2006-03-31 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * ido.el (ido-cache-unc-host-shares-time) | 3 | * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match) |
| 4 | (ido-max-work-file-list, ido-switch-buffer): | 4 | (ido-max-work-file-list, ido-switch-buffer) |
| 5 | (ido-read-file-name-as-directory-commands): | ||
| 5 | Fix typos in docstrings. | 6 | Fix typos in docstrings. |
| 6 | 7 | ||
| 7 | 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 8 | 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
diff --git a/lisp/ido.el b/lisp/ido.el index 3bf717e521f..3de76a36e07 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -891,7 +891,7 @@ Must be set before enabling ido mode." | |||
| 891 | :group 'ido) | 891 | :group 'ido) |
| 892 | 892 | ||
| 893 | (defcustom ido-read-file-name-as-directory-commands '() | 893 | (defcustom ido-read-file-name-as-directory-commands '() |
| 894 | "List of commands which uses read-file-name to read a directory name. | 894 | "List of commands which uses `read-file-name' to read a directory name. |
| 895 | When `ido-everywhere' is non-nil, the commands in this list will read | 895 | When `ido-everywhere' is non-nil, the commands in this list will read |
| 896 | the directory using `ido-read-directory-name'." | 896 | the directory using `ido-read-directory-name'." |
| 897 | :type '(repeat symbol) | 897 | :type '(repeat symbol) |
| @@ -988,7 +988,7 @@ Copied from `icomplete-eoinput'.") | |||
| 988 | "List of files currently matching `ido-text'.") | 988 | "List of files currently matching `ido-text'.") |
| 989 | 989 | ||
| 990 | (defvar ido-report-no-match t | 990 | (defvar ido-report-no-match t |
| 991 | "Report [No Match] when no completions matches ido-text.") | 991 | "Report [No Match] when no completions matches `ido-text'.") |
| 992 | 992 | ||
| 993 | (defvar ido-exit nil | 993 | (defvar ido-exit nil |
| 994 | "Flag to monitor how `ido-find-file' exits. | 994 | "Flag to monitor how `ido-find-file' exits. |
| @@ -1699,7 +1699,7 @@ With ARG, turn ido speed-up on if arg is positive, off otherwise." | |||
| 1699 | ;; the relevant function is called (find-file, write-file, etc). | 1699 | ;; the relevant function is called (find-file, write-file, etc). |
| 1700 | 1700 | ||
| 1701 | (defun ido-read-internal (item prompt history &optional default require-match initial) | 1701 | (defun ido-read-internal (item prompt history &optional default require-match initial) |
| 1702 | "Perform the ido-read-buffer and ido-read-file-name functions. | 1702 | "Perform the `ido-read-buffer' and `ido-read-file-name' functions. |
| 1703 | Return the name of a buffer or file selected. | 1703 | Return the name of a buffer or file selected. |
| 1704 | PROMPT is the prompt to give to the user. | 1704 | PROMPT is the prompt to give to the user. |
| 1705 | DEFAULT if given is the default directory to start with. | 1705 | DEFAULT if given is the default directory to start with. |
| @@ -3757,7 +3757,7 @@ in a separate window. | |||
| 3757 | \\[ido-toggle-prefix] Toggle between substring and prefix matching. | 3757 | \\[ido-toggle-prefix] Toggle between substring and prefix matching. |
| 3758 | \\[ido-toggle-case] Toggle case-sensitive searching of buffer names. | 3758 | \\[ido-toggle-case] Toggle case-sensitive searching of buffer names. |
| 3759 | \\[ido-completion-help] Show list of matching buffers in separate window. | 3759 | \\[ido-completion-help] Show list of matching buffers in separate window. |
| 3760 | \\[ido-enter-find-file] Drop into ido-find-file. | 3760 | \\[ido-enter-find-file] Drop into `ido-find-file'. |
| 3761 | \\[ido-kill-buffer-at-head] Kill buffer at head of buffer list. | 3761 | \\[ido-kill-buffer-at-head] Kill buffer at head of buffer list. |
| 3762 | \\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'." | 3762 | \\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'." |
| 3763 | (interactive) | 3763 | (interactive) |