comparison src/ui.c @ 1364:9947133ce85b v7.1.078

updated for version 7.1-078
author vimboss
date Wed, 15 Aug 2007 18:08:50 +0000
parents a49d06539452
children 82b5078be2dd
comparison
equal deleted inserted replaced
1363:3328b87305ef 1364:9947133ce85b
1601 #endif 1601 #endif
1602 1602
1603 #if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) \ 1603 #if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) \
1604 || defined(FEAT_XCLIPBOARD) || defined(VMS) \ 1604 || defined(FEAT_XCLIPBOARD) || defined(VMS) \
1605 || defined(FEAT_SNIFF) || defined(FEAT_CLIENTSERVER) \ 1605 || defined(FEAT_SNIFF) || defined(FEAT_CLIENTSERVER) \
1606 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
1607 || defined(FEAT_MENU))) \
1608 || defined(PROTO) 1606 || defined(PROTO)
1609 /* 1607 /*
1610 * Add the given bytes to the input buffer 1608 * Add the given bytes to the input buffer
1611 * Special keys start with CSI. A real CSI must have been translated to 1609 * Special keys start with CSI. A real CSI must have been translated to
1612 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation. 1610 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1628 while (len--) 1626 while (len--)
1629 inbuf[inbufcount++] = *s++; 1627 inbuf[inbufcount++] = *s++;
1630 } 1628 }
1631 #endif 1629 #endif
1632 1630
1633 #if (defined(FEAT_XIM) && defined(FEAT_GUI_GTK)) \ 1631 #if ((defined(FEAT_XIM) || defined(FEAT_DND)) && defined(FEAT_GUI_GTK)) \
1632 || defined(FEAT_GUI_MSWIN) \
1633 || defined(FEAT_GUI_MAC) \
1634 || (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \ 1634 || (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \
1635 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \ 1635 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
1636 || defined(FEAT_MENU))) \ 1636 || defined(FEAT_MENU))) \
1637 || defined(PROTO) 1637 || defined(PROTO)
1638 /* 1638 /*