From 0e1e9148a3b8d33bf74ebee9e88f22f69f723072 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 14 Apr 2014 14:13:56 +0200 Subject: vim-patch:7.4.232 Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) Solution: Turn this into a join command. (Christian Brabandt) https://code.google.com/p/vim/source/detail?r=845608965bd9d0b2755997a7be812746885ff105 --- src/ex_docmd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ex_docmd.h') diff --git a/src/ex_docmd.h b/src/ex_docmd.h index f9d683d09d..52c5ba8803 100644 --- a/src/ex_docmd.h +++ b/src/ex_docmd.h @@ -23,6 +23,7 @@ char_u *find_nextcmd(char_u *p); char_u *check_nextcmd(char_u *p); char_u *get_command_name(expand_T *xp, int idx); void ex_comclear(exarg_T *eap); +void ex_may_print(exarg_T *eap); void uc_clear(garray_T *gap); char_u *get_user_commands(expand_T *xp, int idx); char_u *get_user_cmd_flags(expand_T *xp, int idx); -- cgit