From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Emacs 21 Date: Tue, 21 Apr 2009 14:19:38 +0200 Message-ID: <87ws9e2o85.fsf@kassiopeya.MSHEIMNETZ> References: <2D9AC1DA-4055-4C73-AA89-C76111E1C76C@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LwEte-0002Dt-05 for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:16:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LwEtY-0002Ct-Cw for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:16:16 -0400 Received: from [199.232.76.173] (port=38596 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LwEtY-0002Cp-8A for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:16:12 -0400 Received: from mail.gmx.net ([213.165.64.20]:46400) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1LwEtX-0002bo-N6 for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:16:12 -0400 In-Reply-To: <2D9AC1DA-4055-4C73-AA89-C76111E1C76C@uva.nl> (Carsten Dominik's message of "Tue, 21 Apr 2009 14:03:40 +0200") 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: Carsten Dominik Cc: emacs-orgmode Mailing List Hm - the only function we now use from the url package is `url-unhex'. That is just: (defun url-unhex (x) (if (> x ?9) (if (>= x ?a) (+ 10 (- x ?a)) (+ 10 (- x ?A))) (- x ?0))) As it's only 6 lines of code: How would we define the function if the package is not present? Sebastian Carsten Dominik writes: > Hi, > > I was just notified that Org-mode no longer installs properly on > Emacs 21. The reason for this is that org-protocol.el requires > the url.el package which apparently does not exist in Emacs 21. > > While you can > > - run uncompiled Org on Emacs 21 without using org-protocol > - try to find url.el for Emacs 21 > > and while I will not willingly break compatibility in other places, > I will from today stop the official support for Emacs 21. Also the > website now says that Emacs 22 is a requirement for Org-mode to > function properly. > > - Carsten > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode