Function: f90-equal-symbols
f90-equal-symbols is a byte-compiled function defined in f90.el.gz.
Signature
(f90-equal-symbols A B)
Documentation
Compare strings A and B neglecting case and allowing for nil value.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defsubst f90-equal-symbols (a b)
"Compare strings A and B neglecting case and allowing for nil value."
(equal (if a (downcase a) nil)
(if b (downcase b) nil)))