comparison src/main.c @ 681:9364d114ed8d v7.0204

updated for version 7.0204
author vimboss
date Wed, 22 Feb 2006 21:25:37 +0000
parents 5b101ff9d4c4
children d7e33248b9c8
comparison
equal deleted inserted replaced
680:5b101ff9d4c4 681:9364d114ed8d
633 * If the error file can't be read, exit before doing anything else. 633 * If the error file can't be read, exit before doing anything else.
634 */ 634 */
635 if (params.edit_type == EDIT_QF) 635 if (params.edit_type == EDIT_QF)
636 { 636 {
637 if (params.use_ef != NULL) 637 if (params.use_ef != NULL)
638 {
638 set_string_option_direct((char_u *)"ef", -1, 639 set_string_option_direct((char_u *)"ef", -1,
639 params.use_ef, OPT_FREE); 640 params.use_ef, OPT_FREE);
641 # ifdef FEAT_EVAL
642 set_option_scriptID((char_u *)"ef", SID_CARG);
643 # endif
644 }
640 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0) 645 if (qf_init(NULL, p_ef, p_efm, TRUE) < 0)
641 { 646 {
642 out_char('\n'); 647 out_char('\n');
643 mch_exit(3); 648 mch_exit(3);
644 } 649 }