summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2016-12-17 19:38:36 +0200
committerEli Zaretskii <eliz@gnu.org>2016-12-17 19:38:36 +0200
commit0390edcb81f748d00d54d37fc4e6233a70dbda50 (patch)
tree582be0a155ba0c21a6fde731031da058685c86ca /src/thread.h
parent0757b4f2f73daa67e5c5217964b423c6a0239e95 (diff)
downloademacs-0390edcb81f748d00d54d37fc4e6233a70dbda50.tar.gz
Fix comments
* src/thread.h (struct thread_state): Fix comments. * src/process.c (wait_reading_process_output): Fix a typo in commentary.
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 739069a630b..e6084b13c22 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -78,7 +78,7 @@ struct thread_state
/* Chain of condition handlers currently in effect.
The elements of this chain are contained in the stack frames
of Fcondition_case and internal_condition_case.
- When an error is signaled (by calling Fsignal, below),
+ When an error is signaled (by calling Fsignal),
this chain is searched for an element that applies. */
struct handler *m_handlerlist;
#define handlerlist (current_thread->m_handlerlist)
@@ -143,7 +143,7 @@ struct thread_state
Lisp_Object m_re_match_object;
#define re_match_object (current_thread->m_re_match_object)
- /* This variable is different from waiting_for_input in keyboard.c.
+ /* This member is different from waiting_for_input.
It is used to communicate to a lisp process-filter/sentinel (via the
function Fwaiting_for_user_input_p) whether Emacs was waiting
for user-input when that process-filter was called.