Mercurial > hg > xemacs-beta
comparison lisp/winnt.el @ 363:972bbb6d6ca2 r21-1-11
Import from CVS: tag r21-1-11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:59:28 +0200 |
parents | 182f72e8cd0d |
children | a4f53d9b3154 |
comparison
equal
deleted
inserted
replaced
362:1e474c183006 | 363:972bbb6d6ca2 |
---|---|
104 | 104 |
105 (defvar nt-quote-args-functions-alist | 105 (defvar nt-quote-args-functions-alist |
106 '(("^.?.?sh\\." . nt-quote-args-double-quote)) | 106 '(("^.?.?sh\\." . nt-quote-args-double-quote)) |
107 "An alist for determining proper argument quoting given executable file name. | 107 "An alist for determining proper argument quoting given executable file name. |
108 Car of each cons must be a string, a regexp against which a file name sans | 108 Car of each cons must be a string, a regexp against which a file name sans |
109 directory is matched. Cdr is a function symbol. The list is mathced in | 109 directory is matched. Cdr is a function symbol. The list is matched in |
110 forward order, and mathcing entry cdr's funcrion is called with a list of | 110 forward order, and matching entry cdr's function is called with a list of |
111 strings, process arguments. It must return a string which is passed to | 111 strings, process arguments. It must return a string which is passed to |
112 the newly created process. | 112 the newly created process. |
113 | 113 |
114 If not found, then `nt-quote-args-verbatim' is called on the argument list.") | 114 If not found, then `nt-quote-args-verbatim' is called on the argument list.") |
115 | 115 |