Function: idlwave-beginning-of-block
idlwave-beginning-of-block is an interactive and byte-compiled
function defined in idlwave.el.gz.
Signature
(idlwave-beginning-of-block)
Documentation
Go to the beginning of the current block.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-beginning-of-block ()
"Go to the beginning of the current block."
(interactive)
(idlwave-block-jump-out -1 'nomark)
(forward-word-strictly 1))