Use parameter "/copy" rather than "copy" for increased
authorKai Grossjohann <kgrossjo@eu.uu.net>
Mon, 26 Nov 2001 10:38:15 +0000 (10:38 +0000)
committerKai Grossjohann <kgrossjo@eu.uu.net>
Mon, 26 Nov 2001 10:38:15 +0000 (10:38 +0000)
dwimishness for old-time DOS users.  From Frank Schmitt
<ich@Frank-Schmitt.net>.

ChangeLog
make-x.bat

index e87f4d3..1436fd2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-26  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+       * make-x.bat: Use parameter "/copy" rather than "copy" for increased
+       dwimishness for old-time DOS users.  From Frank Schmitt
+       <ich@Frank-Schmitt.net>.
+
 2001-11-15  Simon Josefsson  <jas@extundo.com>
 
        * etc/gnus/unimportant.xpm, etc/gnus/important.xpm: New files.
index f141851..d79340d 100644 (file)
@@ -3,7 +3,6 @@
 rem Modified once more by Frank Schmitt (ich@Frank-Schmitt.net)\r
 rem Modified by ShengHuo Zhu (zsh@cs.rochester.edu)\r
 rem Originally from make.bat by David Charlap (shamino@writeme.com)\r
-rem\r
 \r
 rem Clear PWD so emacs doesn't get confused\r
 set GNUS_PWD_SAVE=%PWD%\r
@@ -16,6 +15,7 @@ set emacs=xemacs.exe
 cd lisp\r
 call %1\%emacs% -batch -q -no-site-file -l ./dgnushack.el -f dgnushack-compile\r
 if not "%2" == "copy" goto info\r
+if not "%2" == "/copy" goto info\r
 attrib -r %1\..\..\xemacs-packages\lisp\gnus\*.*\r
 copy *.el* %1\..\..\xemacs-packages\lisp\gnus\r
 \r
@@ -26,6 +26,7 @@ cd ..\texi
 %EMACSINFO% emacs-mime.texi\r
 %EMACSINFO% gnus.texi\r
 if not "%2" == "copy" goto done\r
+if not "%2" == "/copy" goto done\r
 copy gnus %1\..\..\xemacs-packages\info\r
 copy gnus-?? %1\..\..\xemacs-packages\info\r
 copy message %1\..\..\xemacs-packages\info\r
@@ -40,12 +41,12 @@ cd ..
 goto end\r
 \r
 :usage\r
-echo Usage: make :xemacs-dir: [copy]\r
+echo Usage: make-x.bat :xemacs-dir: [/copy]\r
 echo.\r
 echo where: :xemacs-dir: is the directory you installed xemacs in \r
 echo                     (the directory where xemacs.exe is situated)\r
 echo                    eg. C:\Programme\XEmacs\XEmacs-21.4.3\i586-pc-win32\r
-echo        copy indicates that the compiled files should be copied to your\r
+echo        /copy indicates that the compiled files should be copied to your\r
 echo             emacs lisp, info, and etc directories\r
 echo.\r
 echo Note: If you have Emacs/w3 you should set the environment variable \r