Function: vhdl-win-fsws

vhdl-win-fsws is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-win-fsws &optional LIM)

Documentation

Forward skip syntactic whitespace for Win-Emacs.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;; This is the best we can do in Win-Emacs.
(defun vhdl-win-fsws (&optional lim)
  "Forward skip syntactic whitespace for Win-Emacs."
  (let ((lim (or lim (point-max)))
	stop)
    (while (not stop)
      (skip-chars-forward " \t\n\r\f" lim)
      (cond
       ;; vhdl comment
       ((looking-at "--") (end-of-line))
       ;; none of the above
       (t (setq stop t))))))