diff options
| author | Paul Eggert | 2016-12-22 10:13:46 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-12-22 10:14:11 -0800 |
| commit | 73349822cbd6e50526eda9c75453584d73dfca83 (patch) | |
| tree | 444c07a3fbaaf3b2b02e1a08a18bad5bab7bbef0 /src/thread.h | |
| parent | b10bd71987cdeb753c106145d6270a359505359c (diff) | |
| download | emacs-73349822cbd6e50526eda9c75453584d73dfca83.tar.gz emacs-73349822cbd6e50526eda9c75453584d73dfca83.zip | |
; Spelling fixes
Diffstat (limited to 'src/thread.h')
| -rw-r--r-- | src/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread.h b/src/thread.h index 0090652b358..33f8ea70636 100644 --- a/src/thread.h +++ b/src/thread.h | |||
| @@ -48,7 +48,7 @@ struct thread_state | |||
| 48 | /* The thread's function. */ | 48 | /* The thread's function. */ |
| 49 | Lisp_Object function; | 49 | Lisp_Object function; |
| 50 | 50 | ||
| 51 | /* If non-nil, this thread has been signalled. */ | 51 | /* If non-nil, this thread has been signaled. */ |
| 52 | Lisp_Object error_symbol; | 52 | Lisp_Object error_symbol; |
| 53 | Lisp_Object error_data; | 53 | Lisp_Object error_data; |
| 54 | 54 | ||
| @@ -60,7 +60,7 @@ struct thread_state | |||
| 60 | /* A list of currently active byte-code execution value stacks. | 60 | /* A list of currently active byte-code execution value stacks. |
| 61 | Fbyte_code adds an entry to the head of this list before it starts | 61 | Fbyte_code adds an entry to the head of this list before it starts |
| 62 | processing byte-code, and it removed the entry again when it is | 62 | processing byte-code, and it removed the entry again when it is |
| 63 | done. Signalling an error truncates the list. */ | 63 | done. Signaling an error truncates the list. */ |
| 64 | struct byte_stack *m_byte_stack_list; | 64 | struct byte_stack *m_byte_stack_list; |
| 65 | #define byte_stack_list (current_thread->m_byte_stack_list) | 65 | #define byte_stack_list (current_thread->m_byte_stack_list) |
| 66 | 66 | ||