diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 44b8e168031..a4c985b1a0c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-08 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs.c (my_heap_start): #ifdef to avoid warnings when unused. | ||
| 4 | |||
| 1 | 2011-09-07 Eli Zaretskii <eliz@gnu.org> | 5 | 2011-09-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it | 7 | * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it |
diff --git a/src/emacs.c b/src/emacs.c index 57a52a0c48f..c766523b1c3 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -174,8 +174,10 @@ int display_arg; | |||
| 174 | Tells GC how to save a copy of the stack. */ | 174 | Tells GC how to save a copy of the stack. */ |
| 175 | char *stack_bottom; | 175 | char *stack_bottom; |
| 176 | 176 | ||
| 177 | #if defined (DOUG_LEA_MALLOC) || defined (GNU_LINUX) | ||
| 177 | /* The address where the heap starts (from the first sbrk (0) call). */ | 178 | /* The address where the heap starts (from the first sbrk (0) call). */ |
| 178 | static void *my_heap_start; | 179 | static void *my_heap_start; |
| 180 | #endif | ||
| 179 | 181 | ||
| 180 | #ifdef GNU_LINUX | 182 | #ifdef GNU_LINUX |
| 181 | /* The gap between BSS end and heap start as far as we can tell. */ | 183 | /* The gap between BSS end and heap start as far as we can tell. */ |