diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-19 17:56:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-19 17:56:13 +0100 |
commit | a0ed84a26897c994512873a895b9fc54e90c6845 (patch) | |
tree | 0ca54e1951f994c1d373a225fa9a537e14045f5a /src/ops.c | |
parent | 32d03b34ac8a34a962f57847fc431a2b4e14efea (diff) | |
download | vim-git-a0ed84a26897c994512873a895b9fc54e90c6845.tar.gz |
patch 7.4.925v7.4.925
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes #470)
Diffstat (limited to 'src/ops.c')
-rw-r--r-- | src/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1080,7 +1080,7 @@ do_record(c) retval = FAIL; else { - Recording = TRUE; + Recording = c; showmode(); regname = c; retval = OK; |