2003-07-28 11:07:11 -07:00
|
|
|
(require 'overlay)
|
|
|
|
|
|
|
|
;; for caml-help.el
|
2003-07-28 23:54:28 -07:00
|
|
|
(defun caml-info-other-window (arg)
|
2003-07-28 11:07:11 -07:00
|
|
|
(save-excursion (info arg))
|
|
|
|
(view-buffer-other-window "*info*"))
|
|
|
|
|
|
|
|
;; for caml-types.el
|
2003-07-28 23:54:28 -07:00
|
|
|
(defun caml-line-beginning-position ()
|
2003-07-28 11:07:11 -07:00
|
|
|
(save-excursion (beginning-of-line) (point)))
|
2003-07-28 23:54:28 -07:00
|
|
|
|
|
|
|
(defun caml-event-window (e) (event-window e))
|
|
|
|
(defun caml-event-point-start (e) (event-closest-point e))
|
|
|
|
(defun caml-event-point-end (e) (event-closest-point e))
|
2003-07-29 00:30:03 -07:00
|
|
|
(defalias 'caml-track-mouse 'progn)
|
2003-07-28 23:54:28 -07:00
|
|
|
(defalias 'caml-read-event 'next-event)
|
2003-07-28 11:07:11 -07:00
|
|
|
(defun mouse-movement-p (e) (equal (event-type e) 'motion))
|
|
|
|
|
|
|
|
(provide 'caml-xemacs)
|