diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-07-05 15:58:32 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-07-05 15:58:32 +0000 |
commit | 325b7a2fb5b970b77f7b9ec28ba15eb794f6edf8 (patch) | |
tree | a2b0cfed6da973286326442419e56938dc966ea4 /src/ex_cmds2.c | |
parent | 592e0a2a1dbc542134c3fd88b4cdfa40e258f41b (diff) | |
download | vim-git-325b7a2fb5b970b77f7b9ec28ba15eb794f6edf8.tar.gz |
updated for version 7.0006
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index f9bd48773..ed7e08c00 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -3811,8 +3811,9 @@ struct prt_ps_resource_S * * VIM Prolog * 6.2 1.3 + * 7.0 1.4 */ -#define PRT_PROLOG_VERSION ((char_u *)"1.3") +#define PRT_PROLOG_VERSION ((char_u *)"1.4") /* String versions of PS resource types - indexed by constants above so don't * re-order! @@ -5116,6 +5117,10 @@ mch_print_end(psettings) prt_dsc_noarg("EOF"); + /* Write CTRL-D to close serial communication link if used. + * NOTHING MUST BE WRITTEN AFTER THIS! */ + prt_write_file(IF_EB("\004", "\067")); + if (!prt_file_error && psettings->outfile == NULL && !got_int && !psettings->user_abort) { |