summaryrefslogtreecommitdiff
path: root/lisp/ido.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-01-31 15:31:15 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-01-31 15:31:15 +0000
commitccaa42ede56a265f9a9dca53bd8ccd3e44f9a7ec (patch)
treeae1dbe35f375be08dd4541736605f4229128b7cd /lisp/ido.el
parent8b6125c6cbe645ea37e0d9350c6c824aa5594b24 (diff)
downloademacs-ccaa42ede56a265f9a9dca53bd8ccd3e44f9a7ec.tar.gz
(ido-set-common-completion): Use `let', not `let*'.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r--lisp/ido.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 10418d209aa..52460574718 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -2403,8 +2403,8 @@ If cursor is not at the end of the user input, move to end of input."
(defun ido-set-common-completion ()
;; Find common completion of `ido-text' in `ido-matches'
;; The result is stored in `ido-common-match-string'
- (let* (val)
- (setq ido-common-match-string nil)
+ (let (val)
+ (setq ido-common-match-string nil)
(if (and ido-matches
(not ido-enable-regexp) ;; testing
(stringp ido-text)