aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c
index 0389eb49b06..d06b9916b3a 100644
--- a/src/data.c
+++ b/src/data.c
@@ -972,9 +972,8 @@ wrong_range (Lisp_Object min, Lisp_Object max, Lisp_Object wrong)
972 AUTO_STRING (value_should_be_from, "Value should be from "); 972 AUTO_STRING (value_should_be_from, "Value should be from ");
973 AUTO_STRING (to, " to "); 973 AUTO_STRING (to, " to ");
974 xsignal2 (Qerror, 974 xsignal2 (Qerror,
975 Fconcat (4, ((Lisp_Object []) 975 CALLN (Fconcat, value_should_be_from, Fnumber_to_string (min),
976 {value_should_be_from, Fnumber_to_string (min), 976 to, Fnumber_to_string (max)),
977 to, Fnumber_to_string (max)})),
978 wrong); 977 wrong);
979} 978}
980 979