]> granicus.if.org Git - vim/commitdiff
updated for version 7.0085
authorBram Moolenaar <Bram@vim.org>
Tue, 14 Jun 2005 22:05:40 +0000 (22:05 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 14 Jun 2005 22:05:40 +0000 (22:05 +0000)
runtime/spell/en.ascii.spl
runtime/spell/en.utf-8.spl
src/gui.h
src/macros.h
src/os_vms.c

index 2eeec8bfff783b0c024f518a3c3fab85f3f3f49c..db0ddd687c9a192cee30e4ac7b884d907c7a2dcb 100644 (file)
Binary files a/runtime/spell/en.ascii.spl and b/runtime/spell/en.ascii.spl differ
index 68d8211b892828f0ac7559094cb573b1bd24add4..62cdf8fe302c3a18e091dc06e528676bb1a5b2f7 100644 (file)
Binary files a/runtime/spell/en.utf-8.spl and b/runtime/spell/en.utf-8.spl differ
index 43311ecc432a7fc31d62a4b90d29d04e0d1c545f..d6375543665ff5c42266f7a47c53965d54593eef 100644 (file)
--- a/src/gui.h
+++ b/src/gui.h
@@ -517,8 +517,7 @@ typedef enum
     VW_POS_MOUSE,
     VW_POS_CENTER,
     VW_POS_TOP_CENTER
-}
-gui_win_pos_T;
+} gui_win_pos_T;
 
 #ifdef FIND_REPLACE_DIALOG
 /*
index f7bb10dca34245d6ad656ac03df981738dadae13..07b02d70769cf01c39620cb82aa93b3756837aa7 100644 (file)
  * don't use them for negative values.
  */
 #ifdef FEAT_MBYTE
-# 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_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_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_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)))
 #else
 # define MB_ISLOWER(c) islower(c)
 # define MB_ISUPPER(c) isupper(c)
index ab5eca4e193d40b7f1348704548c738219dbb02a..c26937d8a8b6795150d93042ff4c426e8bc2883e 100644 (file)
@@ -308,8 +308,9 @@ vms_read(char *inbuf, size_t nbytes)
        tt_mode = get_tty();
 
     vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
-           (char *)(TRM$M_TM_ESCAPE | TRM$M_TM_NOECHO | TRM$M_TM_NOEDIT |
-              TRM$M_TM_NOFILTR | TRM$M_TM_NORECALL | TRM$M_TM_TRMNOECHO), 0);
+            (char *)( TRM$M_TM_ESCAPE  | TRM$M_TM_TIMED    | TRM$M_TM_NOECHO |
+                       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);
 
     function = (IO$_READLBLK | IO$M_EXTEND);