• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisiónd065616e083680035f38a54409e857ebc2202db3 (tree)
Tiempo2007-10-30 06:38:54
Autorvimboss
Commitervimboss

Log Message

updated for version 7.1-146

Cambiar Resumen

Diferencia incremental

diff -r 342cf2a9f5cc -r d065616e0836 src/Make_vms.mms
--- a/src/Make_vms.mms Fri Oct 19 18:40:51 2007 +0000
+++ b/src/Make_vms.mms Mon Oct 29 21:38:54 2007 +0000
@@ -2,7 +2,7 @@
22 # Makefile for Vim on OpenVMS
33 #
44 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
5-# Last change: 2007 May 07
5+# Last change: 2007 Oct 22
66 #
77 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
88 # with MMS and MMK
@@ -96,8 +96,7 @@
9696
9797 .IFDEF MMSVAX
9898 .IFDEF DECC # VAX with DECC
99-CC_DEF = cc # /decc # some system requires this switch
100- # but when it is not required /ver might fail
99+CC_DEF = cc # /decc # some system requires this switch but when it is not required /ver might fail
101100 PREFIX = /prefix=all
102101 .ELSE # VAX with VAXC
103102 CC_DEF = cc
diff -r 342cf2a9f5cc -r d065616e0836 src/fileio.c
--- a/src/fileio.c Fri Oct 19 18:40:51 2007 +0000
+++ b/src/fileio.c Mon Oct 29 21:38:54 2007 +0000
@@ -4251,7 +4251,8 @@
42514251 * they don't it adds one.
42524252 * With other RMS structures it works perfect without this fix.
42534253 */
4254- if ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0)
4254+ if (buf->b_fab_rfm == FAB$C_VFC
4255+ || ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
42554256 {
42564257 int b2write;
42574258
diff -r 342cf2a9f5cc -r d065616e0836 src/version.c
--- a/src/version.c Fri Oct 19 18:40:51 2007 +0000
+++ b/src/version.c Mon Oct 29 21:38:54 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 146,
671+/**/
670672 145,
671673 /**/
672674 144,
Show on old repository browser