summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2008-03-03 16:22:31 +0000
committerBastien Guerry <bzg@altern.org>2008-03-03 16:22:31 +0000
commit2f8bf4cb63b5cba3188896831ce9bacce00b1661 (patch)
tree670367d514177b4f9a25110cfe0b60fdeea0c162
parentc5662d689aada3d321f6f0e59a200e7bef546522 (diff)
downloadorg-mode-2f8bf4cb63b5cba3188896831ce9bacce00b1661.tar.gz
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'.
-rw-r--r--org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.el b/org.el
index ed9da37..36866f2 100644
--- a/org.el
+++ b/org.el
@@ -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)