From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jonathan Yanver Newsgroups: gmane.emacs.bugs Subject: try-completion is inconsistent when completion-ignore-case=t Date: Mon, 23 Feb 2004 16:45:34 -0500 Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <200402232145.i1NLjYK07480@ws-rh73-05.franklin.com> Reply-To: jonathan_yavner@franklin.com NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1077572856 5353 80.91.224.253 (23 Feb 2004 21:47:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 Feb 2004 21:47:36 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Feb 23 22:47:27 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AvNvD-0003X8-00 for ; Mon, 23 Feb 2004 22:47:27 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1AvNuB-0007oy-QN for geb-bug-gnu-emacs@m.gmane.org; Mon, 23 Feb 2004 16:46:23 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1AvNu5-0007k1-Qn for bug-gnu-emacs@gnu.org; Mon, 23 Feb 2004 16:46:17 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1AvNtT-0007Qx-Ns for bug-gnu-emacs@gnu.org; Mon, 23 Feb 2004 16:46:10 -0500 Original-Received: from [63.88.59.84] (helo=opal.franklin.com) by monty-python.gnu.org with esmtp (Exim 4.30) id 1AvNtT-0007Qd-AC for bug-gnu-emacs@gnu.org; Mon, 23 Feb 2004 16:45:39 -0500 Original-Received: from ws-rh73-05.franklin.com (ws-rh73-05 [192.9.200.163]) by opal.franklin.com (8.12.10+Sun/8.12.10) with ESMTP id i1NLjbMH025716 for ; Mon, 23 Feb 2004 16:45:37 -0500 (EST) Original-Received: (from jon@localhost) by ws-rh73-05.franklin.com (8.11.6/8.9.3) id i1NLjYK07480 for bug-gnu-emacs@gnu.org; Mon, 23 Feb 2004 16:45:34 -0500 Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 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: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:7061 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:7061 This bug report will be sent to the Free Software Foundation, not to your local site managers! Please write in English, because the Emacs maintainers do not have translators to read other languages for them. Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list, and to the gnu.emacs.bug news group. In GNU Emacs 21.1.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2002-03-22 on ws-rh006.franklin.com configured using `configure --exec-prefix=/vol/emacs/pkgs/emacs21.1/i686 --prefix=/vol/emacs/pkgs/emacs21.1 --with-pop --with-xpm --with-jpeg --with-tiff --with-gif --with-png' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US.iso885915 locale-coding-system: iso-latin-9 default-enable-multibyte-characters: nil Please describe exactly what actions triggered the bug and the precise symptoms of the bug: (let ((x '(("TestOne") ("TestTwo"))) (completion-ignore-case t)) (print (try-completion "tes" x)) ;A (print (try-completion "test" x)) ;B nil) Results: A = "Test" B = "test" I think that B should be "Test". Same problem when x is an obarray. Same problem in HEAD rev of Emacs CVS archive.