diff options
| author | Pip Cet | 2021-05-16 15:44:26 +0200 |
|---|---|---|
| committer | Stefan Monnier | 2022-07-01 09:42:00 -0400 |
| commit | 094fd7ded365434b08f5d7c8ff499d17d566d54b (patch) | |
| tree | 40366419e9d899e48c26439f428fee7b741d307c /src/json.c | |
| parent | 3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff) | |
| download | emacs-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.c | 4 |
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 | ||
| 1109 | void | 1109 | void |