aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Scholtes2011-02-28 13:25:50 -0700
committerChristoph Scholtes2011-02-28 13:25:50 -0700
commitcead857b3afcf0ed0166f397cb69c478a6c368f6 (patch)
tree58bd7a376622a78298b098fc76e02b5ea3a668e0
parent0a906ec3442e226aab69ca52edd44b4cdb1386e4 (diff)
downloademacs-cead857b3afcf0ed0166f397cb69c478a6c368f6.tar.gz
emacs-cead857b3afcf0ed0166f397cb69c478a6c368f6.zip
* ido.el (ido-everywhere): Doc fix.
(ido-mode): Doc fix.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/ido.el8
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d38672c0d6b..e5abd0b93d7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-02-28 Christoph Scholtes <cschol2112@googlemail.com>
2
3 * ido.el (ido-everywhere): Doc fix.
4 (ido-mode): Doc fix.
5
12011-02-28 Glenn Morris <rgm@gnu.org> 62011-02-28 Glenn Morris <rgm@gnu.org>
2 7
3 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $. 8 * dired-x.el (dired-guess-shell-alist-default): Use \\', not $.
diff --git a/lisp/ido.el b/lisp/ido.el
index d1f2cea83f8..2e67e367a8f 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -1472,8 +1472,8 @@ Removes badly formatted data and ignored directories."
1472 (add-hook 'choose-completion-string-functions 'ido-choose-completion-string)) 1472 (add-hook 'choose-completion-string-functions 'ido-choose-completion-string))
1473 1473
1474(define-minor-mode ido-everywhere 1474(define-minor-mode ido-everywhere
1475 "Toggle using ido speed-ups everywhere file and directory names are read. 1475 "Toggle using ido-mode everywhere file and directory names are read.
1476With ARG, turn ido speed-up on if arg is positive, off otherwise." 1476With ARG, turn ido-mode on if arg is positive, off otherwise."
1477 :global t 1477 :global t
1478 :group 'ido 1478 :group 'ido
1479 (when (get 'ido-everywhere 'file) 1479 (when (get 'ido-everywhere 'file)
@@ -1494,8 +1494,8 @@ With ARG, turn ido speed-up on if arg is positive, off otherwise."
1494 1494
1495;;;###autoload 1495;;;###autoload
1496(defun ido-mode (&optional arg) 1496(defun ido-mode (&optional arg)
1497 "Toggle ido speed-ups on or off. 1497 "Toggle ido mode on or off.
1498With ARG, turn ido speed-up on if arg is positive, off otherwise. 1498With ARG, turn ido-mode on if arg is positive, off otherwise.
1499Turning on ido-mode will remap (via a minor-mode keymap) the default 1499Turning on ido-mode will remap (via a minor-mode keymap) the default
1500keybindings for the `find-file' and `switch-to-buffer' families of 1500keybindings for the `find-file' and `switch-to-buffer' families of
1501commands to the ido versions of these functions. 1501commands to the ido versions of these functions.