aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index e0611e19ff1..17a9e5c1f6a 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -308,7 +308,7 @@ enum Lisp_Fwd_Type
308 First, there are already a couple of Lisp types that can be used if 308 First, there are already a couple of Lisp types that can be used if
309 your new type does not need to be exposed to Lisp programs nor 309 your new type does not need to be exposed to Lisp programs nor
310 displayed to users. These are Lisp_Save_Value, a Lisp_Misc 310 displayed to users. These are Lisp_Save_Value, a Lisp_Misc
311 subtype, and PVEC_OTHER, a kind of vectorlike object. The former 311 subtype; and PVEC_OTHER, a kind of vectorlike object. The former
312 is suitable for temporarily stashing away pointers and integers in 312 is suitable for temporarily stashing away pointers and integers in
313 a Lisp object (see the existing uses of make_save_value and 313 a Lisp object (see the existing uses of make_save_value and
314 XSAVE_VALUE). The latter is useful for vector-like Lisp objects 314 XSAVE_VALUE). The latter is useful for vector-like Lisp objects
@@ -322,7 +322,7 @@ enum Lisp_Fwd_Type
322 To define a new data type, add one more Lisp_Misc subtype or one 322 To define a new data type, add one more Lisp_Misc subtype or one
323 more pseudovector subtype. Pseudovectors are more suitable for 323 more pseudovector subtype. Pseudovectors are more suitable for
324 objects with several slots that need to support fast random access, 324 objects with several slots that need to support fast random access,
325 whil Lisp_Misc types are foreverything else. A pseudovector object 325 while Lisp_Misc types are for everything else. A pseudovector object
326 provides one or more slots for Lisp objects, followed by struct 326 provides one or more slots for Lisp objects, followed by struct
327 members that are accessible only from C. A Lisp_Misc object is a 327 members that are accessible only from C. A Lisp_Misc object is a
328 wrapper for a C struct that can contain anything you like. 328 wrapper for a C struct that can contain anything you like.