Function: filesets-entry-get-pattern--pattern

filesets-entry-get-pattern--pattern is a byte-compiled function defined in filesets.el.gz.

Signature

(filesets-entry-get-pattern--pattern LIST)

Documentation

Get the file pattern for LIST.

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-entry-get-pattern--pattern (list)
  "Get the file pattern for LIST."
  (if (= (length list) 1) ;; for compatibility with filesets < v1.5.5
      (file-name-nondirectory (car list))
    (cadr list)))