From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lars Ingebrigtsen Newsgroups: gmane.emacs.bugs Subject: bug#16553: 24.3.50; `file-truename' returns a cons? (wrong-type-argument stringp (...)) Date: Sun, 09 Feb 2014 19:44:48 -0800 Message-ID: <87ob2ffx73.fsf@building.gnus.org> References: > > <83txcqaazz.fsf@gnu.org>> <8ea26242-db04-4456-b4dd-3680fbd76949@default> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1392004030 8803 80.91.229.3 (10 Feb 2014 03:47:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Feb 2014 03:47:10 +0000 (UTC) Cc: 16553@debbugs.gnu.org To: Drew Adams Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Feb 10 04:47:18 2014 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WChpz-0001Kb-MF for geb-bug-gnu-emacs@m.gmane.org; Mon, 10 Feb 2014 04:47:15 +0100 Original-Received: from localhost ([::1]:53173 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WChpz-0001uv-9W for geb-bug-gnu-emacs@m.gmane.org; Sun, 09 Feb 2014 22:47:15 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WChpr-0001nN-0b for bug-gnu-emacs@gnu.org; Sun, 09 Feb 2014 22:47:11 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WChpm-0002PI-26 for bug-gnu-emacs@gnu.org; Sun, 09 Feb 2014 22:47:06 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:47430) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WChpl-0002PE-US for bug-gnu-emacs@gnu.org; Sun, 09 Feb 2014 22:47:01 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1WChpl-0008Ce-OY for bug-gnu-emacs@gnu.org; Sun, 09 Feb 2014 22:47:01 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 10 Feb 2014 03:47:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 16553 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: moreinfo Original-Received: via spool by 16553-submit@debbugs.gnu.org id=B16553.139200398131464 (code B ref 16553); Mon, 10 Feb 2014 03:47:01 +0000 Original-Received: (at 16553) by debbugs.gnu.org; 10 Feb 2014 03:46:21 +0000 Original-Received: from localhost ([127.0.0.1]:33213 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WChp3-0008BN-EH for submit@debbugs.gnu.org; Sun, 09 Feb 2014 22:46:21 -0500 Original-Received: from hermes.netfonds.no ([80.91.224.195]:51075) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WChp1-0008BF-P7 for 16553@debbugs.gnu.org; Sun, 09 Feb 2014 22:46:16 -0500 Original-Received: from [204.14.154.233] (helo=building.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1WChon-0005LF-HA; Mon, 10 Feb 2014 04:46:01 +0100 In-Reply-To: <8ea26242-db04-4456-b4dd-3680fbd76949@default> (Drew Adams's message of "Sun, 26 Jan 2014 10:33:04 -0800 (PST)") User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.3.50 (gnu/linux) X-MailScanner-ID: 1WChon-0005LF-HA MailScanner-NULL-Check: 1392608762.00477@84mwT0hIQV4uIsMXltDSmQ X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org 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 Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:85163 Archived-At: Drew Adams writes: >> Isn't it possible that you have that weird cons cell in your >> load-history? help-fns--autoloaded-p does this: >> >> (while (and load-hist (not found)) >> (and (caar load-hist) >> (equal (file-name-sans-extension (caar load-hist)) file) >> >> So if some element in load-history is that cons cell, this code >> will call file-name-sans-extension on that cons cell. > > Yes. Bravo and thank you once again, Eli. I was wondering about > that cons. I think you nailed it. (That cons would not be an > entry, however, but the car of an entry, for the error to occur.) This doesn't seem likely to be an Emacs bug. Closing, but please reopen if it turns out to still be a problem. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/