• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching defs:wildcard

807 	  ;; If filename contains a wildcard, newname will be the old name.
1076 suppress wildcard expansion by setting `find-file-wildcards' to nil.
1426 Optional fourth arg WILDCARDS non-nil means do wildcard processing
4574 (defun wildcard-to-regexp (wildcard)
4577 matches that wildcard according to shell rules. Only wildcards known
4579 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
4581 (result (substring wildcard 0 i))
4582 (len (length wildcard)))
4586 (let ((ch (aref wildcard i))
4594 (eq (aref wildcard (1+ i)) ?\]))
4601 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
4604 (if (eq (aref wildcard i) ?\])
4609 ((eq (aref wildcard i) ?^)
4618 ((eq (aref wildcard i) ?\])
4620 ;; character class in a wildcard, but
4627 (substring wildcard
4630 "]" wildcard i)))
4661 "Expand wildcard pattern PATTERN.
4693 (wildcard-to-regexp nondir))))))
4728 (let ((wildcard (not (file-directory-p dirname))))
4729 (insert-directory dirname switches wildcard (not wildcard)))))
4737 (defun shell-quote-wildcard-pattern (pattern)
4740 PATTERN is assumed to represent a file-name wildcard suitable for the
4743 the parts of the pattern which don't include wildcard characters are
4916 (defun insert-directory (file switches &optional wildcard full-directory-p)
4921 Optional third arg WILDCARD means treat FILE as shell wildcard.
4938 wildcard full-directory-p)
4955 (if wildcard
4982 ;; wildcard characters.
4983 (shell-quote-wildcard-pattern pattern))))
5184 &optional wildcard full-directory-p)
5190 (insert-directory file switches wildcard full-directory-p)