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

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

Signature

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

Documentation

Move cursor to the end of the current command.

In Emacs Lisp this is easily defined by parenthesis bounding. Override semantic-end-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-end-of-command emacs-lisp-mode
  ()
  "Move cursor to the end of the current command.
In Emacs Lisp this is easily defined by parenthesis bounding."
  (condition-case nil
      (up-list 1)
    (error nil)))