nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit eae9f282decd32a5e9954ac7b8e2a9ffd274b499
parent e39cf370264005f66ccb964a8ce5383615a7a4ed
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Wed, 25 Mar 2015 16:20:45 +0000

Removing a mistaken menu name -- as the formatter allows no interaction
it needs no associated menu.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5160 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 2++
Msrc/global.c | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -4,6 +4,8 @@ not cause comment colouring. (Inside single-qouted strings neither, but then quotes in comments will be coloured like strings.) This solves https://bugs.launchpad.net/ubuntu/+source/nano/+bug/481363. + * src/global.c (strtomenu): Remove mistaken menu name -- as the + formatter allows no interaction it needs no associated menu. 2015-03-23 Benno Schulenberg <bensberg@justemail.net> * src/text.c (do_alt_speller): Avoid the spell checker reporting diff --git a/src/global.c b/src/global.c @@ -1528,7 +1528,7 @@ int strtomenu(char *input) return MHELP; #endif #ifndef DISABLE_SPELLER - else if (!strcasecmp(input, "spell") || !strcasecmp(input, "formatter")) + else if (!strcasecmp(input, "spell")) return MSPELL; #endif else if (!strcasecmp(input, "linter"))