comparison lisp/shell.el @ 21621:56d8224fe691

(shell-file-name-chars): Add ',' and ':'.
author Geoff Voelker <voelker@cs.washington.edu>
date Fri, 17 Apr 1998 05:25:04 +0000
parents 22a407edd2f0
children f15c3c6ad8ae
comparison
equal deleted inserted replaced
21620:611b5f660ee6 21621:56d8224fe691
150 150
151 This is a fine thing to set in your `.emacs' file.") 151 This is a fine thing to set in your `.emacs' file.")
152 152
153 (defvar shell-file-name-chars 153 (defvar shell-file-name-chars
154 (if (memq system-type '(ms-dos windows-nt)) 154 (if (memq system-type '(ms-dos windows-nt))
155 "~/A-Za-z0-9_^$!#%&{}@`'.()-" 155 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
156 "~/A-Za-z0-9+@:_.$#%,={}-") 156 "~/A-Za-z0-9+@:_.$#%,={}-")
157 "String of characters valid in a file name. 157 "String of characters valid in a file name.
158 This variable is used to initialize `comint-file-name-chars' in the 158 This variable is used to initialize `comint-file-name-chars' in the
159 shell buffer. The value may depend on the operating system or shell. 159 shell buffer. The value may depend on the operating system or shell.
160 160