Function: verilog-auto-read-locals

verilog-auto-read-locals is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-auto-read-locals)

Documentation

Return file local variable segment at bottom of file.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
  nil)  ; Always return nil -- we don't write the file ourselves

(defun verilog-auto-read-locals ()
  "Return file local variable segment at bottom of file."
  (save-excursion
    (goto-char (point-max))
    (if (re-search-backward "Local Variables:" nil t)
	(buffer-substring-no-properties (point) (point-max))
      "")))