From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.help Subject: Re: Emacs Lisp: jumping to a definition? Date: Wed, 2 Sep 2009 13:42:11 +0200 Message-ID: References: <08081834-08e7-4597-8e1c-bc46927b6e49@k39g2000yqe.googlegroups.com> <7c4orlpp3i.fsf@pbourguignon.anevia.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1251891855 3977 80.91.229.12 (2 Sep 2009 11:44:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 2 Sep 2009 11:44:15 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Pascal J. Bourguignon" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 02 13:44:08 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MioF1-0003Ke-8P for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Sep 2009 13:43:07 +0200 Original-Received: from localhost ([127.0.0.1]:56418 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MioEz-0004tp-VY for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Sep 2009 07:43:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MioEZ-0004q0-5e for help-gnu-emacs@gnu.org; Wed, 02 Sep 2009 07:42:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MioES-0004oT-Hq for help-gnu-emacs@gnu.org; Wed, 02 Sep 2009 07:42:36 -0400 Original-Received: from [199.232.76.173] (port=34781 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MioES-0004oK-CO for help-gnu-emacs@gnu.org; Wed, 02 Sep 2009 07:42:32 -0400 Original-Received: from mail-yx0-f192.google.com ([209.85.210.192]:38676) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MioES-0005k8-1w for help-gnu-emacs@gnu.org; Wed, 02 Sep 2009 07:42:32 -0400 Original-Received: by yxe30 with SMTP id 30so1194967yxe.24 for ; Wed, 02 Sep 2009 04:42:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=FWKKim8hm1q1Mx+bJlrhOInOem7l9nFUzzYy/sEtZOc=; b=Adu36ehcSu6PM1OnwFj9jGq+uUU56zMFhBQvf6xa3YQwB/mwBKF8hf5eg8Kkea0R3w FIjrIIfejULJgCA2zMNe/yCoHFYOM+NHui2Q1wdQS5HVoIT1/4sdL/pthUBo90leOEkX ujO5js+DvGkbaYQu5qh2LVjmG/P5Q0MjUyJio= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=eZyL623+YIVC1o4VK5byDwnhc7HEPf+fVjeMGBmbIF7Xl+ABv3uO/e4lDzobY9c5eO E7pOluGT/iVH5sV+EDtRz1iLxBQAT6Ki0Htuddn23tIVqxfbkeSXjQRRymW4BgFNh3Sz tlCZ3RJnY1Dt6mSIZafAKBVeDtIJTILh1CHMw= Original-Received: by 10.101.10.13 with SMTP id n13mr9040332ani.88.1251891751426; Wed, 02 Sep 2009 04:42:31 -0700 (PDT) In-Reply-To: <7c4orlpp3i.fsf@pbourguignon.anevia.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:67740 Archived-At: On Wed, Sep 2, 2009 at 1:23 PM, Pascal J. Bourguignon wrote: > Elena writes: >> how do you jump to the definition of function/variable at point while >> editing Emacs Lisp code? >> >> Currently I use "C-h f", then I follow the link showed into the >> function/variable documentation. Is there a way to achieve that with a >> single command? > > Of course, it's possible, but I wouldn't advise it. =C2=A0It's good to go > thru the documentation from time to time... The documentation in elisp is where the code is.