aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorKalle Ranki <kalle.ranki@gmail.com>2016-09-04 10:54:41 +0300
committerJustin M. Keyes <justinkz@gmail.com>2016-09-04 09:54:41 +0200
commite75e9c10dc947bc4aac0aea927e47038bf984b7f (patch)
tree60a6c0ac9f79c68155ab33321261525352b9b221 /src/nvim/option.c
parent9bba8ba372298d7cfac543085df6546e18d2c256 (diff)
downloadrneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.tar.gz
rneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.tar.bz2
rneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.zip
test: Add unittest spec for option.c (#5289)
Move typedef expand_T to types.h for tests Fix lint error for old style comments Describe 'check_ff_value' valid values as an initial test. Fix 'get_sts_value' comment inaccuracy and add unit test for it
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index e53dbfc75a..1ef1c300b9 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -6585,10 +6585,8 @@ int get_sw_value(buf_T *buf)
return (int)result;
}
-/*
- * Return the effective softtabstop value for the current buffer, using the
- * 'tabstop' value when 'softtabstop' is negative.
- */
+// Return the effective softtabstop value for the current buffer,
+// using the effective shiftwidth value when 'softtabstop' is negative.
int get_sts_value(void)
{
long result = curbuf->b_p_sts < 0 ? get_sw_value(curbuf) : curbuf->b_p_sts;