Some time ago, Charles G Waldman wrote...
|+
| File "c:\PROGRA~1\PYTHON\python.exe", line 1
| MZ$L$PQè>@ª330ª3::0ª3ª3
| ^
| SyntaxError: invalid syntax
|
| Process Python exited abnormally with code 1
|-
Here's a fix.
1998-05-30 Kirill M. Katsnelson <kkm(a)kis.ru>
* winnt.el (nt-quote-process-args): Fix for duplicating argv[0].
Index: lisp/winnt.el
===================================================================
RCS file: /var/cvsroot/ntxemacs/lisp/winnt.el,v
retrieving revision 1.6
diff --unified=2 -r1.6 winnt.el
--- lisp/winnt.el 1998/05/18 02:56:59 1.6
+++ lisp/winnt.el 1998/05/29 20:45:41
@@ -133,5 +133,5 @@
(setq return-me (funcall (cdr assoc) (cdr args)))))
(or return-me
- (nt-quote-args-verbatim args))))
+ (nt-quote-args-verbatim (cdr args)))))
;;; winnt.el ends here