* src/alloc.c (purecopy): Use AUTO_STRING.

This commit is contained in:
Paul Eggert 2016-03-20 05:56:42 -07:00
parent f2da80d0e1
commit 17ba74742c

View file

@ -5427,7 +5427,7 @@ purecopy (Lisp_Object obj)
}
else
{
Lisp_Object fmt = build_pure_c_string ("Don't know how to purify: %S");
AUTO_STRING (fmt, "Don't know how to purify: %S");
Fsignal (Qerror, list1 (CALLN (Fformat, fmt, obj)));
}