diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-04-29 16:47:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-04-29 16:47:23 +0000 |
commit | 3c65e314b432707440593d9ecf8d016b99e8ed8c (patch) | |
tree | fd672e95892087575722b1e9b7d63433dae6d92a /src/ex_getln.c | |
parent | 5135d46481e766077b5b749156a333a3c5585fe1 (diff) | |
download | vim-git-3c65e314b432707440593d9ecf8d016b99e8ed8c.tar.gz |
updated for version 7.2-166v7.2.166
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index f3bcc2bee..32635f814 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -325,7 +325,7 @@ getcmdline(firstc, count, indent) #endif #ifdef FEAT_DIGRAPHS - do_digraph(-1); /* init digraph typahead */ + do_digraph(-1); /* init digraph typeahead */ #endif /* @@ -4521,6 +4521,9 @@ ExpandFromContext(xp, pat, num_file, file, options) #ifdef FEAT_CSCOPE {EXPAND_CSCOPE, get_cscope_name, TRUE}, #endif +#ifdef FEAT_SIGNS + {EXPAND_SIGN, get_sign_name, TRUE}, +#endif #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) {EXPAND_LANGUAGE, get_lang_arg, TRUE}, |