summaryrefslogtreecommitdiffstats
path: root/src/if_perl.xs
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-14 14:17:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-14 14:17:45 +0100
commita4d158b3c839e96ed98ff87c7b7124ff4518c4ff (patch)
tree42d3a6b65d4ae53a6e078c8f24a5ee9960e3ad24 /src/if_perl.xs
parent28c9f895716cfa8f1220bc41b72a534c0e10cabe (diff)
patch 9.0.0206: redraw flags are not named specificallyv9.0.0206
Problem: Redraw flags are not named specifically. Solution: Prefix "UPD_" to the flags, for UPDate_screen().
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r--src/if_perl.xs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs
index 1afb1d4cf1..8923926ddd 100644
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -1460,7 +1460,7 @@ ex_perldo(exarg_T *eap)
FREETMPS;
LEAVE;
check_cursor();
- update_screen(NOT_VALID);
+ update_screen(UPD_NOT_VALID);
if (!length)
return;
@@ -1584,7 +1584,7 @@ SetOption(line)
PPCODE:
if (line != NULL)
do_set((char_u *)line, 0);
- update_screen(NOT_VALID);
+ update_screen(UPD_NOT_VALID);
void
DoCommand(line)
@@ -1777,7 +1777,7 @@ Cursor(win, ...)
win->w_cursor.col = col;
win->w_set_curswant = TRUE;
check_cursor(); /* put cursor on an existing line */
- update_screen(NOT_VALID);
+ update_screen(UPD_NOT_VALID);
}
MODULE = VIM PACKAGE = VIBUF
@@ -1929,7 +1929,7 @@ Delete(vimbuf, ...)
aucmd_restbuf(&aco);
/* Careful: autocommands may have made "vimbuf" invalid! */
- update_curbuf(VALID);
+ update_curbuf(UPD_VALID);
}
}
}
@@ -1970,7 +1970,7 @@ Append(vimbuf, ...)
aucmd_restbuf(&aco);
/* Careful: autocommands may have made "vimbuf" invalid! */
- update_curbuf(VALID);
+ update_curbuf(UPD_VALID);
}
}
}