From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: `C-h f' doesn't show file where function comes from Date: Fri, 05 Sep 2008 09:57:27 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1220576271 32641 80.91.229.12 (5 Sep 2008 00:57:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 5 Sep 2008 00:57:51 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 05 02:58:46 2008 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 1KbPev-0007DB-0d for ged-emacs-devel@m.gmane.org; Fri, 05 Sep 2008 02:58:45 +0200 Original-Received: from localhost ([127.0.0.1]:34619 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KbPdv-0001qN-L3 for ged-emacs-devel@m.gmane.org; Thu, 04 Sep 2008 20:57:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KbPdr-0001q8-9n for emacs-devel@gnu.org; Thu, 04 Sep 2008 20:57:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KbPdq-0001pu-4s for emacs-devel@gnu.org; Thu, 04 Sep 2008 20:57:38 -0400 Original-Received: from [199.232.76.173] (port=48814 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KbPdp-0001pr-VB for emacs-devel@gnu.org; Thu, 04 Sep 2008 20:57:37 -0400 Original-Received: from orlando.hostforweb.net ([216.246.45.90]:45694) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KbPdp-0005D9-Mn for emacs-devel@gnu.org; Thu, 04 Sep 2008 20:57:37 -0400 Original-Received: from localhost ([127.0.0.1]:56321) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1KbPdl-0002ZO-0t for emacs-devel@gnu.org; Thu, 04 Sep 2008 19:57:33 -0500 X-Hashcash: 1:20:080905:emacs-devel@gnu.org::xmQMH/AUMiVIUK/i:0000000000000000000000000000000000000000007giB X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:nCFIbKlXlAXrkuasklOaqDtGTVk= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:103541 Archived-At: Hi, When I start Emacs with emacs -Q -l wid-edit and type C-h f widget-button-press RET Emacs 22.2.92 shows: --8<---------------cut here---------------start------------->8--- widget-button-press is an interactive compiled Lisp function in `/local/share/emacs/22.2.92/lisp/wid-edit.elc'. (widget-button-press pos &optional event) Invoke button at pos. --8<---------------cut here---------------end--------------->8--- However, Emacs 23.0.60 shows: --8<---------------cut here---------------start------------->8--- widget-button-press is an interactive compiled Lisp function. (widget-button-press pos &optional event) Invoke button at pos. --8<---------------cut here---------------end--------------->8--- Why do those results differ? The way of Emacs 23.0.60 is inconvenient to me. I need to evaluate (symbol-file 'FN) when I want to know where the file providing the function definition is. Regards,