view admin/nt/dump.bat @ 68004:1a9ccbce1b6e

(flymake-create-temp-with-folder-structure): Use expand-file-name. (flymake-delete-temp-directory): Use expand-file-name, file-name-directory, and directory-file-name. (flymake-strrchr): Delete. (flymake-start-syntax-check): Don't pass the redundant buffer argument to the init-f function. (flymake-init-find-buildfile-dir, flymake-init-create-temp-buffer-copy) (flymake-init-create-temp-source-and-master-buffer-copy, flymake-perl-init) (flymake-save-buffer-in-file, flymake-simple-make-init-impl, flymake-xml-init) (flymake-simple-make-init, flymake-master-make-init, flymake-master-tex-init) (flymake-master-make-header-init, flymake-simple-make-java-init) (flymake-simple-ant-java-init, flymake-simple-tex-init): Remove corresponding redundant buffer argument. (flymake-allowed-file-name-masks): Remove last elems that are equal to the default anyway. Clean up regexps.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 03 Jan 2006 19:59:00 +0000
parents 695cf19ef79e
children 4ff1d1caeb96 375f2633d815
line wrap: on
line source

@echo off
rem  Run temacs.exe to recreate the dumped emacs.exe.
rem  This is only likely to be useful on systems where the prebuilt
rem  emacs.exe crashes on startup.

rem First save original emacs.exe if present
if exist emacs.exe.orig goto dump
echo Saving original emacs.exe as emacs.exe.orig
ren emacs.exe emacs.exe.orig

:dump
rem Overwrites emacs.exe if still present
mkdir ..\lib-src
copy fns* ..\lib-src
mkdir obj
mkdir obj\i386
mkdir obj\etc
copy ..\etc\DOC* obj\etc
copy temacs.exe obj\i386
obj\i386\temacs -batch -l loadup dump
copy obj\i386\emacs.exe .

goto skipArchTag
   arch-tag: 0ca3036d-3a1e-47ea-87c6-9c0845253496
:skipArchTag