0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0085

This commit is contained in:
Bram Moolenaar
2005-06-14 22:05:40 +00:00
parent 9f30f50471
commit 8348ea624c
5 changed files with 8 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -517,8 +517,7 @@ typedef enum
VW_POS_MOUSE, VW_POS_MOUSE,
VW_POS_CENTER, VW_POS_CENTER,
VW_POS_TOP_CENTER VW_POS_TOP_CENTER
} } gui_win_pos_T;
gui_win_pos_T;
#ifdef FIND_REPLACE_DIALOG #ifdef FIND_REPLACE_DIALOG
/* /*

View File

@@ -84,10 +84,10 @@
* don't use them for negative values. * don't use them for negative values.
*/ */
#ifdef FEAT_MBYTE #ifdef FEAT_MBYTE
# define MB_ISLOWER(c) (enc_utf8 && (c) > 0x80 ? utf_islower(c) : (has_mbyte && c > 255 ? FALSE : islower(c))) # define MB_ISLOWER(c) (enc_utf8 && (c) >= 0x80 ? utf_islower(c) : (has_mbyte && c > 255 ? FALSE : islower(c)))
# define MB_ISUPPER(c) (enc_utf8 && (c) > 0x80 ? utf_isupper(c) : (has_mbyte && c > 255 ? FALSE : isupper(c))) # define MB_ISUPPER(c) (enc_utf8 && (c) >= 0x80 ? utf_isupper(c) : (has_mbyte && c > 255 ? FALSE : isupper(c)))
# define MB_TOLOWER(c) (enc_utf8 && (c) > 0x80 ? utf_tolower(c) : (has_mbyte && c > 255 ? c : TOLOWER_LOC(c))) # define MB_TOLOWER(c) (enc_utf8 && (c) >= 0x80 ? utf_tolower(c) : (has_mbyte && c > 255 ? c : TOLOWER_LOC(c)))
# define MB_TOUPPER(c) (enc_utf8 && (c) > 0x80 ? utf_toupper(c) : (has_mbyte && c > 255 ? c : TOUPPER_LOC(c))) # define MB_TOUPPER(c) (enc_utf8 && (c) >= 0x80 ? utf_toupper(c) : (has_mbyte && c > 255 ? c : TOUPPER_LOC(c)))
#else #else
# define MB_ISLOWER(c) islower(c) # define MB_ISLOWER(c) islower(c)
# define MB_ISUPPER(c) isupper(c) # define MB_ISUPPER(c) isupper(c)

View File

@@ -308,8 +308,9 @@ vms_read(char *inbuf, size_t nbytes)
tt_mode = get_tty(); tt_mode = get_tty();
vul_item(&itmlst[0], 0, TRM$_MODIFIERS, vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
(char *)(TRM$M_TM_ESCAPE | TRM$M_TM_NOECHO | TRM$M_TM_NOEDIT | (char *)( TRM$M_TM_ESCAPE | TRM$M_TM_TIMED | TRM$M_TM_NOECHO |
TRM$M_TM_NOFILTR | TRM$M_TM_NORECALL | TRM$M_TM_TRMNOECHO), 0); TRM$M_TM_NOEDIT | TRM$M_TM_NOFILTR |
TRM$M_TM_NORECALL| TRM$M_TM_TRMNOECHO), 0);
vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0); vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
function = (IO$_READLBLK | IO$M_EXTEND); function = (IO$_READLBLK | IO$M_EXTEND);