diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-20 21:51:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-20 21:51:53 +0100 |
commit | 25b0e6b701a7a8dfcb4f60e217360a5c75053d8c (patch) | |
tree | 651d35addd2fc9220a2ed0b7458e5b307afcf61a /src/normal.c | |
parent | 23c9e8b3bc86ac1083dd97b00c943fbb7af7bc29 (diff) | |
download | vim-git-25b0e6b701a7a8dfcb4f60e217360a5c75053d8c.tar.gz |
patch 8.0.0208: internally used commands end up in historyv8.0.0208
Problem: Internally used commands for CTRL-Z and mouse click end up in
history. (Matthew Malcomson)
Solution: Use do_cmdline_cmd() instead of stuffing them in the readahead
buffer. (James McCoy, closes #1395)
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c index 3456b73be..8724553a9 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2982,9 +2982,9 @@ do_mouse( if (State & INSERT) stuffcharReadbuff(Ctrl_O); if (curwin->w_llist_ref == NULL) /* quickfix window */ - stuffReadbuff((char_u *)":.cc\n"); + do_cmdline_cmd((char_u *)".cc"); else /* location list window */ - stuffReadbuff((char_u *)":.ll\n"); + do_cmdline_cmd((char_u *)".ll"); got_click = FALSE; /* ignore drag&release now */ } #endif |