Function: vhdl-backward-syntactic-ws

vhdl-backward-syntactic-ws is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-backward-syntactic-ws &optional LIM)

Documentation

Backward skip over syntactic whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-backward-syntactic-ws (&optional lim)
  "Backward skip over syntactic whitespace."
  (let* ((here (point-min))
	 (hugenum (- (point-max))))
    (while (/= here (point))
      (setq here (point))
      (vhdl-forward-comment hugenum)
      (vhdl-beginning-of-macro))
    (if lim (goto-char (max (point) lim)))))