formatter allows no interaction it needs no associated menu.
* src/text.c (do_formatter): Remove unneeded statement -- nothing
has changed the value of 'currmenu'.
+ * src/global.c (strtomenu), doc/man/nanorc.5: Allow rebinding the
+ linter when nano was configured with --disable-speller.
2015-03-23 Benno Schulenberg <bensberg@justemail.net>
* src/text.c (do_alt_speller): Avoid the spell checker reporting
Invokes a spell-checking program (or a linting program, if the current
syntax highlighting defines one).
.TP
+.B linter
+A synonym of \fBspeller\fR (for when the speller has not been configured).
+.TP
.B justify
Justifies the current paragraph.
.TP
!strcasecmp(input, "speller"))
s->scfunc = do_spell;
#endif
+ else if (!strcasecmp(input, "linter"))
+ s->scfunc = do_linter;
else if (!strcasecmp(input, "curpos") ||
!strcasecmp(input, "cursorpos"))
s->scfunc = do_cursorpos_void;