summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-01 18:04:33 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-01 18:04:33 +0000
commitfc966c19f85afc6b856a06c00a93c4fe96280d31 (patch)
treed572275a08c5e978e69f1dcd401dd9a23c9b969b /src/edit.c
parentec8b74f7ab37ac83045c9eba723daf3ff8d62fc2 (diff)
patch 9.0.1126: bracketed paste can be enabled when it is not recognizedv9.0.1126
Problem: Bracketed paste can be enabled when pasted text is not recognized. Solution: Output t_BE only when t_PS and t_PE are set.
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 85d59d1fb1..4a89fe13fb 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -3714,7 +3714,7 @@ ins_esc(
MAY_WANT_TO_LOG_THIS;
// Re-enable bracketed paste mode.
- out_str(T_BE);
+ out_str_t_BE();
// Re-enable modifyOtherKeys.
out_str_t_TI();