diff options
author | Marco Wahl <marcowahlsoft@gmail.com> | 2016-06-08 16:03:34 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-06-08 16:04:12 -0700 |
commit | 27fe1e459ab137b20d45ef4167f3c2ec0d10fdd4 (patch) | |
tree | 1c79ba93e5891253e4abb758b2dbff9b4ede97bf /lisp/org | |
parent | a813487f1adf4cf59d7a471d62d22f706f9eab1d (diff) | |
download | emacs-27fe1e459ab137b20d45ef4167f3c2ec0d10fdd4.tar.gz |
org.el: Fix bindings of < and > for calendar scrolling
[This patch taken from upstream Org repo with 8b63dc9 dated
2014-10-20 (Bug#23725).]
* lisp/org/org.el (org-read-date-minibuffer-local-map):
Switch to the current calendar API for scrolling the calendar.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el index 61bcb451d70..13e4a222131 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -16296,10 +16296,10 @@ So these are more for recording a certain time/date." (message ""))) (org-defkey map ">" (lambda () (interactive) - (org-eval-in-calendar '(scroll-calendar-left 1)))) + (org-eval-in-calendar '(calendar-scroll-left 1)))) (org-defkey map "<" (lambda () (interactive) - (org-eval-in-calendar '(scroll-calendar-right 1)))) + (org-eval-in-calendar '(calendar-scroll-right 1)))) (org-defkey map "\C-v" (lambda () (interactive) (org-eval-in-calendar |