+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
(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)