Fix key bindings in org-mouse for XEmacs
This commit is contained in:
parent
2409f4bb89
commit
3ab4f4b618
|
@ -1,5 +1,7 @@
|
|||
2009-03-30 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-mouse.el: XEmacs compatibility fixes
|
||||
|
||||
* org-docbook.el (org-export-as-docbook): Process footnotes like
|
||||
normal text.
|
||||
|
||||
|
|
|
@ -1136,8 +1136,8 @@ SCHEDULED: or DEADLINE: or ANYTHINGLIKETHIS:"
|
|||
(if (featurep 'xemacs) [button3] [mouse-3])
|
||||
'org-mouse-show-context-menu)
|
||||
(define-key org-agenda-keymap [down-mouse-3] 'org-mouse-move-tree-start)
|
||||
(define-key org-agenda-keymap [C-mouse-4] 'org-agenda-earlier)
|
||||
(define-key org-agenda-keymap [C-mouse-5] 'org-agenda-later)
|
||||
(define-key org-agenda-keymap (if (featurep 'xemacs) [(control mouse-4)] [C-mouse-4]) 'org-agenda-earlier)
|
||||
(define-key org-agenda-keymap (if (featurep 'xemacs) [(control mouse-5)] [C-mouse-5]) 'org-agenda-later)
|
||||
(define-key org-agenda-keymap [drag-mouse-3]
|
||||
'(lambda (event) (interactive "e")
|
||||
(case (org-mouse-get-gesture event)
|
||||
|
|
Loading…
Reference in New Issue