Function: ff-upcase-p

ff-upcase-p is a byte-compiled function defined in find-file.el.gz.

Signature

(ff-upcase-p STRING)

Documentation

Return t if STRING is all uppercase.

Source Code

;; Defined in /usr/src/emacs/lisp/find-file.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This section offers an example of user defined function to select files

(defun ff-upcase-p (string)
  "Return t if STRING is all uppercase."
  ;; FIXME: Why `ff-string-match' since `[:upper:]' only makes
  ;; sense when `case-fold-search' is nil?
  (ff-string-match "\\`[[:upper:]]*\\'" string))