shithub: sl

Download patch

ref: 1dc8deebc22a54ef966eb9d23efa9682e185ee01
parent: 07d4e19ee7d495d9c90fecd353bfd220b3d06b2a
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Mon Apr 7 13:20:44 EDT 2025

spew thought this was funnier

--- a/src/cvalues.c
+++ b/src/cvalues.c
@@ -1091,7 +1091,7 @@
 		type_error("num", a);
 	if(!num_to_ptr(b, &bi, &tb, &bptr))
 		type_error("num", b);
-	// pointers are not really numbers
+	// a pointer is not exactly a number
 	if(ta == T_PTR)
 		type_error("num", a);
 	if(tb == T_PTR)
@@ -1123,7 +1123,7 @@
 		type_error("num", a);
 	if(!num_to_ptr(b, &bi, &tb, &bptr))
 		type_error("num", b);
-	// pointers are not really numbers
+	// a pointer is not exactly a number
 	if(ta == T_PTR)
 		type_error("num", a);
 	if(tb == T_PTR)
--