Function: /=
/= is a function defined in data.c.
Signature
(/= NUM1 NUM2)
Documentation
Return t if first arg is not equal to second arg. Both must be numbers or markers.
Other relevant functions are documented in the number and comparison groups.
Shortdoc
;; comparison
(/= 4 4)
=> nil
;; number
(/= 4 4)
=> nil
Source Code
// Defined in /usr/src/emacs/src/data.c
{
return arithcompare (num1, num2) & Cmp_EQ ? Qnil : Qt;
}