]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comments
authorEli Zaretskii <eliz@gnu.org>
Sat, 17 Dec 2016 17:38:36 +0000 (19:38 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 17 Dec 2016 17:38:36 +0000 (19:38 +0200)
* src/thread.h (struct thread_state): Fix comments.
* src/process.c (wait_reading_process_output): Fix a typo in
commentary.

src/process.c
src/thread.h

index 31c9d74a3f2d367d31dccbce6a2a19e32010765b..9139a36d4fd7232b21ddf02e88c2540063c83b34 100644 (file)
@@ -4937,8 +4937,8 @@ wait_reading_process_output_1 (void)
    READ_KBD is:
      0 to ignore keyboard input, or
      1 to return when input is available, or
-     -1 meaning caller will actually read the input, so don't throw to
-       the quit handler, or
+    -1 meaning caller will actually read the input, so don't throw to
+       the quit handler
 
    DO_DISPLAY means redisplay should be done to show subprocess
      output that arrives.
index 739069a630b627a42970445cde2f7ad68e6b3aea..e6084b13c22afd483e8986c7b219856287359bbf 100644 (file)
@@ -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.