diff options
| author | Juanma Barranquero | 2015-10-31 22:34:35 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2015-10-31 22:34:35 +0100 |
| commit | 312bbfee95cf24be6f8bae4de3864a2cce030e52 (patch) | |
| tree | dafacab4fe44f4ec99857a4983e3af5e73530414 /src/alloc.c | |
| parent | 4c4c8e74cac8b8680d846760ae1ef571e1bd16f1 (diff) | |
| download | emacs-312bbfee95cf24be6f8bae4de3864a2cce030e52.tar.gz emacs-312bbfee95cf24be6f8bae4de3864a2cce030e52.zip | |
* src/alloc.c: Silence compiler warnings
(pointers_fit_in_lispobj_p, mmap_lisp_allowed_p): #ifdef DOUG_LEA_MALLOC.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index 7c33687ccdf..8f94d2b6097 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -430,6 +430,7 @@ XFLOAT_INIT (Lisp_Object f, double n) | |||
| 430 | XFLOAT (f)->u.data = n; | 430 | XFLOAT (f)->u.data = n; |
| 431 | } | 431 | } |
| 432 | 432 | ||
| 433 | #ifdef DOUG_LEA_MALLOC | ||
| 433 | static bool | 434 | static bool |
| 434 | pointers_fit_in_lispobj_p (void) | 435 | pointers_fit_in_lispobj_p (void) |
| 435 | { | 436 | { |
| @@ -446,6 +447,7 @@ mmap_lisp_allowed_p (void) | |||
| 446 | regions. */ | 447 | regions. */ |
| 447 | return pointers_fit_in_lispobj_p () && !might_dump; | 448 | return pointers_fit_in_lispobj_p () && !might_dump; |
| 448 | } | 449 | } |
| 450 | #endif | ||
| 449 | 451 | ||
| 450 | /* Head of a circularly-linked list of extant finalizers. */ | 452 | /* Head of a circularly-linked list of extant finalizers. */ |
| 451 | static struct Lisp_Finalizer finalizers; | 453 | static struct Lisp_Finalizer finalizers; |