Mercurial > emacs
changeset 75573:8ddc4d84085e
(ido-set-common-completion): Use `let', not `let*'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 31 Jan 2007 15:29:22 +0000 |
parents | 6d4a346af5e8 |
children | f53866952ab7 |
files | lisp/ido.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ido.el Wed Jan 31 15:24:49 2007 +0000 +++ b/lisp/ido.el Wed Jan 31 15:29:22 2007 +0000 @@ -2403,8 +2403,8 @@ (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)