From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Mastro Newsgroups: gmane.emacs.help Subject: Re: Correct Paths to Emacs C Sources after Installation Date: Mon, 3 Nov 2014 16:24:17 -0800 Message-ID: References: <834mugvw5w.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1415060707 7656 80.91.229.3 (4 Nov 2014 00:25:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Nov 2014 00:25:07 +0000 (UTC) Cc: Alexander Shukaev To: "help-gnu-emacs@gnu.org" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 04 01:25:01 2014 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 1XlRvg-0003gN-SE for geh-help-gnu-emacs@m.gmane.org; Tue, 04 Nov 2014 01:25:01 +0100 Original-Received: from localhost ([::1]:37902 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlRvg-0001Rw-E0 for geh-help-gnu-emacs@m.gmane.org; Mon, 03 Nov 2014 19:25:00 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlRvO-0001Hr-HP for help-gnu-emacs@gnu.org; Mon, 03 Nov 2014 19:24:43 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XlRvK-0002Jg-Mo for help-gnu-emacs@gnu.org; Mon, 03 Nov 2014 19:24:42 -0500 Original-Received: from mail-ob0-x235.google.com ([2607:f8b0:4003:c01::235]:65444) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlRvK-0002JV-HV for help-gnu-emacs@gnu.org; Mon, 03 Nov 2014 19:24:38 -0500 Original-Received: by mail-ob0-f181.google.com with SMTP id uy5so10098347obc.12 for ; Mon, 03 Nov 2014 16:24:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=cNRv7sa7ucbpK0ti02Pda0wVMdzIdQ1a5Ntdwhxa9Xw=; b=t9upPWVuZvtaPuy+yqHM1VxAPxPlSQUfiqSnaDK1JW8X49RVxrcK/O9RQCnk7V+5Pm RjtxxTdhE3l+wRJoHJ/QhPYVAs7NcFqUe9xPYgRMuZT01fH9YyolRhKJvq0oyWgiSUe8 tmlF9d75hkuaMko0I29Et3YA1rEaxD90txboDqd/cpuBW6RHB762xyDJe7fpDIfHyBIc 6pVrUkALgG1zZuMqm5cVmEsKkUkUdt3RD3yKia5oYol5TW0homQxuQCLJrEBeySl3VcZ OF0B/216qHW/KcWon0bhSRvIAcXqW5hTusAm7yTl5w92+kelK+MbtQUEQEuMsZZuDERe c/cg== X-Received: by 10.60.45.206 with SMTP id p14mr39067548oem.38.1415060677427; Mon, 03 Nov 2014 16:24:37 -0800 (PST) Original-Received: by 10.76.125.194 with HTTP; Mon, 3 Nov 2014 16:24:17 -0800 (PST) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c01::235 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:100707 Archived-At: Alexander Shukaev wrote: > Once again. I want to play around with interactive documentation feature of > Emacs, i.e. clicking `C source code' links when searching for some > implementation details. That would be particularly cool for people who like > to hack on Emacs and actually, as I understand it, that's why such > interactive feature was introduced in the first place. I just put the following in my init file: (let ((source (format "~/src/emacs/emacs-%s/" emacs-version))) (when (file-directory-p source) (setq source-directory source))) -- john