From: root Date: Sat, 24 Nov 2007 11:06:12 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=40fd7e6d1a01e741cd669376f7f1d0b34727d5b5;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/src/command.C b/src/command.C index 1efe0353..2c1fa719 100644 --- a/src/command.C +++ b/src/command.C @@ -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; diff --git a/src/main.C b/src/main.C index 445ddaa1..5c4dbd1e 100644 --- a/src/main.C +++ b/src/main.C @@ -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); */ diff --git a/src/rxvt.C b/src/rxvt.C index f25acdb3..d5c8eacc 100644 --- a/src/rxvt.C +++ b/src/rxvt.C @@ -52,7 +52,7 @@ try #endif return EXIT_FAILURE; - ev::ev_loop (0); + ev_loop (0); return EXIT_SUCCESS; } diff --git a/src/rxvtd.C b/src/rxvtd.C index 9da0f6ee..8f9de8aa 100644 --- a/src/rxvtd.C +++ b/src/rxvtd.C @@ -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; }