]> git.eshelyaron.com Git - emacs.git/commitdiff
(ido-set-common-completion): Use `let', not `let*'.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 31 Jan 2007 15:31:15 +0000 (15:31 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 31 Jan 2007 15:31:15 +0000 (15:31 +0000)
lisp/ChangeLog
lisp/ido.el

index 9e7e5bef7fb8ab54be2b34eff7c42a9f9c7f55f6..3385b372283aa166bdb1d1069b61bba997750321 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
+
+       * ido.el (ido-set-common-completion): Use `let', not `let*'.
+
 2007-01-31  Romain Francoise  <romain@orebokech.com>
 
        * comint.el: Delete extra copy of `comint-copy-old-input' added in
index 10418d209aa41d0b6f48d9cd1e96cea337b7638f..5246057471895b4e87536d7480895ceba2dbc8e2 100644 (file)
@@ -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)