Commit 592f46bf authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

capitalization fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3555 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 8e341e1b
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -1297,7 +1297,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool ...@@ -1297,7 +1297,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
#endif #endif
); );
/* If we got a non-high-bit control key or a Meta key sequence, and /* If we got a non-high-bit control key or a meta key sequence, and
* it's not a shortcut or toggle, ignore it, and indicate this on * it's not a shortcut or toggle, ignore it, and indicate this on
* the statusbar. */ * the statusbar. */
if (*s_or_t == FALSE) { if (*s_or_t == FALSE) {
......
...@@ -99,7 +99,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t, ...@@ -99,7 +99,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
/* Set s_or_t to TRUE if we got a shortcut. */ /* Set s_or_t to TRUE if we got a shortcut. */
*s_or_t = have_shortcut; *s_or_t = have_shortcut;
/* If we got a non-high-bit control key or a Meta key sequence, and /* If we got a non-high-bit control key or a meta key sequence, and
* it's not a shortcut or toggle, ignore it. */ * it's not a shortcut or toggle, ignore it. */
if (*s_or_t == FALSE) { if (*s_or_t == FALSE) {
if (is_ascii_cntrl_char(input) || *meta_key == TRUE) { if (is_ascii_cntrl_char(input) || *meta_key == TRUE) {
......
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