comparison src/getchar.c @ 179:7fd70926e2e1 v7.0055

updated for version 7.0055
author vimboss
date Fri, 04 Mar 2005 23:39:37 +0000
parents 410fa1a31baf
children 7e70fc748752
comparison
equal deleted inserted replaced
178:4d53c2a2af94 179:7fd70926e2e1
1481 #ifdef FEAT_GUI 1481 #ifdef FEAT_GUI
1482 || c == CSI 1482 || c == CSI
1483 #endif 1483 #endif
1484 ) 1484 )
1485 { 1485 {
1486 int save_allow_keys = allow_keys;
1487
1486 ++no_mapping; 1488 ++no_mapping;
1489 allow_keys = 0; /* make sure BS is not found */
1487 c2 = vgetorpeek(TRUE); /* no mapping for these chars */ 1490 c2 = vgetorpeek(TRUE); /* no mapping for these chars */
1488 c = vgetorpeek(TRUE); 1491 c = vgetorpeek(TRUE);
1489 --no_mapping; 1492 --no_mapping;
1493 allow_keys = save_allow_keys;
1490 if (c2 == KS_MODIFIER) 1494 if (c2 == KS_MODIFIER)
1491 { 1495 {
1492 mod_mask = c; 1496 mod_mask = c;
1493 continue; 1497 continue;
1494 } 1498 }