Commit d4471ebe authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in do_toggle(), properly treat color syntax highlighting as enabled by

default, and only treat wrapping as enabled by default when
DISABLE_WRAPPING isn't defined


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2767 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 12 additions and 2 deletions
+12 -2
......@@ -238,6 +238,10 @@ CVS code -
(DLR)
- Don't set current_len until after it's been asserted that both
current and current->data aren't NULL. (DLR)
do_toggle()
- Properly treat color syntax highlighting as enabled by
default, and only treat wrapping as enabled by default when
DISABLE_WRAPPING isn't defined. (DLR)
disable_extended_input()
- Disable extended output processing as well as extended input
processing, and rename to disable_extended_io(). (DLR)
......
......@@ -3723,8 +3723,14 @@ void do_toggle(const toggle *which)
enabled = ISSET(which->flag);
if (which->val == TOGGLE_NOHELP_KEY ||
which->val == TOGGLE_WRAP_KEY)
if (which->val == TOGGLE_NOHELP_KEY
#ifndef DISABLE_WRAPPING
|| which->val == TOGGLE_WRAP_KEY
#endif
#ifdef ENABLE_COLOR
|| which->val == TOGGLE_SYNTAX_KEY
#endif
)
enabled = !enabled;
statusbar("%s %s", which->desc, enabled ? _("enabled") :
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment