Function: verilog-continued-line
verilog-continued-line is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-continued-line)
Documentation
Return true if this is a continued line.
Set point to where line starts.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-continued-line ()
"Return true if this is a continued line.
Set point to where line starts."
(let ((continued 't))
(if (eq 0 (forward-line -1))
(progn
(end-of-line)
(verilog-backward-ws&directives)
(if (bobp)
(setq continued nil)
(while (and continued
(save-excursion
(skip-chars-backward " \t")
(not (bolp))))
(setq continued (verilog-backward-token)))))
(setq continued nil))
continued))