comparison src/main.c @ 294:1c1cbdc42f75 v7.0077

updated for version 7.0077
author vimboss
date Tue, 31 May 2005 22:22:17 +0000
parents a711f7a6852d
children 6c62b9b939bd
comparison
equal deleted inserted replaced
293:f811be6fa9b5 294:1c1cbdc42f75
811 break; 811 break;
812 #endif 812 #endif
813 case 'V': /* "-V{N}" Verbose level */ 813 case 'V': /* "-V{N}" Verbose level */
814 /* default is 10: a little bit verbose */ 814 /* default is 10: a little bit verbose */
815 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10); 815 p_verbose = get_number_arg((char_u *)argv[0], &argv_idx, 10);
816 if (argv[0][argv_idx] != NUL)
817 {
818 set_option_value((char_u *)"verbosefile", 0L,
819 (char_u *)argv[0] + argv_idx, 0);
820 argv_idx = STRLEN(argv[0]);
821 }
816 break; 822 break;
817 823
818 case 'v': /* "-v" Vi-mode (as if called "vi") */ 824 case 'v': /* "-v" Vi-mode (as if called "vi") */
819 exmode_active = 0; 825 exmode_active = 0;
820 #ifdef FEAT_GUI 826 #ifdef FEAT_GUI