comparison src/edit.c @ 625:81fe2ccc1207 v7.0179

updated for version 7.0179
author vimboss
date Thu, 12 Jan 2006 23:22:24 +0000
parents 9e359e5759f6
children 732c7ae5743e
comparison
equal deleted inserted replaced
624:91e7d4a7b3b0 625:81fe2ccc1207
984 break; 984 break;
985 #endif 985 #endif
986 986
987 case K_IGNORE: /* Something mapped to nothing */ 987 case K_IGNORE: /* Something mapped to nothing */
988 break; 988 break;
989
990 #ifdef FEAT_GUI_W32
991 /* On Win32 ignore <M-F4>, we get it when closing the window was
992 * cancelled. */
993 case K_F4:
994 if (mod_mask != MOD_MASK_ALT)
995 goto normalchar;
996 break;
997 #endif
989 998
990 #ifdef FEAT_GUI 999 #ifdef FEAT_GUI
991 case K_VER_SCROLLBAR: 1000 case K_VER_SCROLLBAR:
992 ins_scroll(); 1001 ins_scroll();
993 break; 1002 break;