Commit 3aad8ab9 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

* rcfile.c - Add in specific check for UNDOABLE and fix declaration as

          to what flag it toggles.  Fixes undo mode being able to be called from
          the rc file, reported by Helmut Jarausch <jarausch@igpm.rwth-aachen.de>



git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4416 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 1d461475
Showing with 7 additions and 1 deletion
+7 -1
2009-11-03 Chris Allegretta <chrisa@asty.org> 2009-11-03 Chris Allegretta <chrisa@asty.org>
* nano.h - Fix comma at end of enumerator list which angers -pedantic. * nano.h - Fix comma at end of enumerator list which angers -pedantic.
* rcfile.c - Add in specific check for UNDOABLE and fix declaration as
to what flag it toggles. Fixes undo mode being able to be called from
the rc file, reported by Helmut Jarausch <jarausch@igpm.rwth-aachen.de>
2009-11-03 Mike Frysinger <vapier@gentoo.org> 2009-11-03 Mike Frysinger <vapier@gentoo.org>
* files.c - Move up is_file_writable() to stop implicit definition complaints. * files.c - Move up is_file_writable() to stop implicit definition complaints.
......
...@@ -89,7 +89,7 @@ static const rcoption rcopts[] = { ...@@ -89,7 +89,7 @@ static const rcoption rcopts[] = {
{"smarthome", SMART_HOME}, {"smarthome", SMART_HOME},
{"smooth", SMOOTH_SCROLL}, {"smooth", SMOOTH_SCROLL},
{"tabstospaces", TABS_TO_SPACES}, {"tabstospaces", TABS_TO_SPACES},
{"undo", 0}, {"undo", UNDOABLE},
{"whitespace", 0}, {"whitespace", 0},
{"wordbounds", WORD_BOUNDS}, {"wordbounds", WORD_BOUNDS},
{"softwrap", SOFTWRAP}, {"softwrap", SOFTWRAP},
...@@ -1047,6 +1047,9 @@ void parse_rcfile(FILE *rcstream ...@@ -1047,6 +1047,9 @@ void parse_rcfile(FILE *rcstream
else else
rcfile_error(N_("Cannot unset flag \"%s\""), rcfile_error(N_("Cannot unset flag \"%s\""),
rcopts[i].name); rcopts[i].name);
/* Looks like we still need this specific hack for undo */
if (strcasecmp(rcopts[i].name, "undo") == 0)
shortcut_init(0);
break; break;
} }
} }
......
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