Commit 5902f967 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

- nano.c:help_init() - Capitalize Meta altkeys

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1115 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 6 additions and 0 deletions
+6 -0
......@@ -6,6 +6,8 @@ CVS code -
check_writable_directory()
- Stat full_path, not path (Steven Kneizys).
- nano.c:
help_init()
- Capitalize Meta altkeys.
main()
- Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
- rcfile.c:
......
......@@ -2622,6 +2622,10 @@ void help_init(void)
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
(meta_shortcut ? "M-%c " : "(M-%c) "),
s->altval - 32);
else if (s->altval >= 'a')
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
(meta_shortcut ? "M-%c " : "(M-%c) "),
s->altval - 32);
else if (s->altval > 0)
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
(meta_shortcut ? "M-%c " : "(M-%c) "),
......
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