Diff for /Amaya/amaya/query.c between versions 1.36 and 1.37

version 1.36, 1997/02/14 20:01:34 version 1.37, 1997/02/15 17:27:29
Line 1131  void                QueryInit () Line 1131  void                QueryInit ()
 #endif  #endif
 {  {
   
   #ifdef AMAYA_JAVA
      JavaSetSelectCallback(W3ContinueRequest);
   #endif
   
    AmayaIsAlive = TRUE;     AmayaIsAlive = TRUE;
    AHTProfile_newAmaya (HTAppName, HTAppVersion);     AHTProfile_newAmaya (HTAppName, HTAppVersion);
   
Line 1217  static int          LoopForStop (AHTReqC Line 1221  static int          LoopForStop (AHTReqC
           /* Amaya was killed by one of the callback handlers */            /* Amaya was killed by one of the callback handlers */
           exit (0);            exit (0);
   
         status = XtAppPending (app_cont);  #ifdef AMAYA_JAVA
         if (status & XtIMXEvent)          JavaPollLoop(app_cont);
           {  #else /* ! AMAYA_JAVA */
              XtAppNextEvent (app_cont, &ev);          status = XtAppPending (app_cont);
              TtaHandleOneEvent (&ev);          if (status & XtIMXEvent)
           }            {
         else if (status & (XtIMAll & (~XtIMXEvent)))               XtAppNextEvent (app_cont, &ev);
           {               TtaHandleOneEvent (&ev);
              XtAppProcessEvent (app_cont,            }
                                 (XtIMAll & (~XtIMXEvent)));          else if (status & (XtIMAll & (~XtIMXEvent)))
           }            {
         else               XtAppProcessEvent (app_cont,
           {                                  (XtIMAll & (~XtIMXEvent)));
              XtAppNextEvent (app_cont, &ev);            }
              TtaHandleOneEvent (&ev);          else
           }            {
                XtAppNextEvent (app_cont, &ev);
                TtaHandleOneEvent (&ev);
             }
   #endif /* AMAYA_JAVA */
 #endif /* WWW_XWINDOWS */  #endif /* WWW_XWINDOWS */
      }       }
   
Line 1977  int                 docid; Line 1985  int                 docid;
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

Removed from v.1.36  
changed lines
  Added in v.1.37


Webmaster