diff options
| author | Karl Heuer | 1997-12-04 03:30:03 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-12-04 03:30:03 +0000 |
| commit | cd67c79783c5ef7da0defef99d08a7c2d6db7a04 (patch) | |
| tree | 28bd025704efac242e68b258811d67f9ed8469ec /src/alloc.c | |
| parent | 0db2ec7752fde2402181cb26762925a96275e7f3 (diff) | |
| download | emacs-cd67c79783c5ef7da0defef99d08a7c2d6db7a04.tar.gz emacs-cd67c79783c5ef7da0defef99d08a7c2d6db7a04.zip | |
Comment fix (to avoid "unterminated comment" warning).
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 |