diff options
| author | Eli Zaretskii | 2012-10-06 20:02:31 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-06 20:02:31 +0200 |
| commit | 477f1e504482847a3b1209bc0a1dccfded649370 (patch) | |
| tree | 4c402149fa77ebada9340da6772157a2338a2bdd /src/alloc.c | |
| parent | d5acb99a199d83cde1a43482709c3e9d4ec34b2f (diff) | |
| download | emacs-477f1e504482847a3b1209bc0a1dccfded649370.tar.gz emacs-477f1e504482847a3b1209bc0a1dccfded649370.zip | |
Initial version of the w32notify code.
Adding and removing a watch seems to work: a new thread is launched
when a watch is added and exits when the watch is removed.
But there are no notifications, so it seems. At least, the Lisp
callback function passed to w32notify-add-watch is not called.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 3ed8cc2d990..dd3a93ae019 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -376,7 +376,7 @@ struct gcpro *gcprolist; | |||
| 376 | /* Addresses of staticpro'd variables. Initialize it to a nonzero | 376 | /* Addresses of staticpro'd variables. Initialize it to a nonzero |
| 377 | value; otherwise some compilers put it into BSS. */ | 377 | value; otherwise some compilers put it into BSS. */ |
| 378 | 378 | ||
| 379 | #define NSTATICS 0x650 | 379 | #define NSTATICS 0x660 |
| 380 | static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; | 380 | static Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; |
| 381 | 381 | ||
| 382 | /* Index of next unused slot in staticvec. */ | 382 | /* Index of next unused slot in staticvec. */ |