Function: org-mouse-looking-at
org-mouse-looking-at is a byte-compiled function defined in
org-mouse.el.gz.
Signature
(org-mouse-looking-at REGEXP SKIPCHARS &optional MOVECHARS)
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-looking-at (regexp skipchars &optional movechars)
(save-excursion
(let ((point (point)))
(if (looking-at regexp) t
(skip-chars-backward skipchars)
(forward-char (or movechars 0))
(when (looking-at regexp)
(> (match-end 0) point))))))