summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-12-22 10:13:46 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2016-12-22 10:14:11 -0800
commit73349822cbd6e50526eda9c75453584d73dfca83 (patch)
tree444c07a3fbaaf3b2b02e1a08a18bad5bab7bbef0 /src/thread.h
parentb10bd71987cdeb753c106145d6270a359505359c (diff)
downloademacs-73349822cbd6e50526eda9c75453584d73dfca83.tar.gz
; Spelling fixes
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h4
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
/* The thread's function. */
Lisp_Object function;
- /* If non-nil, this thread has been signalled. */
+ /* If non-nil, this thread has been signaled. */
Lisp_Object error_symbol;
Lisp_Object error_data;
@@ -60,7 +60,7 @@ struct thread_state
/* A list of currently active byte-code execution value stacks.
Fbyte_code adds an entry to the head of this list before it starts
processing byte-code, and it removed the entry again when it is
- done. Signalling an error truncates the list. */
+ done. Signaling an error truncates the list. */
struct byte_stack *m_byte_stack_list;
#define byte_stack_list (current_thread->m_byte_stack_list)