Function: antlr-upcase-p
antlr-upcase-p is a byte-compiled function defined in
antlr-mode.el.gz.
Signature
(antlr-upcase-p CHAR)
Documentation
Non-nil, if CHAR is an uppercase character (if CHAR was a char).
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(and poss (length poss)))))) ; depth if inside {} or []
;;;===========================================================================
;;; Miscellaneous functions
;;;===========================================================================
(defun antlr-upcase-p (char)
"Non-nil, if CHAR is an uppercase character (if CHAR was a char)."
;; (get-char-code-property char 'lowercase)
(not (eq (downcase char) char)))