summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sperber <sperber@deinprogramm.de>2010-05-24 13:41:57 +0000
committerJohn Wiegley <johnw@newartisans.com>2010-05-26 22:43:43 -0600
commit8b174b0d368e981846fe20dbbc9afcd105dd7d8f (patch)
treef80acb534ea4d740fdc0d80e2cb40ee34396ace7
parent2b08e18b93403ac265e3412886419993ff1ad2f0 (diff)
downloadorg-mode-8b174b0d368e981846fe20dbbc9afcd105dd7d8f.tar.gz
PATCH: Fix minor XEmacs compatibility issue
I'd appreciate if this one could be applied. I'll fix XEmacs to accept #B<binary> in the future, but I'd appreciate this one anyway. Doesn't really add complexity ...
-rw-r--r--lisp/org-id.el4
1 files changed, 2 insertions, 2 deletions
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)