aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-12-04 03:30:03 +0000
committerKarl Heuer1997-12-04 03:30:03 +0000
commitcd67c79783c5ef7da0defef99d08a7c2d6db7a04 (patch)
tree28bd025704efac242e68b258811d67f9ed8469ec
parent0db2ec7752fde2402181cb26762925a96275e7f3 (diff)
downloademacs-cd67c79783c5ef7da0defef99d08a7c2d6db7a04.tar.gz
emacs-cd67c79783c5ef7da0defef99d08a7c2d6db7a04.zip
Comment fix (to avoid "unterminated comment" warning).
-rw-r--r--src/alloc.c4
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
1498struct backtrace 1500struct backtrace