Function: vera-backward-syntactic-ws

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

Signature

(vera-backward-syntactic-ws &optional LIM SKIP-DIRECTIVE)

Documentation

Backward skip over syntactic whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defun vera-backward-syntactic-ws (&optional lim skip-directive)
  "Backward skip over syntactic whitespace."
  (save-restriction
    (let* ((lim (or lim (point-min)))
	   (here lim)
	   (hugenum (- (point-max))))
      (when (< lim (point))
	(narrow-to-region lim (point))
	(while (/= here (point))
	  (setq here (point))
	  (forward-comment hugenum)
	  (when (and skip-directive
		     (save-excursion (back-to-indentation)
				     (= (following-char) ?\#)))
	    (beginning-of-line)))))))