Function: verilog-define-abbrev

verilog-define-abbrev is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-define-abbrev TABLE NAME EXPANSION &optional HOOK)

Documentation

Filter define-abbrev TABLE NAME EXPANSION and call HOOK.

Provides SYSTEM-FLAG in newer Emacs.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-define-abbrev (table name expansion &optional hook)
  "Filter `define-abbrev' TABLE NAME EXPANSION and call HOOK.
Provides SYSTEM-FLAG in newer Emacs."
  (condition-case nil
      (define-abbrev table name expansion hook 0 t)
    (error
     (define-abbrev table name expansion hook))))