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 group.

Shortdoc

;; number
(/= 4 4)
    => nil

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  return arithcompare (num1, num2, ARITH_NOTEQUAL);
}