From 8f6ee22b415e40f78a93394233bfcf0956d737d2 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sun, 4 Feb 2018 11:13:03 -0600 Subject: [PATCH] tweaks: fix typo in rebindable function name This fixes https://savannah.gnu.org/bugs/?53062. --- src/global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global.c b/src/global.c index 8c39dabe..b13a65ac 100644 --- a/src/global.c +++ b/src/global.c @@ -1730,7 +1730,7 @@ int strtomenu(const char *input) return MWHEREIS; else if (!strcasecmp(input, "replace")) return MREPLACE; - else if (!strcasecmp(input, "replacewith2")) + else if (!strcasecmp(input, "replacewith")) return MREPLACEWITH; else if (!strcasecmp(input, "gotoline")) return MGOTOLINE;