mirror of git://git.sv.gnu.org/nano.git
There are no tagless functions, so there is no need to check.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5044 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
49816fed70
commit
3cd3e32ec3
|
@ -3,6 +3,8 @@
|
||||||
to always set 'currmenu', so that we can rely on it.
|
to always set 'currmenu', so that we can rely on it.
|
||||||
* src/*.c (get_shortcut): Now that 'currmenu' is really global,
|
* src/*.c (get_shortcut): Now that 'currmenu' is really global,
|
||||||
stop passing it around.
|
stop passing it around.
|
||||||
|
* src/help.c (help_init), src/winio.c (bottombars): There are
|
||||||
|
no tagless functions, so there is no need to check.
|
||||||
|
|
||||||
2014-06-30 Mark Majeres <mark@engine12.com>
|
2014-06-30 Mark Majeres <mark@engine12.com>
|
||||||
* src/cut.c, src/global.c, src/nano.c: Rename 'cut_till_end' to
|
* src/cut.c, src/global.c, src/nano.c: Rename 'cut_till_end' to
|
||||||
|
|
|
@ -410,9 +410,6 @@ void help_init(void)
|
||||||
if ((f->menus & currmenu) == 0)
|
if ((f->menus & currmenu) == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!f->desc || f->desc[0] == '\0')
|
|
||||||
continue;
|
|
||||||
|
|
||||||
/* Let's simply show the first two shortcuts from the list. */
|
/* Let's simply show the first two shortcuts from the list. */
|
||||||
for (s = sclist, scsfound = 0; s != NULL; s = s->next) {
|
for (s = sclist, scsfound = 0; s != NULL; s = s->next) {
|
||||||
|
|
||||||
|
|
|
@ -2396,9 +2396,6 @@ void bottombars(int menu)
|
||||||
if ((f->menus & menu) == 0)
|
if ((f->menus & menu) == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!f->desc || strlen(f->desc) == 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
fprintf(stderr, "found one! f->menus = %x, desc = \"%s\"\n", f->menus, f->desc);
|
fprintf(stderr, "found one! f->menus = %x, desc = \"%s\"\n", f->menus, f->desc);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue