summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2014-07-30 23:34:09 +0200
committerDaniel Carl <danielcarl@gmx.de>2014-07-30 23:34:59 +0200
commit555458c31ff9d6bb6232513dd5229b94e9158b90 (patch)
tree88290c6b28f8a2cc6f8a961be82c21812c02f3ac /src/normal.c
parentbeb199cc9b040d287f1af8cd3fb2dfa167f201df (diff)
Replaced deprecated g_memmove function calls.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 540f58e..210e38b 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -316,7 +316,7 @@ void normal_showcmd(int c)
extra = strlen(translated);
overflow = old + extra - SHOWCMD_LEN;
if (overflow > 0) {
- g_memmove(showcmd_buf, showcmd_buf + overflow, old - overflow + 1);
+ memmove(showcmd_buf, showcmd_buf + overflow, old - overflow + 1);
}
strcat(showcmd_buf, translated);
} else {