aboutsummaryrefslogtreecommitdiffstats
path: root/src/json.c
diff options
context:
space:
mode:
authorPip Cet2021-05-16 15:44:26 +0200
committerStefan Monnier2022-07-01 09:42:00 -0400
commit094fd7ded365434b08f5d7c8ff499d17d566d54b (patch)
tree40366419e9d899e48c26439f428fee7b741d307c /src/json.c
parent3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff)
downloademacs-scratch/no-purespace-2.tar.gz
emacs-scratch/no-purespace-2.zip
Remove purespace from Emacsscratch/no-purespace-2
Diffstat (limited to 'src/json.c')
-rw-r--r--src/json.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/json.c b/src/json.c
index 763f463aa4e..d30e82d8164 100644
--- a/src/json.c
+++ b/src/json.c
@@ -1102,8 +1102,8 @@ define_error (Lisp_Object name, const char *message, Lisp_Object parent)
1102 eassert (CONSP (parent_conditions)); 1102 eassert (CONSP (parent_conditions));
1103 eassert (!NILP (Fmemq (parent, parent_conditions))); 1103 eassert (!NILP (Fmemq (parent, parent_conditions)));
1104 eassert (NILP (Fmemq (name, parent_conditions))); 1104 eassert (NILP (Fmemq (name, parent_conditions)));
1105 Fput (name, Qerror_conditions, pure_cons (name, parent_conditions)); 1105 Fput (name, Qerror_conditions, Fcons (name, parent_conditions));
1106 Fput (name, Qerror_message, build_pure_c_string (message)); 1106 Fput (name, Qerror_message, build_string (message));
1107} 1107}
1108 1108
1109void 1109void