Commit 1f024db3 1f024db39fb41aa242ed489cc3d9017eff1ecb12 by Sergey Poznyakoff

Use quotes when setting default string values.

1 parent 2fe0ed35
...@@ -239,7 +239,7 @@ main (int argc, char **argv) ...@@ -239,7 +239,7 @@ main (int argc, char **argv)
239 util_do_command ("set nohold"); 239 util_do_command ("set nohold");
240 util_do_command ("set noignore"); 240 util_do_command ("set noignore");
241 util_do_command ("set noignoreeof"); 241 util_do_command ("set noignoreeof");
242 util_do_command ("set indentprefix=\t"); 242 util_do_command ("set indentprefix=\"\t\"");
243 util_do_command ("set nokeep"); 243 util_do_command ("set nokeep");
244 util_do_command ("set nokeepsave"); 244 util_do_command ("set nokeepsave");
245 util_do_command ("set nometoo"); 245 util_do_command ("set nometoo");
......