Function: he-ordinary-case-p
he-ordinary-case-p is a byte-compiled function defined in
hippie-exp.el.gz.
Signature
(he-ordinary-case-p STR)
Source Code
;; Defined in /usr/src/emacs/lisp/hippie-exp.el.gz
(defun he-ordinary-case-p (str)
(or (string= str (downcase str))
(string= str (upcase str))
(string= str (capitalize str))
(string= str (he-capitalize-first str))))