From: Juanma Barranquero Date: Wed, 31 Jan 2007 15:31:15 +0000 (+0000) Subject: (ido-set-common-completion): Use `let', not `let*'. X-Git-Tag: emacs-pretest-22.0.94~480 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ccaa42ede56a265f9a9dca53bd8ccd3e44f9a7ec;p=emacs.git (ido-set-common-completion): Use `let', not `let*'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9e7e5bef7fb..3385b372283 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-31 Juanma Barranquero + + * ido.el (ido-set-common-completion): Use `let', not `let*'. + 2007-01-31 Romain Francoise * comint.el: Delete extra copy of `comint-copy-old-input' added in 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)