Merge branch 'maint'

This commit is contained in:
Bastien Guerry 2012-09-03 13:31:50 +02:00
commit 5681a04cc2
2 changed files with 7 additions and 1 deletions

View File

@ -460,6 +460,12 @@ With two arguments, return floor and remainder of their quotient."
(defun org-release () "N/A")
(defun org-git-version () "N/A !!check installation!!"))))))
(defun org-random ()
"Call ̀random' appropriately."
(if (or (featurep 'xemacs) (version< emacs-version "24.2.50.1"))
(random t)
(random)))
(provide 'org-compat)
;;; org-compat.el ends here

View File

@ -317,7 +317,7 @@ So a typical ID could look like \"Org:4nd91V40HI\"."
(defun org-id-uuid ()
"Return string with random (version 4) UUID."
(let ((rnd (md5 (format "%s%s%s%s%s%s%s"
(random t)
(org-random)
(current-time)
(user-uid)
(emacs-pid)