]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove incorrect use of AUTO_STRING
authorPhilipp Stephani <phst@google.com>
Sun, 7 Jan 2018 15:44:45 +0000 (16:44 +0100)
committerPhilipp Stephani <phst@google.com>
Sun, 7 Jan 2018 15:44:45 +0000 (16:44 +0100)
* src/lread.c (load_error_old_style_backquotes): Remove incorrect use
of AUTO_STRING.

src/lread.c

index bcf3b7f55c7f88a8d39ccc1723f3acd76b1c1145..28d4bf9a4fe059cfb69cf06acf11adc44c1df071 100644 (file)
@@ -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!");