Commit 18b10929 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

2014-01-01 Chris Allegretta <chrisa@asty.org>

        * src/global.c (strtokeytype) - Check for lower-case 'f' for defining F-key
          sequences for consistency (previously was two checks for upper case F). Fixes
          bug 40815 reported by David Binderman <dcb314@Savannah>.



git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4581 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 6 additions and 1 deletion
+6 -1
2014-01-01 Chris Allegretta <chrisa@asty.org>
* src/global.c (strtokeytype) - Check for lower-case 'f' for defining F-key
sequences for consistency (previously was two checks for upper case F). Fixes
bug 40815 reported by David Binderman <dcb314@Savannah>.
2013-06-13 Matthew Fischer <mfisch@Savannah>
* doc/syntax/c.nanorc - Add auto keyword
......
......@@ -271,7 +271,7 @@ function_type strtokeytype(const char *str)
return META;
else if (str[0] == '^')
return CONTROL;
else if (str[0] == 'F' || str[0] == 'F')
else if (str[0] == 'F' || str[0] == 'f')
return FKEY;
else
return RAWINPUT;
......
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