| To: vim-dev@vim.org |
| Subject: Patch 7.2.358 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.2.358 |
| Problem: Compiler warnings on VMS. (Zoltan Arpadffy) |
| Solution: Pass array itself instead its address. Return a value. |
| Files: src/gui_gtk_x11.c, src/os_unix.c |
| |
| |
| |
| |
| |
| *** 6190,6196 **** |
| int pcc[MAX_MCO]; |
| |
| /* TODO: use the composing characters */ |
| ! c = utfc_ptr2char_len(p, &pcc, len - (p - s)); |
| if (c >= 0x10000) /* show chars > 0xffff as ? */ |
| c = 0xbf; |
| buf[textlen].byte1 = c >> 8; |
| --- 6190,6196 ---- |
| int pcc[MAX_MCO]; |
| |
| /* TODO: use the composing characters */ |
| ! c = utfc_ptr2char_len(p, pcc, len - (p - s)); |
| if (c >= 0x10000) /* show chars > 0xffff as ? */ |
| c = 0xbf; |
| buf[textlen].byte1 = c >> 8; |
| |
| |
| |
| *** 1471,1476 **** |
| --- 1471,1479 ---- |
| { |
| /* This function should not return, it causes exit(). Longjump instead. */ |
| LONGJMP(lc_jump_env, 1); |
| + # ifdef VMS |
| + return 0; /* avoid the compiler complains about missing return value */ |
| + # endif |
| } |
| # endif |
| |
| |
| *** 1490,1495 **** |
| --- 1493,1501 ---- |
| |
| /* This function should not return, it causes exit(). Longjump instead. */ |
| LONGJMP(x_jump_env, 1); |
| + # ifdef VMS |
| + return 0; /* avoid the compiler complains about missing return value */ |
| + # endif |
| } |
| #endif |
| |
| |
| |
| |
| *** 683,684 **** |
| --- 683,686 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 358, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 221. Your wife melts your keyboard in the oven. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ download, build and distribute -- http://www.A-A-P.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |