comparison src/aim.c @ 2460:049822b93239

[gaim-migrate @ 2473] don't turn on ispell unless you want it. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 09 Oct 2001 19:18:41 +0000
parents 61b816a7b467
children 7e4757801725
comparison
equal deleted inserted replaced
2459:a25223b2c29b 2460:049822b93239
634 } 634 }
635 635
636 if (misc_options & OPT_MISC_DEBUG) 636 if (misc_options & OPT_MISC_DEBUG)
637 show_debug(); 637 show_debug();
638 638
639 gtkspell_start(NULL, ispell_cmd); 639 if (convo_options & OPT_CONVO_CHECK_SPELLING)
640 gtkspell_start(NULL, ispell_cmd);
640 #ifdef USE_PERL 641 #ifdef USE_PERL
641 perl_autoload(); 642 perl_autoload();
642 #endif 643 #endif
643 static_proto_init(); 644 static_proto_init();
644 645
679 680
680 gtk_main(); 681 gtk_main();
681 682
682 #endif /* USE_APPLET */ 683 #endif /* USE_APPLET */
683 684
684 gtkspell_stop(); 685 if (convo_options & OPT_CONVO_CHECK_SPELLING)
686 gtkspell_stop();
685 core_quit(); 687 core_quit();
686 688
687 return 0; 689 return 0;
688 690
689 } 691 }