summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorh-east <h.east.727@gmail.com>2021-07-26 21:54:04 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-26 21:54:04 +0200
commit29b857150c111a455f1a38a8f748243524f692e1 (patch)
tree461095b2d225d6bc7d2bf62abc12c66071823e5b /src/edit.c
parentccb148ac63941feba879ea4678aa4713d81494f2 (diff)
patch 8.2.3226: new digraph functions use old naming schemev8.2.3226
Problem: New digraph functions use old naming scheme. Solution: Use the digraph_ prefix. (Hirohito Higashi, closes #8580)
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 96464ded05..267c76d317 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -5219,7 +5219,7 @@ ins_digraph(void)
if (cc != ESC)
{
AppendToRedobuff((char_u *)CTRL_V_STR);
- c = getdigraph(c, cc, TRUE);
+ c = digraph_get(c, cc, TRUE);
#ifdef FEAT_CMDL_INFO
clear_showcmd();
#endif