emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 7352612 1/2: Remove incorrect use of AUTO_STRING


From: Philipp Stephani
Subject: [Emacs-diffs] master 7352612 1/2: Remove incorrect use of AUTO_STRING
Date: Sun, 7 Jan 2018 10:47:59 -0500 (EST)

branch: master
commit 73526123f2293f1b83fe51d6e30676f84c95c7b6
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    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 bcf3b7f..28d4bf9 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!");



reply via email to

[Prev in Thread] Current Thread [Next in Thread]