Function: srecode-field-end
srecode-field-end is an interactive and byte-compiled function defined
in fields.el.gz.
Signature
(srecode-field-end)
Documentation
Move to the end of this field.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/fields.el.gz
(defun srecode-field-end ()
"Move to the end of this field."
(interactive)
(let* ((f (srecode-overlaid-at-point 'srecode-field)))
(goto-char (overlay-end (oref f overlay)))))