summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-11-15 13:24:39 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-11-15 13:24:39 +0000
commit1bf0a964ce51324377754e224bbbde2f4114b67b (patch)
tree2952af30017d1e7051fea19fc66fbe34f91ba0a4 /src/normal.cc
parent111732005a58d991df3555ad3b349952bf6f24f7 (diff)
Move is_basic_alpha to unicode.hh
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/normal.cc b/src/normal.cc
index 2b279ace..8a3da241 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -1073,11 +1073,6 @@ void select_to_next_char(Context& context, NormalParams params)
}, "select to next char","enter char to select to");
}
-static bool is_basic_alpha(Codepoint c)
-{
- return (c >= 'a' and c <= 'z') or (c >= 'A' and c <= 'Z');
-}
-
void start_or_end_macro_recording(Context& context, NormalParams params)
{
if (context.input_handler().is_recording())