Advertisement
mark-naylor-1701

elisp macros

Oct 4th, 2023 (edited)
2,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.56 KB | None | 0 0
  1. (defmacro nor (&rest args)
  2.   "Equivalent to an IC nor gate. Takes multiple inputs. Lazy
  3. evaluation of the args expressions."
  4.   `(not ,(cons 'or args)))
  5.  
  6. (defmacro nand (&rest args)
  7.   "Equivalent to an IC nand gate. Takes multiple inputs. Lazy
  8. evaluation of the args expressions."
  9.   `(not ,(cons 'and args)))
  10.  
  11. (defmacro fsetq (name definition)
  12.   "Set NAME’s function definition to DEFINITION, and return DEFINITION."
  13.   (let ((def (gensym)))
  14.     `(let ((def ,definition))
  15.        (when (functionp def)
  16.          (setf (symbol-function (quote ,name)) def)))))
  17.  
Tags: macro elisp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement