1 Only in ./easyedit-1.4.6: ee
2 diff -u ../easyedit-1.4.6/ee.c ./easyedit-1.4.6/ee.c
3 --- ../easyedit-1.4.6/ee.c 2002-09-21 09:46:16.000000000 +0900
4 +++ ./easyedit-1.4.6/ee.c 2008-04-29 15:11:16.397627577 +0900
6 struct menu_entries file_menu[] = {
7 {"", NULL, NULL, NULL, NULL, -1},
8 {"", NULL, NULL, file_op, NULL, READ_FILE},
9 - {"", NULL, NULL, file_op, NULL, WRITE_FILE},
10 +// {"", NULL, NULL, file_op, NULL, WRITE_FILE},
11 {"", NULL, NULL, file_op, NULL, SAVE_FILE},
12 - {"", NULL, NULL, NULL, print_buffer, -1},
13 +// {"", NULL, NULL, NULL, print_buffer, -1},
14 {NULL, NULL, NULL, NULL, NULL, -1}
21 - else if (arg == WRITE_FILE)
22 +/* else if (arg == WRITE_FILE)
24 string = get_string(file_write_prompt_str, TRUE);
25 tmp_file = resolve_name(string);
27 if (tmp_file != string)
32 else if (arg == SAVE_FILE)
36 leave_menu[2].item_string = catgetlocal( 11, "no save");
37 file_menu[0].item_string = catgetlocal( 12, "file menu");
38 file_menu[1].item_string = catgetlocal( 13, "read a file");
39 - file_menu[2].item_string = catgetlocal( 14, "write a file");
40 - file_menu[3].item_string = catgetlocal( 15, "save file");
41 - file_menu[4].item_string = catgetlocal( 16, "print editor contents");
42 +// file_menu[2].item_string = catgetlocal( 14, "write a file");
43 + file_menu[2].item_string = catgetlocal( 15, "save file");
44 +// file_menu[4].item_string = catgetlocal( 16, "print editor contents");
45 search_menu[0].item_string = catgetlocal( 17, "search menu");
46 search_menu[1].item_string = catgetlocal( 18, "search for ...");
47 search_menu[2].item_string = catgetlocal( 19, "search");