changeset 12604:a0199c0efc73 v8.0.1180

patch 8.0.1180: MS-Windows testclean target deletes the color script commit https://github.com/vim/vim/commit/75f69e5a183e00cb5aa05d43c1ecf3b7dead7a98 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 7 20:10:29 2017 +0200 patch 8.0.1180: MS-Windows testclean target deletes the color script Problem: MS-Windows testclean target deletes the color script. Solution: Rename the script file.
author Christian Brabandt <cb@256bit.org>
date Sat, 07 Oct 2017 20:15:05 +0200
parents 1c2128119501
children 118997ab8f95
files src/testdir/color_ramp.vim src/testdir/xterm_ramp.vim src/version.c
diffstat 3 files changed, 42 insertions(+), 40 deletions(-) [+]
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/src/testdir/color_ramp.vim
@@ -0,0 +1,40 @@
+" Script to generate a file that shows al 256 xterm colors
+
+new
+call setline(1, 'ANSI')
+
+" ANSI colors
+let s = ''
+for nr in range(0, 7)
+  let s .= "\033[4" . nr . "m    "
+endfor
+for nr in range(8, 15)
+  let s .= "\033[10" . (nr - 8) . "m    "
+endfor
+let s .= "\033[107m|"
+call setline(2, s)
+
+" 6 x 6 x 6 color cube
+call setline(3, 'color cube')
+for high in range(0, 5)
+  let s = ''
+  for low in range(0, 35)
+    let nr = low + high * 36
+    let s .= "\033[48;5;" . (nr + 16) . "m  "
+  endfor
+  let s .= "\033[107m|"
+  call setline(high + 4, s)
+endfor
+
+" 24 shades of grey
+call setline(10, 'grey ramp')
+let s = ''
+for nr in range(0, 23)
+    let s .= "\033[48;5;" . (nr + 232) . "m   "
+endfor
+let s .= "\033[107m|"
+call setline(11, s)
+
+set binary
+write! <sfile>:h/xterm_ramp.txt
+quit
deleted file mode 100644
--- a/src/testdir/xterm_ramp.vim
+++ /dev/null
@@ -1,40 +0,0 @@
-" Script to generate a file that shows al 256 xterm colors
-
-new
-call setline(1, 'ANSI')
-
-" ANSI colors
-let s = ''
-for nr in range(0, 7)
-  let s .= "\033[4" . nr . "m    "
-endfor
-for nr in range(8, 15)
-  let s .= "\033[10" . (nr - 8) . "m    "
-endfor
-let s .= "\033[107m|"
-call setline(2, s)
-
-" 6 x 6 x 6 color cube
-call setline(3, 'color cube')
-for high in range(0, 5)
-  let s = ''
-  for low in range(0, 35)
-    let nr = low + high * 36
-    let s .= "\033[48;5;" . (nr + 16) . "m  "
-  endfor
-  let s .= "\033[107m|"
-  call setline(high + 4, s)
-endfor
-
-" 24 shades of grey
-call setline(10, 'grey ramp')
-let s = ''
-for nr in range(0, 23)
-    let s .= "\033[48;5;" . (nr + 232) . "m   "
-endfor
-let s .= "\033[107m|"
-call setline(11, s)
-
-set binary
-write! <sfile>:h/xterm_ramp.txt
-quit
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1180,
+/**/
     1179,
 /**/
     1178,