Commit 63e73cbd authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2151 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -2582,7 +2582,7 @@ char *do_browser(const char *inpath) ...@@ -2582,7 +2582,7 @@ char *do_browser(const char *inpath)
if (selected > numents - 1) if (selected > numents - 1)
selected = numents - 1; selected = numents - 1;
else if (selectedbackup == selected) else if (selectedbackup == selected)
/* Unget the 'select' key */ /* Put back the 'select' key */
unget_kbinput('s', FALSE, FALSE); unget_kbinput('s', FALSE, FALSE);
} else { } else {
/* Must be clicking a shortcut */ /* Must be clicking a shortcut */
......
...@@ -3026,8 +3026,8 @@ void do_justify(bool full_justify) ...@@ -3026,8 +3026,8 @@ void do_justify(bool full_justify)
shortcut_init(TRUE); shortcut_init(TRUE);
display_main_list(); display_main_list();
/* Now get a keystroke and see if it's unjustify; if not, unget the /* Now get a keystroke and see if it's unjustify. If not, put back
* keystroke and return. */ * the keystroke and return. */
kbinput = get_edit_input(&meta_key, &func_key, FALSE); kbinput = get_edit_input(&meta_key, &func_key, FALSE);
if (!meta_key && !func_key && kbinput == NANO_UNJUSTIFY_KEY) { if (!meta_key && !func_key && kbinput == NANO_UNJUSTIFY_KEY) {
......
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