comparison src/getchar.c @ 1380:99a9e42e5688 v7.1.095

updated for version 7.1-095
author vimboss
date Wed, 05 Sep 2007 19:47:23 +0000
parents f89c43568067
children bdcfe793d49f
comparison
equal deleted inserted replaced
1379:50f5ac5b90de 1380:99a9e42e5688
1594 { 1594 {
1595 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE); 1595 gtk_menu_shell_select_first(GTK_MENU_SHELL(gui.menubar), FALSE);
1596 continue; 1596 continue;
1597 } 1597 }
1598 #endif 1598 #endif
1599
1600 #ifdef FEAT_GUI 1599 #ifdef FEAT_GUI
1600 /* The caller doesn't need to know that the focus event is delayed
1601 * until getting a character. */
1602 if (c == K_FOCUSGAINED || c == K_FOCUSLOST)
1603 {
1604 ui_focus_change(c == K_FOCUSGAINED);
1605 continue;
1606 }
1607
1601 /* Translate K_CSI to CSI. The special key is only used to avoid 1608 /* Translate K_CSI to CSI. The special key is only used to avoid
1602 * it being recognized as the start of a special key. */ 1609 * it being recognized as the start of a special key. */
1603 if (c == K_CSI) 1610 if (c == K_CSI)
1604 c = CSI; 1611 c = CSI;
1605 #endif 1612 #endif