mirror of
https://github.com/vim/vim
synced 2025-07-16 09:12:00 +00:00
patch 9.0.0764: indent and option tests fail
Problem: Indent and option tests fail. Solution: Change OP_INDENT. Add entry to options test table.
This commit is contained in:
@ -4119,7 +4119,12 @@ do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank)
|
|||||||
{
|
{
|
||||||
if (curbuf->b_p_lisp)
|
if (curbuf->b_p_lisp)
|
||||||
{
|
{
|
||||||
op_reindent(oap, get_lisp_indent);
|
#ifdef FEAT_EVAL
|
||||||
|
if (use_indentexpr_for_lisp())
|
||||||
|
op_reindent(oap, get_expr_indent);
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
op_reindent(oap, get_lisp_indent);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
op_reindent(oap,
|
op_reindent(oap,
|
||||||
|
@ -114,6 +114,7 @@ let test_values = {
|
|||||||
\ 'keymap': [['', 'accents'], ['xxx']],
|
\ 'keymap': [['', 'accents'], ['xxx']],
|
||||||
\ 'keymodel': [['', 'startsel', 'startsel,stopsel'], ['xxx']],
|
\ 'keymodel': [['', 'startsel', 'startsel,stopsel'], ['xxx']],
|
||||||
\ 'langmap': [['', 'xX', 'aA,bB'], ['xxx']],
|
\ 'langmap': [['', 'xX', 'aA,bB'], ['xxx']],
|
||||||
|
\ 'lispoptions': [['', 'expr:0', 'expr:1'], ['xxx']],
|
||||||
\ 'listchars': [['', 'eol:x', 'eol:x,space:y'], ['xxx']],
|
\ 'listchars': [['', 'eol:x', 'eol:x,space:y'], ['xxx']],
|
||||||
\ 'matchpairs': [['', '(:)', '(:),<:>'], ['xxx']],
|
\ 'matchpairs': [['', '(:)', '(:),<:>'], ['xxx']],
|
||||||
\ 'mkspellmem': [['10000,100,12'], ['', 'xxx']],
|
\ 'mkspellmem': [['10000,100,12'], ['', 'xxx']],
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
764,
|
||||||
/**/
|
/**/
|
||||||
763,
|
763,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user