Function: thing-at-point--beginning-of-symbol

thing-at-point--beginning-of-symbol is a byte-compiled function defined in thingatpt.el.gz.

Signature

(thing-at-point--beginning-of-symbol)

Documentation

Move point to the beginning of the current symbol.

Source Code

;; Defined in /usr/src/emacs/lisp/thingatpt.el.gz
(defun thing-at-point--beginning-of-symbol ()
  "Move point to the beginning of the current symbol."
  (and (re-search-backward "\\(\\sw\\|\\s_\\)+")
       (skip-syntax-backward "w_")))