Function: hif-define-macro

hif-define-macro is a byte-compiled function defined in hideif.el.gz.

Signature

(hif-define-macro PARMLIST TOKEN-BODY)

Documentation

A marker for defined macro with arguments.

This macro cannot be evaluated alone without parameters input.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-define-macro (_parmlist _token-body)
  "A marker for defined macro with arguments.
This macro cannot be evaluated alone without parameters input."
  ;;TODO: input arguments at run time, use minibuffer to query all arguments
  (error
   "Argumented macro cannot be evaluated without passing any parameter"))