[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Orgmode] Org-mode version 4.75
From: |
Carsten Dominik |
Subject: |
Re: [Orgmode] Org-mode version 4.75 |
Date: |
Wed, 30 May 2007 06:29:28 +0200 |
On May 30, 2007, at 5:47, Ruslan Kosolapov wrote:
1. Function org-store-agenda-views works only after:
$ diff -u org.el.orig org.el
--- org.el.orig 2007-05-28 12:34:43.000000000 +0700
+++ org.el 2007-05-28 12:35:02.000000000 +0700
@@ -14531,7 +14531,7 @@
;;;###autoload
(defun org-store-agenda-views (&rest parameters)
(interactive)
- (funcall (intern "org-batch-store-agenda-views")))
+ (org-batch-store-agenda-views))
CD> If I do this, then I sometimes get problems during byte
CD> compilation.
Wow %-)
I don't understand how it possible. Maybe this is a bug in emacs?
No. org-batch-store-agenda-views is a macro, and when it is defined at
the moment of byte compilation, it will be *evaluated* at byte
compilation. I must be doing something stupid, don't know exactly why.
btw, my emacs (22.0.95.1, emacs-snapshot-20070303) compile org.el
with warning:
In org-get-entries-from-diary:
org.el:15439:10:Warning: `list-diary-entries' is an obsolete function;
use `diary-list-entries' instead
Yes. In XEmacs, diary-list-entries does not exist, so I am using the
obsolete name to fit both Emacs dialects.
- Carsten