From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Sperber Subject: PATCH: Fix minor XEmacs compatibility issue Date: Mon, 24 May 2010 10:41:57 +0200 Message-ID: References: <7z632uzu5k.fsf@vzell-de.de.oracle.com> <7z1vd67cwp.fsf@vzell-de.de.oracle.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from [140.186.70.92] (port=51474 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGTEY-0004ls-72 for emacs-orgmode@gnu.org; Mon, 24 May 2010 04:42:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OGTEV-0006xN-M7 for emacs-orgmode@gnu.org; Mon, 24 May 2010 04:42:02 -0400 Received: from h615406.serverkompetenz.net ([81.169.143.132]:49995) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGTEV-0006x4-3T for emacs-orgmode@gnu.org; Mon, 24 May 2010 04:41:59 -0400 Received: from h615406.serverkompetenz.net (localhost [127.0.0.1]) by h615406.serverkompetenz.net (Postfix) with ESMTP id 30FFE17072 for ; Mon, 24 May 2010 08:41:58 +0000 (UTC) Received: from eta.local (p5B20604F.dip.t-dialin.net [91.32.96.79]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by h615406.serverkompetenz.net (Postfix) with ESMTPSA id E30DA17066 for ; Mon, 24 May 2010 08:41:57 +0000 (UTC) In-Reply-To: <7z1vd67cwp.fsf@vzell-de.de.oracle.com> (Volker Zell's message of "Thu, 20 May 2010 18:31:34 +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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable I'd appreciate if this one could be applied. I'll fix XEmacs to accept #B in the future, but I'd appreciate this one anyway. Doesn't really add complexity ... --=20 Cheers =3D8-} Mike Friede, V=F6lkerverst=E4ndigung und =FCberhaupt blabla --=-=-= Content-Disposition: inline diff --git a/lisp/org-id.el b/lisp/org-id.el index 66b1790..cf61f8a 100644 --- a/lisp/org-id.el +++ b/lisp/org-id.el @@ -330,9 +330,9 @@ So a typical ID could look like \"Org:4nd91V40HI\"." (substring rnd 13 16) (format "%x" (logior - #B10000000 + #b10000000 (logand - #B10111111 + #b10111111 (string-to-number (substring rnd 16 18) 16)))) (substring rnd 18 20) --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--