From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Barton Subject: Re: documentation versions question Date: Thu, 23 Jun 2011 15:42:33 +0100 Message-ID: <4E0350D9.7030900@wilkesley.net> References: Reply-To: lists@manor-farm.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:46842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZl79-0001i9-KC for emacs-orgmode@gnu.org; Thu, 23 Jun 2011 10:42:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZl78-0007gG-AW for emacs-orgmode@gnu.org; Thu, 23 Jun 2011 10:42:39 -0400 Received: from mail.ian-barton.com ([109.74.196.44]:47140 helo=li40-130.members.linode.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZl77-0007fW-U0 for emacs-orgmode@gnu.org; Thu, 23 Jun 2011 10:42:38 -0400 Received: from localhost (mail.wilkesley.org [127.0.0.1]) by li40-130.members.linode.com (Postfix) with ESMTP id 5BD0D15A04F for ; Thu, 23 Jun 2011 14:42:34 +0000 (UTC) Received: from li40-130.members.linode.com ([127.0.0.1]) by localhost (mail.manor-farm.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vZGp2TorF7Fv for ; Thu, 23 Jun 2011 14:42:34 +0000 (UTC) Received: from [192.168.0.133] (unknown [217.146.125.41]) (Authenticated sender: ian@manor-farm.org) by li40-130.members.linode.com (Postfix) with ESMTPSA id 1F08715A04B for ; Thu, 23 Jun 2011 14:42:34 +0000 (UTC) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 23/06/11 10:54, Jude DaShiell wrote: > Once git pull has been run and the build of org and documentation have > been done and installed, should info org provide the org version of 6.33x? > Also, orgguide doesn't get added to my info files is it supposed to be > held separate for some reason? orgguide has version of 7.50 on it and I > expect that's correct too. > > > If you are running Linux, this depends on your distribution. The problem is that Emacs is probably looking in a different place for the info file to the place where the Makefile installed it. My inelegant approach is to define a keyboard macro that points to the place where the Makefile installed the info file: (global-set-key (kbd " i") (lambda () (interactive) (info "~/dropbox/.emacs.d/src/org-mode/doc/org"))) A more subtle approach would be to edit the Makefile to put the info file in the right place. However, on Ubuntu it's not all clear where this should be. Ian.