Function: hif-mathify-binop
hif-mathify-binop is a macro defined in hideif.el.gz.
Signature
(hif-mathify-binop FUN)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defmacro hif-mathify-binop (fun)
`(lambda (a b)
,(format "Like `%s' but treat t and nil as 1 and 0." fun)
(,fun (hif-mathify a) (hif-mathify b))))