diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 1ce32950da3..33c4a1578f3 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1492,7 +1492,9 @@ struct catchtag | |||
| 1492 | Lisp_Object tag; | 1492 | Lisp_Object tag; |
| 1493 | Lisp_Object val; | 1493 | Lisp_Object val; |
| 1494 | struct catchtag *next; | 1494 | struct catchtag *next; |
| 1495 | /* jmp_buf jmp; /* We don't need this for GC purposes */ | 1495 | #if 0 /* We don't need this for GC purposes */ |
| 1496 | jmp_buf jmp; | ||
| 1497 | #endif | ||
| 1496 | }; | 1498 | }; |
| 1497 | 1499 | ||
| 1498 | struct backtrace | 1500 | struct backtrace |