emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 17ba747: * src/alloc.c (purecopy): Use AUTO_STRING.


From: Paul Eggert
Subject: [Emacs-diffs] master 17ba747: * src/alloc.c (purecopy): Use AUTO_STRING.
Date: Sun, 20 Mar 2016 12:58:21 +0000

branch: master
commit 17ba74742c2e6085b044d10c1e03f32a04b09d78
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * src/alloc.c (purecopy): Use AUTO_STRING.
---
 src/alloc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index eaa92ee..66dbde0 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -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)));
     }
 



reply via email to

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