diff options
Diffstat (limited to 'emacs/caml-emacs.el')
-rw-r--r-- | emacs/caml-emacs.el | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/emacs/caml-emacs.el b/emacs/caml-emacs.el index b212db655..5f35c2451 100644 --- a/emacs/caml-emacs.el +++ b/emacs/caml-emacs.el @@ -5,10 +5,25 @@ (defalias 'caml-line-beginning-position 'line-beginning-position) +(defalias 'caml-read-event 'read-event) +(defalias 'caml-window-edges 'window-edges) +(defun caml-mouse-vertical-position () + (cddr (mouse-position))) +(defalias 'caml-ignore-event-p 'integer-or-marker-p) +(defalias 'caml-mouse-movement-p 'mouse-movement-p) +(defalias 'caml-sit-for 'sit-for) + +(defmacro caml-track-mouse (&rest body) (cons 'track-mouse body)) + (defun caml-event-window (e) (posn-window (event-start e))) (defun caml-event-point-start (e) (posn-point (event-start e))) (defun caml-event-point-end (e) (posn-point (event-end e))) -(defalias 'caml-read-event 'read-event) -(defmacro caml-track-mouse (&rest body) (cons 'track-mouse body)) + +(defun caml-release-event-p (original event) + (and (equal (event-basic-type original) (event-basic-type event)) + (let ((modifiers (event-modifiers event))) + (or (member 'drag modifiers) + (member 'click modifiers))))) + (provide 'caml-emacs) |