~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/fe-text/irssi.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Bjälevik
  • Date: 2007-04-28 02:52:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070428025201-2c4swxnpn4wr7fpg
Tags: 0.8.11-0ubuntu1
* New upstream release:
  - http://www.irssi.org/news/ChangeLog
* debian/{control,compat}:
  - Bump Standards.
* debian/patches/00list:
  - Disable 05upgrade-check-binary.patch, applied upstream.
  - Disable 08doublefree.patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
269
269
                return;
270
270
        }
271
271
 
272
 
        printf("\nYou seem to have old default.theme in "IRSSI_DIR_SHORT"/ directory.\n");
 
272
        printf("\nYou seem to have an old default.theme in %s/ directory.\n", get_irssi_dir());
273
273
        printf("Themeing system has changed a bit since last irssi release,\n");
274
274
        printf("you should either delete your old default.theme or manually\n");
275
275
        printf("merge it with the new default.theme.\n\n");
336
336
        g_mem_set_vtable(&gc_mem_table);
337
337
#endif
338
338
 
 
339
        srand(time(NULL));
 
340
 
339
341
        dummy = FALSE;
340
342
        quitting = FALSE;
341
343
        core_init_paths(argc, argv);
348
350
#ifdef HAVE_SOCKS
349
351
        SOCKSinit(argv[0]);
350
352
#endif
351
 
#ifdef ENABLE_NLS
352
 
        /* initialize the i18n stuff */
353
 
        bindtextdomain(PACKAGE, LOCALEDIR);
354
 
        textdomain(PACKAGE);
355
 
#endif
356
353
 
357
354
        /* setlocale() must be called at the beginning before any calls that
358
355
           affect it, especially regexps seem to break if they're generated
359
 
           before t his call.
 
356
           before this call.
360
357
 
361
358
           locales aren't actually used for anything else than autodetection
362
359
           of UTF-8 currently..