Function: calc-xor
calc-xor is an autoloaded, interactive and byte-compiled function
defined in calc-bin.el.gz.
Signature
(calc-xor N)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-bin.el.gz
(defun calc-xor (n)
(interactive "P")
(calc-slow-wrapper
(calc-enter-result 2 "xor"
(append '(calcFunc-xor)
(calc-top-list-n 2)
(and n (list (prefix-numeric-value n)))))))