Mercurial > vim
annotate src/testdir/test_ex_equal.vim @ 33974:730a3ddebdd2 v9.0.2176
patch 9.0.2175: Compile error with Motif UI + mouse support
Commit: https://github.com/vim/vim/commit/18d0d29b420543efd4938619d821df7b67988de5
Author: Ken Takata <kentkt@csc.jp>
Date: Tue Dec 19 20:12:29 2023 +0100
patch 9.0.2175: Compile error with Motif UI + mouse support
Problem: Compile error with Motif UI + mouse support (after v9.0.1262)
Solution: Use correct oldval option pointer
Fix compilation error introduced by 9.0.1262 and found in #13704.
closes: #13726
Signed-off-by: Ken Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Dec 2023 20:15:06 +0100 |
parents | 08940efa6b4e |
children |
rev | line source |
---|---|
15619
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Test Ex := command. |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 func Test_ex_equal() |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 new |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 call setline(1, ["foo\tbar", "bar\tfoo"]) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 let a = execute('=') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 call assert_equal("\n2", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 let a = execute('=#') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 call assert_equal("\n2\n 1 foo bar", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 let a = execute('=l') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 call assert_equal("\n2\nfoo^Ibar$", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 let a = execute('=p') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 call assert_equal("\n2\nfoo bar", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 let a = execute('=l#') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 call assert_equal("\n2\n 1 foo^Ibar$", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 let a = execute('=p#') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 call assert_equal("\n2\n 1 foo bar", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 let a = execute('.=') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 call assert_equal("\n1", a) |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 call assert_fails('3=', 'E16:') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 call assert_fails('=x', 'E488:') |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 bwipe! |
a4882149b661
patch 8.1.0817: ":=" command is not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 endfunc |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
15619
diff
changeset
|
33 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
15619
diff
changeset
|
34 " vim: shiftwidth=2 sts=2 expandtab |