]> granicus.if.org Git - vim/commitdiff
patch 8.0.0025 v8.0.0025
authorBram Moolenaar <Bram@vim.org>
Sun, 9 Oct 2016 13:50:48 +0000 (15:50 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 9 Oct 2016 13:50:48 +0000 (15:50 +0200)
Problem:    Inconsistent use of spaces vs tabs in gd test.
Solution:   Use tabs. (Anton Lindqvist)

src/testdir/test_goto.vim
src/version.c

index 16daaf862bb6fb2f050a4f5ad0d0f6c0259d0e1d..d0daeeb7608859b62fc200d111775dc3392efff4 100644 (file)
@@ -16,13 +16,13 @@ endfunc
 
 func Test_gD()
   let lines = [
-    \ 'int x;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int x;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 1, 5)
 endfunc
 
@@ -40,236 +40,236 @@ endfunc
 
 func Test_gD_comment()
   let lines = [
-    \ '/* int x; */',
-    \ 'int x;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ '/* int x; */',
+       \ 'int x;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 2, 5)
 endfunc
 
 func Test_gD_inline_comment()
   let lines = [
-    \ 'int y /* , x */;',
-    \ 'int x;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int y /* , x */;',
+       \ 'int x;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 2, 5)
 endfunc
 
 func Test_gD_string()
   let lines = [
-    \ 'char *s[] = "x";',
-    \ 'int x = 1;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'char *s[] = "x";',
+       \ 'int x = 1;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 2, 5)
 endfunc
 
 func Test_gD_string_same_line()
   let lines = [
-    \ 'char *s[] = "x", int x = 1;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'char *s[] = "x", int x = 1;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 1, 22)
 endfunc
 
 func Test_gD_char()
   let lines = [
-    \ "char c = 'x';",
-    \ 'int x = 1;',
-    \ '',
-    \ 'int func(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ "char c = 'x';",
+       \ 'int x = 1;',
+       \ '',
+       \ 'int func(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gD', lines, 2, 5)
 endfunc
 
 func Test_gd()
   let lines = [
-    \ 'int x;',
-    \ '',
-    \ 'int func(int x)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int x;',
+       \ '',
+       \ 'int func(int x)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 3, 14)
 endfunc
 
 func Test_gd_not_local()
   let lines = [
-    \ 'int func1(void)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ '',
-    \ 'int func2(int x)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func1(void)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ '',
+       \ 'int func2(int x)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 3, 10)
 endfunc
 
 func Test_gd_kr_style()
   let lines = [
-    \ 'int func(x)',
-    \ '  int x;',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(x)',
+       \ '  int x;',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 2, 7)
 endfunc
 
 func Test_gd_missing_braces()
   let lines = [
-    \ 'def func1(a)',
-    \ '  a + 1',
-    \ 'end',
-    \ '',
-    \ 'a = 1',
-    \ '',
-    \ 'def func2()',
-    \ '  return a',
-    \ 'end',
-    \ ]
+       \ 'def func1(a)',
+       \ '  a + 1',
+       \ 'end',
+       \ '',
+       \ 'a = 1',
+       \ '',
+       \ 'def func2()',
+       \ '  return a',
+       \ 'end',
+       \ ]
   call XTest_goto_decl('gd', lines, 1, 11)
 endfunc
 
 func Test_gd_comment()
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  /* int x; */',
-    \ '  int x;',
-    \ '  return x;',
-    \ '}',
-    \]
+       \ 'int func(void)',
+       \ '{',
+       \ '  /* int x; */',
+       \ '  int x;',
+       \ '  return x;',
+       \ '}',
+       \]
   call XTest_goto_decl('gd', lines, 4, 7)
 endfunc
 
 func Test_gd_comment_in_string()
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  char *s ="//"; int x;',
-    \ '  int x;',
-    \ '  return x;',
-    \ '}',
-    \]
+       \ 'int func(void)',
+       \ '{',
+       \ '  char *s ="//"; int x;',
+       \ '  int x;',
+       \ '  return x;',
+       \ '}',
+       \]
   call XTest_goto_decl('gd', lines, 3, 22)
 endfunc
 
 func Test_gd_string_in_comment()
   set comments=
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  /* " */ int x;',
-    \ '  int x;',
-    \ '  return x;',
-    \ '}',
-    \]
+       \ 'int func(void)',
+       \ '{',
+       \ '  /* " */ int x;',
+       \ '  int x;',
+       \ '  return x;',
+       \ '}',
+       \]
   call XTest_goto_decl('gd', lines, 3, 15)
   set comments&
 endfunc
 
 func Test_gd_inline_comment()
   let lines = [
-    \ 'int func(/* x is an int */ int x)',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(/* x is an int */ int x)',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 1, 32)
 endfunc
 
 func Test_gd_inline_comment_only()
   let lines = [
-    \ 'int func(void) /* one lonely x */',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(void) /* one lonely x */',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 3, 10)
 endfunc
 
 func Test_gd_inline_comment_body()
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  int y /* , x */;',
-    \ '',
-    \ '  for (/* int x = 0 */; y < 2; y++);',
-    \ '',
-    \ '  int x = 0;',
-    \ '',
-    \ '  return x;',
-    \ '}',
-  \ ]
+       \ 'int func(void)',
+       \ '{',
+       \ '  int y /* , x */;',
+       \ '',
+       \ '  for (/* int x = 0 */; y < 2; y++);',
+       \ '',
+       \ '  int x = 0;',
+       \ '',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 7, 7)
 endfunc
 
 func Test_gd_trailing_multiline_comment()
   let lines = [
-    \ 'int func(int x) /* x is an int */',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(int x) /* x is an int */',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 1, 14)
 endfunc
 
 func Test_gd_trailing_comment()
   let lines = [
-    \ 'int func(int x) // x is an int',
-    \ '{',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(int x) // x is an int',
+       \ '{',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 1, 14)
 endfunc
 
 func Test_gd_string()
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  char *s = "x";',
-    \ '  int x = 1;',
-    \ '',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(void)',
+       \ '{',
+       \ '  char *s = "x";',
+       \ '  int x = 1;',
+       \ '',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 4, 7)
 endfunc
 
 func Test_gd_string_only()
   let lines = [
-    \ 'int func(void)',
-    \ '{',
-    \ '  char *s = "x";',
-    \ '',
-    \ '  return x;',
-    \ '}',
-    \ ]
+       \ 'int func(void)',
+       \ '{',
+       \ '  char *s = "x";',
+       \ '',
+       \ '  return x;',
+       \ '}',
+       \ ]
   call XTest_goto_decl('gd', lines, 5, 10)
 endfunc
index 78f5264ccc364e0d050bbb390b41f14f4b68a567..9a169850aea75acd0a3d51ea830fb26d5f18ce40 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    25,
 /**/
     24,
 /**/