From: Karl Heuer Date: Tue, 3 Jan 1995 01:45:36 +0000 (+0000) Subject: Use consistent spelling in comments. X-Git-Tag: emacs-19.34~5534 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=303a5c93579d12f0dfe1774bc8ca05127abbd16c;p=emacs.git Use consistent spelling in comments. --- 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) \