Commit 6315e2ff authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in do_tab(), remove unneeded variable kbinput

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2630 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -129,6 +129,8 @@ CVS code -
usage()
- Add missing N_() around one message, so that it isn't
erroneously translated twice. (DLR)
do_tab()
- Remove unneeded variable kbinput. (DLR)
do_alt_speller()
- Replace a set_modified() with SET(MODIFIED) to avoid an
unnecessary update, and remove an unneeded clearok(FALSE).
......
......@@ -1389,9 +1389,7 @@ void do_delete(void)
void do_tab(void)
{
char *kbinput = "\t";
do_output(kbinput, 1, TRUE);
do_output("\t", 1, TRUE);
}
/* Someone hits Return *gasp!* */
......
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