aboutsummaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-04-28 20:31:56 -0400
committerJustin M. Keyes <justinkz@gmail.com>2014-04-28 20:31:56 -0400
commit9a2c92e92c8bbeda6ab4a44a5d6e278669329b89 (patch)
tree39d07fcaff95c9d4100e52589147c54681a789c7 /src/ops.c
parent9e04e81ac7964dee43e24e5fa7b05ec7fc2b62e8 (diff)
parentc9fba7ca7c3ac4eb7eb970e8e9713ecff537180d (diff)
downloadrneovim-9a2c92e92c8bbeda6ab4a44a5d6e278669329b89.tar.gz
rneovim-9a2c92e92c8bbeda6ab4a44a5d6e278669329b89.tar.bz2
rneovim-9a2c92e92c8bbeda6ab4a44a5d6e278669329b89.zip
Merge pull request #620 from watk/remove-dead-feats
[RDY] Remove references to FEAT_{X11,CLIPBOARD} and USE_XSMP.
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/ops.c b/src/ops.c
index 2bb649a488..3a86432b01 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -44,20 +44,14 @@
#include "window.h"
/*
- * Number of registers.
- * 0 = unnamed register, for normal yanks and puts
+ * Registers:
+ * 0 = unnamed register, for normal yanks and puts
* 1..9 = registers '1' to '9', for deletes
* 10..35 = registers 'a' to 'z'
* 36 = delete register '-'
- * 37 = Selection register '*'. Only if FEAT_CLIPBOARD defined
- * 38 = Clipboard register '+'. Only if FEAT_CLIPBOARD and FEAT_X11 defined
*/
-/*
- * Symbolic names for some registers.
- */
-#define DELETION_REGISTER 36
-
-# define NUM_REGISTERS 37
+#define NUM_REGISTERS 37
+#define DELETION_REGISTER 36
/*
* Each yank register is an array of pointers to lines.