aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-03-31 16:03:46 +0000
committerJuanma Barranquero2006-03-31 16:03:46 +0000
commita2cf021231c3b92e457bd53ff3abcb452b9c61ce (patch)
treef12e7be72ad5fc1a275752e5328589ff07a59ac2
parentab1921073fe48bbceb17683b4da0a8402285907f (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lisp/ido.el8
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 @@
12006-03-31 Juanma Barranquero <lekktu@gmail.com> 12006-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
72006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 82006-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.
895When `ido-everywhere' is non-nil, the commands in this list will read 895When `ido-everywhere' is non-nil, the commands in this list will read
896the directory using `ido-read-directory-name'." 896the 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.
1703Return the name of a buffer or file selected. 1703Return the name of a buffer or file selected.
1704PROMPT is the prompt to give to the user. 1704PROMPT is the prompt to give to the user.
1705DEFAULT if given is the default directory to start with. 1705DEFAULT 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)