Variable: shell-chdrive-regexp

shell-chdrive-regexp is a customizable variable defined in shell.el.gz.

Value

nil

Documentation

If non-nil, is regexp used to track drive changes.

Source Code

;; Defined in /usr/src/emacs/lisp/shell.el.gz
(defcustom shell-chdrive-regexp
  (if (memq system-type '(ms-dos windows-nt))
      ; NetWare allows the five chars between upper and lower alphabetics.
      "[]a-zA-Z^_`[\\]:"
    nil)
  "If non-nil, is regexp used to track drive changes."
  :type '(choice regexp
		 (const nil))
  :group 'shell-directories)