Variable: viper-glob-function

viper-glob-function is a customizable variable defined in viper-ex.el.gz.

Value

viper-glob-unix-files

Documentation

Expand the file spec containing wildcard symbols.

The default tries to set this variable to work with Unix or MS Windows.

However, if it doesn't work right for some types of Unix shells or some OS, the user should supply the appropriate function and set this variable to the corresponding function symbol.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-ex.el.gz
(defcustom viper-glob-function
  (cond (ex-unix-type-shell 'viper-glob-unix-files)
	(viper-ms-style-os-p 'viper-glob-mswindows-files) ; Microsoft OS
	(t  'viper-glob-unix-files) ; presumably UNIX
	)
  "Expand the file spec containing wildcard symbols.
The default tries to set this variable to work with Unix or MS Windows.

However, if it doesn't work right for some types of Unix shells or some OS,
the user should supply the appropriate function and set this variable to the
corresponding function symbol."
  :type 'symbol)