Mercurial > emacs
annotate nt/ftime-nostartup.bat @ 110967:188673195616
Rename `image-library-alist' to `dynamic-library-alist'.
* etc/NEWS: Mention `dynamic-library-alist'.
* lisp/image.el (image-library-alist): Declare as obsolete alias.
(image-type-available-p): Use `dynamic-library-alist'.
* lisp/term/w32-win.el (dynamic-library-alist):
Use instead of `image-library-alist'.
* nt/INSTALL: Refer to `dynamic-library-alist'.
* src/image.c (Vimage_library_alist)
(syms_of_image) <image-library-alist>: Move to src/emacs.c and rename.
(lookup_image_type): Use Vdynamic_library_alist.
(Finit_image_library): Doc fix.
* src/emacs.c (Vdynamic_library_alist)
(syms_of_emacs) <dynamic-library-alist>: Move from src/image.c and rename.
Doc fix.
* src/lisp.h (Vdynamic_library_alist): Declare extern.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 13 Oct 2010 16:50:06 +0200 |
parents | 93ce5f375b46 |
children | 375f2633d815 ef719132ddfa |
rev | line source |
---|---|
41276 | 1 @echo off |
2 if (%1)==() echo Usage: %0 tracefile | |
3 if (%1)==() goto done | |
4 rem Need to fiddle with the dumped image so prep doesn't break it | |
5 obj\i386\preprep ..\src\obj\i386\emacs.exe ..\src\obj\i386\pemacs.exe | |
6 copy ..\src\obj\i386\temacs.map ..\src\obj\i386\pemacs.map | |
7 rem ----------------------------------------------------------------- | |
8 rem Use this version to profile explicit commands only. | |
9 rem prep /om /ft /sf _Fexecute_extended_command ..\src\obj\i386\pemacs | |
10 rem ----------------------------------------------------------------- | |
11 rem Use this version to ignore startup code | |
12 prep /om /ft /sf _command_loop_1 ..\src\obj\i386\pemacs | |
13 rem ----------------------------------------------------------------- | |
14 rem Use this version to include startup code | |
15 rem prep /om /ft ..\src\obj\i386\pemacs | |
16 rem ----------------------------------------------------------------- | |
17 if errorlevel 1 goto done | |
18 profile ..\src\obj\i386\pemacs %2 %3 %4 %5 %6 %7 %8 %9 | |
19 if errorlevel 1 goto done | |
20 prep /m ..\src\obj\i386\pemacs | |
21 if errorlevel 1 goto done | |
22 plist ..\src\obj\i386\pemacs > %1 | |
23 :done | |
52414
93ce5f375b46
Fix some DOS line-ending inconsistencies introduced with arch-tag:
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
24 |
93ce5f375b46
Fix some DOS line-ending inconsistencies introduced with arch-tag:
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
25 goto skipArchTag |
93ce5f375b46
Fix some DOS line-ending inconsistencies introduced with arch-tag:
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
26 arch-tag: 927c5199-a8a3-4cf0-ab56-62b66fc6520d |
93ce5f375b46
Fix some DOS line-ending inconsistencies introduced with arch-tag:
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
27 :skipArchTag |