summaryrefslogtreecommitdiffstats
path: root/src/option.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-11-30 13:34:23 +0100
committerBram Moolenaar <Bram@vim.org>2014-11-30 13:34:23 +0100
commit0b105416066c95ade3604ec2139d8367d3c6e74e (patch)
tree00c20ce83fa5316d76e6df05b5755e3cbe5f156e /src/option.c
parent76440e2efe9e3582e9943d01183ec8b2f3e4eb4b (diff)
updated for version 7.4.538v7.4.538
Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
Diffstat (limited to 'src/option.c')
-rw-r--r--src/option.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index a97dae6262..3195fa8d90 100644
--- a/src/option.c
+++ b/src/option.c
@@ -5575,6 +5575,7 @@ set_string_option_direct(name, opt_idx, val, opt_flags, set_sid)
if (idx < 0) /* not found (should not happen) */
{
EMSG2(_(e_intern2), "set_string_option_direct()");
+ EMSG2(_("For option %s"), name);
return;
}
}