Function: calc-not-equal-to
calc-not-equal-to is an autoloaded, interactive and byte-compiled
function defined in calc-prog.el.gz.
Signature
(calc-not-equal-to ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun calc-not-equal-to (arg)
(interactive "P")
(calc-wrapper
(if (and (integerp arg) (> arg 2))
(calc-enter-result arg "neq" (cons 'calcFunc-neq (calc-top-list-n arg)))
(calc-binary-op "neq" 'calcFunc-neq arg))))