]> git.eshelyaron.com Git - emacs.git/commitdiff
use NILP
authorTom Tromey <tromey@redhat.com>
Sun, 19 Aug 2012 09:25:06 +0000 (03:25 -0600)
committerTom Tromey <tromey@redhat.com>
Sun, 19 Aug 2012 09:25:06 +0000 (03:25 -0600)
src/thread.c

index 4657d6a797efa7dd9c3c5b7c12ac01d18ba5746f..83f25e8d462132ca1bb1ee358c469c3c1bdf2e91 100644 (file)
@@ -61,7 +61,7 @@ post_acquire_global_lock (struct thread_state *self)
   self->m_current_buffer = 0;
   set_buffer_internal (XBUFFER (buffer));
 
-  if (!EQ (current_thread->error_symbol, Qnil))
+  if (!NILP (current_thread->error_symbol))
     {
       Lisp_Object sym = current_thread->error_symbol;
       Lisp_Object data = current_thread->error_data;
@@ -110,7 +110,7 @@ lisp_mutex_lock (lisp_mutex_t *mutex, int new_count)
   self = current_thread;
   self->wait_condvar = &mutex->condition;
   while (mutex->owner != NULL && (new_count != 0
-                                 || EQ (self->error_symbol, Qnil)))
+                                 || NILP (self->error_symbol)))
     sys_cond_wait (&mutex->condition, &global_lock);
   self->wait_condvar = NULL;
 
@@ -796,7 +796,7 @@ thread_join_callback (void *arg)
   XSETTHREAD (thread, tstate);
   self->event_object = thread;
   self->wait_condvar = &tstate->thread_condvar;
-  while (tstate->m_specpdl != NULL && EQ (self->error_symbol, Qnil))
+  while (tstate->m_specpdl != NULL && NILP (self->error_symbol))
     sys_cond_wait (self->wait_condvar, &global_lock);
 
   self->wait_condvar = NULL;