Commit 380a7083 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in tail(), remove unneeded if statement

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4088 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 1 deletion
+5 -1
2007-04-19 David Lawrence Ramsey <pooka109@gmail.com>
* files.c (tail): Remove unneeded if statement.
2007-04-18 John M. Gabriele <jmg3000@gmail.com>
* doc/faq.html: Add a new section 4.14 (with minor tweaks by
......
......@@ -2422,7 +2422,7 @@ const char *tail(const char *foo)
if (tmp == NULL)
tmp = foo;
else if (*tmp == '/')
else
tmp++;
return tmp;
......
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