summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c')
-rw-r--r--macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c
index b2b85cf582..b3fca7afc5 100644
--- a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c
+++ b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/context_stack.c
@@ -49,7 +49,7 @@ enum context
pop_context ()
{
if (top == 0)
- abort ();
+ fatal ("context stack empty");
debug (">>>>>>>>>>>>>POPPING STACK AT %d", top - 1);
return stack[--top];
@@ -96,7 +96,7 @@ ELEMENT *
pop_region ()
{
if (region_top == 0)
- abort ();
+ fatal ("region stack empty");
debug (">>>>>>>>>>>>>POPPING REGION STACK AT %d", region_top - 1);
return region_stack[--region_top];