0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-20 07:56:28 +00:00

Fixed unknown variable in `org-timestamp-change'.

`org-time-stamp-rounding-minutes-when-changing' was renamed
to `org-time-stamp-rounding-minutes'.

Require 'cl at run-time, because of explicit calls to `signum'.
This commit is contained in:
Bastien Guerry 2008-03-03 16:22:31 +00:00
parent c5662d689a
commit 2f8bf4cb63

4
org.el
View file

@ -66,8 +66,8 @@
;;;; Require other packages
(require 'cl)
(eval-when-compile
(require 'cl)
(require 'gnus-sum)
(require 'calendar))
;; For XEmacs, noutline is not yet provided by outline.el, so arrange for
@ -18534,7 +18534,7 @@ The date will be changed by N times WHAT. WHAT can be `day', `month',
in the timestamp determines what will be changed."
(let ((pos (point))
with-hm inactive
(dm (max (nth 1 org-time-stamp-rounding-minutes-when-changing) 1))
(dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
org-ts-what
extra rem
ts time time0)