Function: verilog-define-abbrev-table

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

Signature

(verilog-define-abbrev-table TABLENAME DEFINITIONS &optional DOCSTRING &rest PROPS)

Documentation

Filter define-abbrev-table TABLENAME DEFINITIONS.

Provides DOCSTRING PROPS in newer Emacs (23.1).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
        (t menu)))  ; Default - ok
;;(verilog-easy-menu-filter
;;  `("Verilog" ("MA" ["SAA" nil :help "Help SAA"] ["SAB" nil :help "Help SAA"])
;;     "----" ["MB" nil :help "Help MB"]))

(defun verilog-define-abbrev-table (tablename definitions &optional docstring &rest props)
  "Filter `define-abbrev-table' TABLENAME DEFINITIONS.
Provides DOCSTRING PROPS in newer Emacs (23.1)."
  (condition-case nil
      (apply #'define-abbrev-table tablename definitions docstring props)
    (error
     (define-abbrev-table tablename definitions))))