ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvt.C
Revision: 1.7
Committed: Wed Mar 17 05:15:02 2004 UTC (20 years, 2 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_7, rel-2_5
Changes since 1.6: +16 -9 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #include "../config.h"
2 #include "rxvt.h"
3
4 /*----------------------------------------------------------------------*/
5 /* main () */
6 int
7 main (int argc, const char *const *argv)
8 try
9 {
10 rxvt_init_signals ();
11
12 rxvt_term *t = new rxvt_term;
13
14 if (!t->init (argc, argv))
15 return EXIT_FAILURE;
16
17 iom.loop ();
18
19 return EXIT_SUCCESS;
20 }
21 catch (const class rxvt_failure_exception &e)
22 {
23 return EXIT_FAILURE;
24 }