comparison src/structs.h @ 8422:5d2c84be23b5 v7.4.1502

commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 6 20:22:25 2016 +0100 patch 7.4.1502 Problem: Writing last-but-one line of buffer to a channel isn't implemented yet. Solution: Implement it. Fix leaving a swap file behind.
author Christian Brabandt <cb@256bit.org>
date Sun, 06 Mar 2016 20:30:04 +0100
parents 3b9a306724ec
children d0717262d802
comparison
equal deleted inserted replaced
8421:4be5f7dd51dc 8422:5d2c84be23b5
2049 2049
2050 #ifdef FEAT_NETBEANS_INTG 2050 #ifdef FEAT_NETBEANS_INTG
2051 int b_netbeans_file; /* TRUE when buffer is owned by NetBeans */ 2051 int b_netbeans_file; /* TRUE when buffer is owned by NetBeans */
2052 int b_was_netbeans_file;/* TRUE if b_netbeans_file was once set */ 2052 int b_was_netbeans_file;/* TRUE if b_netbeans_file was once set */
2053 #endif 2053 #endif
2054 #ifdef FEAT_CHANNEL
2055 int b_write_to_channel; /* TRUE when appended lines are written to
2056 * a channel. */
2057 #endif
2054 2058
2055 #ifdef FEAT_CRYPT 2059 #ifdef FEAT_CRYPT
2056 cryptstate_T *b_cryptstate; /* Encryption state while reading or writing 2060 cryptstate_T *b_cryptstate; /* Encryption state while reading or writing
2057 * the file. NULL when not using encryption. */ 2061 * the file. NULL when not using encryption. */
2058 #endif 2062 #endif