From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Leo Newsgroups: gmane.emacs.devel Subject: delq string element in ido Date: Sat, 26 Dec 2009 10:49:16 +0000 Organization: University of Cambridge Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1261824607 3425 80.91.229.12 (26 Dec 2009 10:50:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 26 Dec 2009 10:50:07 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 26 11:50:00 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NOUDa-0004Bh-79 for ged-emacs-devel@m.gmane.org; Sat, 26 Dec 2009 11:49:54 +0100 Original-Received: from localhost ([127.0.0.1]:47370 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOUDa-000886-D4 for ged-emacs-devel@m.gmane.org; Sat, 26 Dec 2009 05:49:54 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NOUDT-00087t-A8 for emacs-devel@gnu.org; Sat, 26 Dec 2009 05:49:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NOUDN-000876-Nj for emacs-devel@gnu.org; Sat, 26 Dec 2009 05:49:46 -0500 Original-Received: from [199.232.76.173] (port=48295 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOUDN-000870-Gj for emacs-devel@gnu.org; Sat, 26 Dec 2009 05:49:41 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:39412) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NOUDN-0006sj-0G for emacs-devel@gnu.org; Sat, 26 Dec 2009 05:49:41 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.50) id 1NOUDJ-000460-JK for emacs-devel@gnu.org; Sat, 26 Dec 2009 11:49:37 +0100 Original-Received: from smaug.linux.pwf.cam.ac.uk ([193.60.95.72]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 26 Dec 2009 11:49:37 +0100 Original-Received: from sdl.web by smaug.linux.pwf.cam.ac.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 26 Dec 2009 11:49:37 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 10 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: smaug.linux.pwf.cam.ac.uk User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:MpxQiYvWfSziSmuuo4Sh6PjWvFA= X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:118819 Archived-At: In function `ido-kill-buffer-at-head', there's this form (delq buf ido-cur-list) where buf is a string and ido-cur-list is a list of strings. I get this by stepping through this function and checking the values of buf and ido-cur-list. But delq uses `eq' to compare. Any idea why this function still succeeds? Leo