aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index ace7abd80c8..08b8765a6f7 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3646,7 +3646,7 @@ skip_lazy_string (Lisp_Object readcharfun)
3646 and record where in the file it comes from. */ 3646 and record where in the file it comes from. */
3647 3647
3648 /* First exchange the two saved_strings. */ 3648 /* First exchange the two saved_strings. */
3649 verify (ARRAYELTS (saved_strings) == 2); 3649 static_assert (ARRAYELTS (saved_strings) == 2);
3650 struct saved_string t = saved_strings[0]; 3650 struct saved_string t = saved_strings[0];
3651 saved_strings[0] = saved_strings[1]; 3651 saved_strings[0] = saved_strings[1];
3652 saved_strings[1] = t; 3652 saved_strings[1] = t;