Function: idlwave-show-begin-check

idlwave-show-begin-check is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-show-begin-check)

Documentation

Ensure that the previous word was a token before idlwave-show-begin.

An END token must be preceded by whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defun idlwave-show-begin-check ()
  "Ensure that the previous word was a token before `idlwave-show-begin'.
An END token must be preceded by whitespace."
  (if
      (save-excursion
	(backward-word-strictly 1)
	(backward-char 1)
	(looking-at "[ \t\n\f]"))
      (idlwave-show-begin)))