Function: semantic-beginning-of-command-emacs-lisp-mode

semantic-beginning-of-command-emacs-lisp-mode is a byte-compiled function defined in el.el.gz.

Signature

(semantic-beginning-of-command-emacs-lisp-mode)

Documentation

Move cursor to the beginning of the current command.

In Emacs Lisp this is easily defined by parenthesis bounding. Override semantic-beginning-of-command in emacs-lisp-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/el.el.gz
(define-mode-local-override semantic-beginning-of-command emacs-lisp-mode
  ()
  "Move cursor to the beginning of the current command.
In Emacs Lisp this is easily defined by parenthesis bounding."
  (condition-case nil
      (progn
        (up-list -1)
        (forward-char 1))
    (error nil)))