summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-01-03 01:45:36 +0000
committerKarl Heuer <kwzh@gnu.org>1995-01-03 01:45:36 +0000
commit90cc0be7b0bb67e1cf7d129456b7baf712b11b68 (patch)
treee6da6d380289288325c427b5a11aa0db4fa97978
parentdc2ba25b2f348c99af109643f4dafd6008930c74 (diff)
downloademacs-90cc0be7b0bb67e1cf7d129456b7baf712b11b68.tar.gz
Use consistent spelling in comments.
-rw-r--r--src/lisp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 9fde4b20281..71ac265fa61 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -202,7 +202,7 @@ Lisp_Object;
#define PSEUDOVECTOR_FLAG ((ARRAY_MARK_FLAG >> 1) & ~ARRAY_MARK_FLAG)
#endif
-/* In a pseudo-vector, the size field actually contains a word with one
+/* In a pseudovector, the size field actually contains a word with one
PSEUDOVECTOR_FLAG bit set, and exactly one of the following bits to
indicate the actual type. */
enum pvec_type
@@ -830,13 +830,13 @@ typedef unsigned char UCHAR;
#define GC_SOME_BUFFER_LOCAL_VALUEP(x) (GC_MISCP (x) && XMISC (x)->type == Lisp_Misc_Some_Buffer_Local_Value)
-/* True if object X is a pseudo vector whose code is CODE. */
+/* True if object X is a pseudovector whose code is CODE. */
#define PSEUDOVECTORP(x, code) \
(VECTORLIKEP (x) \
&& (((XVECTOR (x)->size & (PSEUDOVECTOR_FLAG | (code)))) \
== (PSEUDOVECTOR_FLAG | (code))))
-/* True if object X is a pseudo vector whose code is CODE.
+/* True if object X is a pseudovector whose code is CODE.
This one works during GC. */
#define GC_PSEUDOVECTORP(x, code) \
(GC_VECTORLIKEP (x) \