diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-04-01 17:49:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-04-01 17:49:44 +0200 |
commit | fd3fe98b78edb10f2d439b0c6d56e6d70eecb92d (patch) | |
tree | ddac03ff4e8559f59c4c3bd56cd63105a4ce35eb /src/proto | |
parent | efa304d760640e5c575bef97d689f7c360b20779 (diff) | |
download | vim-git-fd3fe98b78edb10f2d439b0c6d56e6d70eecb92d.tar.gz |
updated for version 7.4.232v7.4.232
Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin)
Solution: Turn this into a join command. (Christian Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_docmd.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 816fd3fd5..ebc54c9de 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -54,4 +54,5 @@ int put_eol __ARGS((FILE *fd)); int put_line __ARGS((FILE *fd, char *s)); void dialog_msg __ARGS((char_u *buff, char *format, char_u *fname)); char_u *get_behave_arg __ARGS((expand_T *xp, int idx)); +void ex_may_print __ARGS((exarg_T *eap)); /* vim: set ft=c : */ |