From ccaa42ede56a265f9a9dca53bd8ccd3e44f9a7ec Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 31 Jan 2007 15:31:15 +0000 Subject: [PATCH] (ido-set-common-completion): Use `let', not `let*'. --- lisp/ChangeLog | 4 ++++ lisp/ido.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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) -- 2.39.2