diff options
| author | Karl Heuer | 1995-01-03 01:45:36 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-03 01:45:36 +0000 |
| commit | 303a5c93579d12f0dfe1774bc8ca05127abbd16c (patch) | |
| tree | 192e35a40ba321073665672c7b514b95da0aca1c /src | |
| parent | e2ba196c2a13614f3b9ae21695218a04211ce444 (diff) | |
| download | emacs-303a5c93579d12f0dfe1774bc8ca05127abbd16c.tar.gz emacs-303a5c93579d12f0dfe1774bc8ca05127abbd16c.zip | |
Use consistent spelling in comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 6 |
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; | |||
| 202 | #define PSEUDOVECTOR_FLAG ((ARRAY_MARK_FLAG >> 1) & ~ARRAY_MARK_FLAG) | 202 | #define PSEUDOVECTOR_FLAG ((ARRAY_MARK_FLAG >> 1) & ~ARRAY_MARK_FLAG) |
| 203 | #endif | 203 | #endif |
| 204 | 204 | ||
| 205 | /* In a pseudo-vector, the size field actually contains a word with one | 205 | /* In a pseudovector, the size field actually contains a word with one |
| 206 | PSEUDOVECTOR_FLAG bit set, and exactly one of the following bits to | 206 | PSEUDOVECTOR_FLAG bit set, and exactly one of the following bits to |
| 207 | indicate the actual type. */ | 207 | indicate the actual type. */ |
| 208 | enum pvec_type | 208 | enum pvec_type |
| @@ -830,13 +830,13 @@ typedef unsigned char UCHAR; | |||
| 830 | #define GC_SOME_BUFFER_LOCAL_VALUEP(x) (GC_MISCP (x) && XMISC (x)->type == Lisp_Misc_Some_Buffer_Local_Value) | 830 | #define GC_SOME_BUFFER_LOCAL_VALUEP(x) (GC_MISCP (x) && XMISC (x)->type == Lisp_Misc_Some_Buffer_Local_Value) |
| 831 | 831 | ||
| 832 | 832 | ||
| 833 | /* True if object X is a pseudo vector whose code is CODE. */ | 833 | /* True if object X is a pseudovector whose code is CODE. */ |
| 834 | #define PSEUDOVECTORP(x, code) \ | 834 | #define PSEUDOVECTORP(x, code) \ |
| 835 | (VECTORLIKEP (x) \ | 835 | (VECTORLIKEP (x) \ |
| 836 | && (((XVECTOR (x)->size & (PSEUDOVECTOR_FLAG | (code)))) \ | 836 | && (((XVECTOR (x)->size & (PSEUDOVECTOR_FLAG | (code)))) \ |
| 837 | == (PSEUDOVECTOR_FLAG | (code)))) | 837 | == (PSEUDOVECTOR_FLAG | (code)))) |
| 838 | 838 | ||
| 839 | /* True if object X is a pseudo vector whose code is CODE. | 839 | /* True if object X is a pseudovector whose code is CODE. |
| 840 | This one works during GC. */ | 840 | This one works during GC. */ |
| 841 | #define GC_PSEUDOVECTORP(x, code) \ | 841 | #define GC_PSEUDOVECTORP(x, code) \ |
| 842 | (GC_VECTORLIKEP (x) \ | 842 | (GC_VECTORLIKEP (x) \ |