aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-07-03 03:25:00 -0400
committerMichael Reed <m.reed@mykolab.com>2015-07-19 15:14:22 -0400
commitd9b053d6a6fe95d230004c4c75d91a5e87119259 (patch)
tree1cc2869d2e72e2dfaccb1aa1c6ac6eb015a13adb /src
parent4a86122422e1e6cdedf5e4d99df9ea719793f367 (diff)
downloadrneovim-d9b053d6a6fe95d230004c4c75d91a5e87119259.tar.gz
rneovim-d9b053d6a6fe95d230004c4c75d91a5e87119259.tar.bz2
rneovim-d9b053d6a6fe95d230004c4c75d91a5e87119259.zip
Remove POSIX 'cpoptions': '|'
It wasn't even hooked up to anything... must have been removed when term.c was replaced.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/option_defs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h
index e292f44b9a..3d59a28e04 100644
--- a/src/nvim/option_defs.h
+++ b/src/nvim/option_defs.h
@@ -129,7 +129,6 @@
#define CPO_SPECI '<' /* don't recognize <> in mappings */
#define CPO_REGAPPEND '>' /* insert NL when appending to a register */
/* POSIX flags */
-#define CPO_TSIZE '|' /* $LINES and $COLUMNS overrule term size */
#define CPO_PRESERVE '&' /* keep swap file after :preserve */
#define CPO_SUBPERCENT '/' /* % in :s string uses previous one */
#define CPO_BACKSL '\\' /* \ is not special in [] */
@@ -140,7 +139,7 @@
#define CPO_VIM "aABceFs"
#define CPO_VI "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>;"
#define CPO_ALL \
- "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>|&/\\.;"
+ "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>&/\\.;"
/* characters for p_ww option: */
#define WW_ALL "bshl<>[],~"