Fix use of obsolete 'emergency' warning level

* src/alloc.c (display_malloc_warning): Use new style ':emergency'
warning level instead of obsolete 'emergency'.
This commit is contained in:
Stefan Kangas 2020-12-23 05:16:02 +01:00
parent a649869d04
commit 832d756893

View file

@ -664,7 +664,7 @@ display_malloc_warning (void)
call3 (intern ("display-warning"),
intern ("alloc"),
build_string (pending_malloc_warning),
intern ("emergency"));
intern (":emergency"));
pending_malloc_warning = 0;
}