From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: How to get the last version of org-mode supporting emacs21? Date: Wed, 02 Jun 2010 10:18:12 -0400 Message-ID: <874ohla57f.fsf@gollum.intra.norang.ca> References: <87hbllq101.fsf@eee.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=59392 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OJom7-0006Pp-3D for emacs-orgmode@gnu.org; Wed, 02 Jun 2010 10:18:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OJoly-00024c-Am for emacs-orgmode@gnu.org; Wed, 02 Jun 2010 10:18:30 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:57765) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OJoly-00024K-8f for emacs-orgmode@gnu.org; Wed, 02 Jun 2010 10:18:22 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Mikael Fornius , Steinar Bang Cc: emacs-orgmode@gnu.org Mikael Fornius writes: > I found it in the git log, it says says: > > --8<---------------cut here---------------start------------->8--- > commit 31858e5c39404cf2bc745fe05f59c7ce6816db74 > Author: Carsten Dominik > Date: Tue Apr 21 14:00:24 2009 +0200 > > End of Emacs 21 support. > > commit e0cd12716ac8202d4b5c764dfb57d5d7725be73a > Author: Carsten Dominik > Date: Tue Apr 21 10:21:36 2009 +0200 > > Release 6.26b > --8<---------------cut here---------------end--------------->8--- > > So I think using release 6.26b would be recommended. I think you should > clone the git repo and use the command > > git reset --hard e0cd12716ac8202d4b5c764dfb57d5d7725be73a > > before make. Don't do that. That will move your current branch tip to that commit and throw away all of your current changes (if any) in the working directory. If you just want to visit and use the old version do git checkout release_6.26b instead. The tag 'release_6.26b' is commit e0cd12716ac8202d4b5c764dfb57d5d7725be73a. If you want to make changes on top of release_6.26b then create a new branch instead with git checkout -b emacs21 release_6.26b (naming the branch whatever you like instead of emacs21) HTH, Bernt