CVS update by vins xemacs/nt ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Tue Sep 25 22:45:39 EDT 2007
User: vins
Date: 07/09/26 04:45:39
Branch: xemacs/nt release-21-4
Modified: xemacs/nt XEmacs.iss
Log:
XEmacs.iss update
Revision Changes Path
1.1.2.9 +5 -5 XEmacs/xemacs/nt/Attic/XEmacs.iss
Index: XEmacs.iss
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/nt/Attic/XEmacs.iss,v
retrieving revision 1.1.2.8
retrieving revision 1.1.2.9
diff -u -p -r1.1.2.8 -r1.1.2.9
--- XEmacs.iss 2007/09/26 01:31:40 1.1.2.8
+++ XEmacs.iss 2007/09/26 02:45:38 1.1.2.9
@@ -301,9 +301,9 @@ begin
// Here's what we're going to add to lisp\site-start.el:
// ;;; Lines added by XEmacs_Setup
- // (setq package-get-package-index-file-location "C:\\Program Files\\XEmacs")
+ // (setq package-get-package-index-file-location "C:/Program Files/XEmacs")
// (setq package-get-remote '("ftp.xemacs.org" "pub/xemacs/packages"))
- // (setq efs-ftp-program-name "C:\\WINDOWS\\system32\\ftp.exe")
+ // (setq efs-ftp-program-name "C:/WINDOWS/system32/ftp.exe")
// (setq package-get-always-update t)
// ;;; End of XEmacs_Setup addition
@@ -316,11 +316,11 @@ begin
// Optimize for the most common cases: either site-start.el does not contain anything related to XEmacs setup
// or site-start.el contains the entire text verbatim.
- // Convert directory names to lisp format by doubling each backslash
+ // Convert separators from backslash to slash
InstallBase := ExpandConstant('{app}');
- StringChange(InstallBase, '\', '\\');
+ StringChange(InstallBase, '\', '/');
FtpExe := ExpandConstant('{syswow64}') + '\ftp.exe';
- StringChange(FtpExe, '\', '\\');
+ StringChange(FtpExe, '\', '/');
Payload := '(setq package-get-package-index-file-location "' + InstallBase + '")' + #10 +
'(setq package-get-remote ' + Chr(39) + '("ftp.xemacs.org" "pub/xemacs/packages"))' + #10
'(setq efs-ftp-program-name "' + FtpExe + '")' + #10
More information about the XEmacs-CVS
mailing list