From 73526123f2293f1b83fe51d6e30676f84c95c7b6 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 7 Jan 2018 16:44:45 +0100 Subject: [PATCH] Remove incorrect use of AUTO_STRING * src/lread.c (load_error_old_style_backquotes): Remove incorrect use of AUTO_STRING. --- src/lread.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lread.c b/src/lread.c index bcf3b7f55c7..28d4bf9a4fe 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1007,10 +1007,7 @@ static _Noreturn void load_error_old_style_backquotes (void) { if (NILP (Vload_file_name)) - { - AUTO_STRING (message, "Old-style backquotes detected!"); - xsignal1 (Qerror, message); - } + xsignal1 (Qerror, build_string ("Old-style backquotes detected!")); else { AUTO_STRING (format, "Loading `%s': old-style backquotes detected!"); -- 2.39.5