Function: verilog-getopt-flags

verilog-getopt-flags is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-getopt-flags)

Documentation

Convert verilog-library-flags into standard library variables.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-getopt-flags ()
  "Convert `verilog-library-flags' into standard library variables."
  ;; If the flags are local, then all the outputs should be local also
  (when (local-variable-p 'verilog-library-flags (current-buffer))
    (mapc #'make-local-variable '(verilog-library-extensions
                                  verilog-library-directories
                                  verilog-library-files
                                  verilog-library-flags)))
  ;; Allow user to customize
  (verilog-run-hooks 'verilog-before-getopt-flags-hook)
  ;; Process arguments
  (verilog-getopt verilog-library-flags)
  ;; Allow user to customize
  (verilog-run-hooks 'verilog-getopt-flags-hook))