Browse Source

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 ...
Michael Sperber 15 years ago
parent
commit
8b174b0d36
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-id.el

+ 2 - 2
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)