Re: [O] disable org-replace-disputed-keys for org-read-date

2013-09-07 Thread Carsten Dominik
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

Re: [O] disable org-replace-disputed-keys for org-read-date

2013-09-07 Thread Miro Bezjak
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 ... ---

Re: [O] disable org-replace-disputed-keys for org-read-date

2013-09-07 Thread Miro Bezjak
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

Re: [O] disable org-replace-disputed-keys for org-read-date

2013-09-01 Thread Carsten Dominik
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

Re: [O] disable org-replace-disputed-keys for org-read-date

2013-08-09 Thread Carsten Dominik
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

[O] disable org-replace-disputed-keys for org-read-date

2013-05-15 Thread Miro Bezjak
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