From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Emacs 21 Date: Tue, 21 Apr 2009 14:25:01 +0200 Message-ID: <0B646F72-472A-4FBD-80B0-9EA070554A28@uva.nl> References: <2D9AC1DA-4055-4C73-AA89-C76111E1C76C@uva.nl> <87ws9e2o85.fsf@kassiopeya.MSHEIMNETZ> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LwF2F-0004aQ-Ky for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:25:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LwF2A-0004Yb-Uq for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:25:11 -0400 Received: from [199.232.76.173] (port=44299 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LwF2A-0004YU-IA for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:25:06 -0400 Received: from mail-qy0-f116.google.com ([209.85.221.116]:33274) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LwF2A-0004Yu-5b for emacs-orgmode@gnu.org; Tue, 21 Apr 2009 08:25:06 -0400 Received: by qyk14 with SMTP id 14so4450153qyk.14 for ; Tue, 21 Apr 2009 05:25:05 -0700 (PDT) In-Reply-To: <87ws9e2o85.fsf@kassiopeya.MSHEIMNETZ> 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: Sebastian Rose Cc: emacs-orgmode Mailing List , Carsten Dominik On Apr 21, 2009, at 2:19 PM, Sebastian Rose wrote: > > > 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? (defun org-protocol-url-unhex (x) (if (> x ?9) (if (>= x ?a) (+ 10 (- x ?a)) (+ 10 (- x ?A))) (- x ?0))) OK, lets remove it. I'll wait for the patch. Still, official Emacs 21 support will stop. - Carsten > > > 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