- Use napms() instead of nanosleep(), as it does the same thing
(aside from taking an argument in milliseconds instead of
microseconds) and curses includes it. (DLR)
- - Overhaul for efficiency. (David Benbennick)
+ - Overhaul for efficiency, and make sure the xlcredits
+ translations are done after initialization in order to avoid
+ an error when compiling with -pedantic. (David Benbennick)
- configure.ac:
- Add tests for isblank() and strcasestr(), and define
_GNU_SOURCE so that the tests work properly. Increase the
};
const char *xlcredits[XLCREDIT_LEN] = {
- _("The nano text editor"),
- _("version"),
- _("Brought to you by:"),
- _("Special thanks to:"),
- _("The Free Software Foundation"),
- _("For ncurses:"),
- _("and anyone else we forgot..."),
- _("Thank you for using nano!")
+ "The nano text editor",
+ "version",
+ "Brought to you by:",
+ "Special thanks to:",
+ "The Free Software Foundation",
+ "For ncurses:",
+ "and anyone else we forgot...",
+ "Thank you for using nano!"
};
curs_set(0);
if (what == NULL) {
assert(0 <= xlpos && xlpos < XLCREDIT_LEN);
- what = xlcredits[xlpos];
+ what = _(xlcredits[xlpos]);
xlpos++;
}
start_x = COLS / 2 - strlen(what) / 2 - 1;