From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John J Foerch Newsgroups: gmane.emacs.bugs Subject: completing-read Date: Mon, 19 Feb 2007 11:53:42 -0500 Message-ID: <87ejomccmh.fsf@earthlink.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1171906839 28416 80.91.229.12 (19 Feb 2007 17:40:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 19 Feb 2007 17:40:39 +0000 (UTC) To: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Feb 19 18:40:28 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HJCUv-00030k-N0 for geb-bug-gnu-emacs@m.gmane.org; Mon, 19 Feb 2007 18:40:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HJCUv-0000Eo-Aa for geb-bug-gnu-emacs@m.gmane.org; Mon, 19 Feb 2007 12:40:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HJCUt-0000EX-9b for bug-gnu-emacs@gnu.org; Mon, 19 Feb 2007 12:40:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HJCUr-0000EL-SU for bug-gnu-emacs@gnu.org; Mon, 19 Feb 2007 12:40:19 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HJCUr-0000EI-Q7 for bug-gnu-emacs@gnu.org; Mon, 19 Feb 2007 12:40:17 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HJCUr-0007qD-C0 for bug-gnu-emacs@gnu.org; Mon, 19 Feb 2007 12:40:17 -0500 Original-Received: from root by ciao.gmane.org with local (Exim 4.43) id 1HJCUc-0001Qk-2T for bug-gnu-emacs@gnu.org; Mon, 19 Feb 2007 18:40:02 +0100 Original-Received: from dialup-4.158.210.62.dial1.chicago1.level3.net ([4.158.210.62]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Feb 2007 18:40:02 +0100 Original-Received: from jjfoerch by dialup-4.158.210.62.dial1.chicago1.level3.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Feb 2007 18:40:02 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 13 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: dialup-4.158.210.62.dial1.chicago1.level3.net User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.91 (gnu/linux) Cancel-Lock: sha1:CbajaLez4KKhiqcU/0HvDUZykf8= X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:15594 Archived-At: Hello, The following code exhibits a behavior of completing-read that I would call a bug. Or am I missing something? (let ((table '((foo . "you selected foo") (foobar . "you selected foobar")))) (completing-read "Symbol: " table nil 'require-match)) The unexpected behavior is that it is impossible to select `foo'. Thanks, John Foerch