*** empty log message ***
authorroot <root>
Sat, 24 Nov 2007 11:06:12 +0000 (11:06 +0000)
committerroot <root>
Sat, 24 Nov 2007 11:06:12 +0000 (11:06 +0000)
src/command.C
src/main.C
src/rxvt.C
src/rxvtd.C

index 1efe0353dd331d2fe4bde606c578dd1b5da47264..2c1fa7193a4f94f15d58e38515d94b99c7d97197 100644 (file)
@@ -2229,7 +2229,7 @@ rxvt_term::cmd_parse ()
                     {
                       refresh_count = 0;
 
-                      if (!option (Opt_skipScroll) || ev::ev_time () > ev::now () + 1. / 60.)
+                      if (!option (Opt_skipScroll) || ev_time () > ev::now () + 1. / 60.)
                         {
                           refreshnow = true;
                           ch = NOCHAR;
index 445ddaa19e4d8ec8d75125aa948d5e140ac8c265..5c4dbd1e704de41babf003dc937b4c5029298837 100644 (file)
@@ -624,7 +624,7 @@ rxvt_init ()
 {
   ptytty::init ();
 
-  if (!ev::ev_default_loop (0))
+  if (!ev_default_loop (0))
     rxvt_fatal ("cannot initialise libev (bad value for LIBEV_METHODS?)\n");
 
   rxvt_environ = environ;
@@ -632,8 +632,8 @@ rxvt_init ()
   signal (SIGHUP,  SIG_IGN);
   signal (SIGPIPE, SIG_IGN);
 
-  sig_handlers.sw_term.start (SIGTERM); ev::ev_unref ();
-  sig_handlers.sw_int.start  (SIGINT);  ev::ev_unref ();
+  sig_handlers.sw_term.start (SIGTERM); ev_unref ();
+  sig_handlers.sw_int.start  (SIGINT);  ev_unref ();
 
   /* need to trap SIGURG for SVR4 (Unixware) rlogin */
   /* signal (SIGURG, SIG_DFL); */
index f25acdb35bf308200b0e09337ab2b0171d75c5b9..d5c8eaccc43db4167e48ad2baba73aa81a9bb384 100644 (file)
@@ -52,7 +52,7 @@ try
 #endif
       return EXIT_FAILURE;
 
-    ev::ev_loop (0);
+    ev_loop (0);
 
     return EXIT_SUCCESS;
   }
index 9da0f6eeb328617845f0b0eca3aae8b10d7d1382..8f9de8aa703c7f40daa69230ea1131cd2e881e2b 100644 (file)
@@ -274,10 +274,10 @@ main (int argc, const char *const *argv)
       else if (pid > 0)
         _exit (EXIT_SUCCESS);
 
-      ev::ev_default_fork ();
+      ev_default_fork ();
     }
 
-  ev::ev_loop (0);
+  ev_loop (0);
 
   return EXIT_SUCCESS;
 }