diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-10-21 20:01:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-10-21 20:01:58 +0200 |
commit | 958636c40619a9f8c3d10e9f76a7f634dd11d13b (patch) | |
tree | c0879e6ee3c9f5d918d385db6de8e63920ad536a /src/ex_cmds.h | |
parent | 4920a4427183f1a353394f33402dde5ae4d32c18 (diff) | |
download | vim-git-958636c40619a9f8c3d10e9f76a7f634dd11d13b.tar.gz |
updated for version 7.4.486v7.4.486
Problem: Check for writing to a yank register is wrong.
Solution: Negate the check. (Zyx). Also clean up the #ifdefs.
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 56dfe8ea7..93c77764a 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1153,8 +1153,6 @@ EX(CMD_tilde, "~", do_sub, #endif }; -#define USER_CMDIDX(idx) ((int)(idx) < 0) - #ifndef DO_DECLARE_EXCMD typedef enum CMD_index cmdidx_T; |