- cut.c:
do_cut_text()
- marked text cut fixes (Rocco) (Fixes bug #54).
+- nano.c:
+ do_justify()
+ - If the keystroke after the justify is not the unjustify key,
+ blank the statsubar (bug reported by Neil Parks).
+
- hu.po:
- Hungarian translation by Horvath Szabolcs.
/* Now get a keystroke and see if it's unjustify, if not unget the keytroke
and return */
- if ((kbinput = wgetch(edit)) != NANO_UNJUSTIFY_KEY)
+ if ((kbinput = wgetch(edit)) != NANO_UNJUSTIFY_KEY) {
ungetch(kbinput);
- else {
+ blank_statusbar_refresh();
+ } else {
/* Else restore the justify we just did (ungrateful user!) */
if (tmptop->prev != NULL)
tmptop->prev->next = tmpbot->next;