diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-09-25 13:57:30 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-09-25 13:57:30 +0200 |
commit | aa15c6bb4fec3c36efe1c05000e05faa6a483038 (patch) | |
tree | ec142ef200c87cd6391e2a370a77ebbc4f2bd1ce /src/w32.h | |
parent | 16b22fef423afedf034460a0f811abf50d0c5f3e (diff) | |
download | emacs-aa15c6bb4fec3c36efe1c05000e05faa6a483038.tar.gz |
Move Vlibrary_cache to emacs.c and reset before dumping.
* src/lisp.h (reset_image_types): Declare.
[WINDOWSNT] (Vlibrary_cache): Declare.
* src/image.c (reset_image_types): New function.
* src/emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
(syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
(Fdump_emacs): Reset Vlibrary_cache and image_types.
* src/w32.c (Vlibrary_cache): Do not define; moved to emacs.c
(globals_of_w32) <Vlibrary_cache>: Do not initialize.
* src/w32.h (Vlibrary_cache): Do not declare.
Diffstat (limited to 'src/w32.h')
-rw-r--r-- | src/w32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32.h b/src/w32.h index 18625cea955..a833c8f4315 100644 --- a/src/w32.h +++ b/src/w32.h @@ -145,7 +145,7 @@ extern void check_windows_init_file (void); extern int _sys_read_ahead (int fd); extern int _sys_wait_accept (int fd); -extern Lisp_Object Vlibrary_cache, QCloaded_from; +extern Lisp_Object QCloaded_from; extern HMODULE w32_delayed_load (Lisp_Object); #ifdef HAVE_GNUTLS |