Hi Miro,
you are right, and this is now fixed.
Thanks!
- Carsten
On 7.9.2013, at 23:39, Miro Bezjak wrote:
> Dear Carsten,
>
> actually forget my previous fix attempt. There is a better way. Here
> is what I did to org.el to make it work.
>
>
> (defvar org-read-date
Dear Carsten,
actually forget my previous fix attempt. There is a better way. Here
is what I did to org.el to make it work.
(defvar org-read-date-minibuffer-local-map
(let* ((org-replace-disputed-keys nil)
(map (make-sparse-keymap)))
... rest unchanged ...
---
Dear Carsten,
sorry for not responding sooner. I've been on holiday and didn't see your
messages.
Unfortunately, setting `org-replace-disputed-keys' to `nil' inside
`org-read-date' doesn't work. The reason is:
`org-read-date-minibuffer-local-map' is a defvar - thus, it has already been
evaluated
Hi Miro,
I have implemented this.
Please test and make sure it works.
Regards
- Carsten
On 15.5.2013, at 11:37, Miro Bezjak wrote:
> Hi all,
>
> for orgmode 7.9.x I had the following defadvice.
>
>
> (defadvice org-read-date (around my-no-disputed-keys activate)
> "Ignore org-replac
On 15.5.2013, at 11:37, Miro Bezjak wrote:
> Hi all,
>
> for orgmode 7.9.x I had the following defadvice.
>
>
> (defadvice org-read-date (around my-no-disputed-keys activate)
> "Ignore org-replace-disputed-keys when calendar is active."
> (let ((org-replace-disputed-keys nil))
> a
Hi all,
for orgmode 7.9.x I had the following defadvice.
(defadvice org-read-date (around my-no-disputed-keys activate)
"Ignore org-replace-disputed-keys when calendar is active."
(let ((org-replace-disputed-keys nil))
ad-do-it))
Contrary to the `org-replace-disputed-keys' docu