comparison lisp/shell.el @ 49549:99be3a1e2589

Cygwin support patch.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 31 Jan 2003 15:24:20 +0000
parents 5fbd632e1109
children 8eb767cf7295 d7ddb3e565de
comparison
equal deleted inserted replaced
49548:8b1c605f8c9b 49549:99be3a1e2589
163 shell buffer. The value may depend on the operating system or shell. 163 shell buffer. The value may depend on the operating system or shell.
164 164
165 This is a fine thing to set in your `.emacs' file.") 165 This is a fine thing to set in your `.emacs' file.")
166 166
167 (defvar shell-file-name-chars 167 (defvar shell-file-name-chars
168 (if (memq system-type '(ms-dos windows-nt)) 168 (if (memq system-type '(ms-dos windows-nt cygwin))
169 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-" 169 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
170 "~/A-Za-z0-9+@:_.$#%,={}-") 170 "~/A-Za-z0-9+@:_.$#%,={}-")
171 "String of characters valid in a file name. 171 "String of characters valid in a file name.
172 This variable is used to initialize `comint-file-name-chars' in the 172 This variable is used to initialize `comint-file-name-chars' in the
173 shell buffer. The value may depend on the operating system or shell. 173 shell buffer. The value may depend on the operating system or shell.