diff options
| author | Paul Eggert | 2014-06-11 10:54:07 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-06-11 10:54:07 -0700 |
| commit | 15684f524b58e19fc7d44b09db0d15a8f582118a (patch) | |
| tree | 6af73cb3385ac199d533c6039adcf1ce7bacbe12 /src | |
| parent | faded0b1394b3925f646d2b4905e49e0c130e37b (diff) | |
| download | emacs-15684f524b58e19fc7d44b09db0d15a8f582118a.tar.gz emacs-15684f524b58e19fc7d44b09db0d15a8f582118a.zip | |
Spelling fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/alloc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/alloc.c b/src/alloc.c index a7446e6b708..e5116acaefd 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4556,7 +4556,7 @@ maybe_lisp_pointer (void *p) | |||
| 4556 | { | 4556 | { |
| 4557 | return !((intptr_t) p % (USE_LSB_TAG ? GCALIGNMENT : 2)); | 4557 | return !((intptr_t) p % (USE_LSB_TAG ? GCALIGNMENT : 2)); |
| 4558 | } | 4558 | } |
| 4559 | 4559 | ||
| 4560 | /* If P points to Lisp data, mark that as live if it isn't already | 4560 | /* If P points to Lisp data, mark that as live if it isn't already |
| 4561 | marked. */ | 4561 | marked. */ |
| 4562 | 4562 | ||
| @@ -5023,7 +5023,7 @@ relocatable_string_data_p (const char *str) | |||
| 5023 | { | 5023 | { |
| 5024 | if (PURE_POINTER_P (str)) | 5024 | if (PURE_POINTER_P (str)) |
| 5025 | return 0; | 5025 | return 0; |
| 5026 | #if GC_MARK_STACK | 5026 | #if GC_MARK_STACK |
| 5027 | if (str) | 5027 | if (str) |
| 5028 | { | 5028 | { |
| 5029 | struct sdata *sdata | 5029 | struct sdata *sdata |
| @@ -5037,7 +5037,7 @@ relocatable_string_data_p (const char *str) | |||
| 5037 | && (const char *) sdata->string->data == str); | 5037 | && (const char *) sdata->string->data == str); |
| 5038 | } | 5038 | } |
| 5039 | return 0; | 5039 | return 0; |
| 5040 | #endif /* GC_MARK_STACK */ | 5040 | #endif /* GC_MARK_STACK */ |
| 5041 | return -1; | 5041 | return -1; |
| 5042 | } | 5042 | } |
| 5043 | 5043 | ||
| @@ -5882,9 +5882,9 @@ See Info node `(elisp)Garbage Collection'. */) | |||
| 5882 | #elif (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE) | 5882 | #elif (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE) |
| 5883 | /* Old GCPROs-based method without stack marking. */ | 5883 | /* Old GCPROs-based method without stack marking. */ |
| 5884 | return garbage_collect_1 (NULL); | 5884 | return garbage_collect_1 (NULL); |
| 5885 | #else | 5885 | #else |
| 5886 | emacs_abort (); | 5886 | emacs_abort (); |
| 5887 | #endif /* GC_MARK_STACK */ | 5887 | #endif /* GC_MARK_STACK */ |
| 5888 | } | 5888 | } |
| 5889 | 5889 | ||
| 5890 | /* Mark Lisp objects in glyph matrix MATRIX. Currently the | 5890 | /* Mark Lisp objects in glyph matrix MATRIX. Currently the |
| @@ -5979,7 +5979,7 @@ static Lisp_Object | |||
| 5979 | mark_compiled (struct Lisp_Vector *ptr) | 5979 | mark_compiled (struct Lisp_Vector *ptr) |
| 5980 | { | 5980 | { |
| 5981 | int i, size = ptr->header.size & PSEUDOVECTOR_SIZE_MASK; | 5981 | int i, size = ptr->header.size & PSEUDOVECTOR_SIZE_MASK; |
| 5982 | 5982 | ||
| 5983 | VECTOR_MARK (ptr); | 5983 | VECTOR_MARK (ptr); |
| 5984 | for (i = 0; i < size; i++) | 5984 | for (i = 0; i < size; i++) |
| 5985 | if (i != COMPILED_CONSTANTS) | 5985 | if (i != COMPILED_CONSTANTS) |
| @@ -6057,7 +6057,7 @@ mark_localized_symbol (struct Lisp_Symbol *ptr) | |||
| 6057 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (ptr); | 6057 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (ptr); |
| 6058 | Lisp_Object where = blv->where; | 6058 | Lisp_Object where = blv->where; |
| 6059 | /* If the value is set up for a killed buffer or deleted | 6059 | /* If the value is set up for a killed buffer or deleted |
| 6060 | frame, restore it's global binding. If the value is | 6060 | frame, restore its global binding. If the value is |
| 6061 | forwarded to a C variable, either it's not a Lisp_Object | 6061 | forwarded to a C variable, either it's not a Lisp_Object |
| 6062 | var, or it's staticpro'd already. */ | 6062 | var, or it's staticpro'd already. */ |
| 6063 | if ((BUFFERP (where) && !BUFFER_LIVE_P (XBUFFER (where))) | 6063 | if ((BUFFERP (where) && !BUFFER_LIVE_P (XBUFFER (where))) |