From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleksandr Gavenko Newsgroups: gmane.emacs.help Subject: Re: Show who is requiring Date: Sat, 17 Nov 2012 11:43:57 +0200 Organization: Oleksandr Gavenko , http://gavenkoa.users.sf.net Message-ID: <874nko36oy.fsf@gavenkoa.example.com> References: <80d2zd87t0.fsf@somewhere.org> <87k3tktyya.fsf@bzg.ath.cx> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1353145459 25634 80.91.229.3 (17 Nov 2012 09:44:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 17 Nov 2012 09:44:19 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 17 10:44:30 2012 Return-path: Envelope-to: geh-help-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 1TZeww-0005Yn-3u for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Nov 2012 10:44:30 +0100 Original-Received: from localhost ([::1]:56992 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZewm-0001sX-4E for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Nov 2012 04:44:20 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:33068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZewf-0001rf-CY for help-gnu-emacs@gnu.org; Sat, 17 Nov 2012 04:44:16 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TZewc-00085E-A7 for help-gnu-emacs@gnu.org; Sat, 17 Nov 2012 04:44:13 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:56176) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZewc-000857-3P for help-gnu-emacs@gnu.org; Sat, 17 Nov 2012 04:44:10 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TZewk-0005OR-AK for help-gnu-emacs@gnu.org; Sat, 17 Nov 2012 10:44:18 +0100 Original-Received: from 37.229.16.202 ([37.229.16.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 17 Nov 2012 10:44:18 +0100 Original-Received: from gavenkoa by 37.229.16.202 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 17 Nov 2012 10:44:18 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 22 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 37.229.16.202 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) Cancel-Lock: sha1:2jXmt9CzAllTMRFjg+ERjs06FSc= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:87740 Archived-At: On 2012-11-17, Bastien wrote: >> I tried using (current-buffer) to get the name of the "source" package >> (i.e., the one which makes the `require' request), but that's wrong. Any >> idea how to get the name of the "caller" package? > > Check this out: > > C-h f find-lisp-object-file-name RET Why instead of: (symbol-file 'c-mode) use: (find-lisp-object-file-name 'c-mode (symbol-function 'c-mode)) ?? -- Best regards!