comparison src/proto/memline.pro @ 14475:dddba3937532 v8.1.0251

patch 8.1.0251: using full path is not supported for 'backupdir' commit https://github.com/vim/vim/commit/b782ba475a3f8f2b0be99dda164ba4545347f60f Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 7 21:39:28 2018 +0200 patch 8.1.0251: using full path is not supported for 'backupdir' Problem: Using a full path is supported for 'directory' but not for 'backupdir'. (Mikolaj Machowski) Solution: Support 'backupdir' as well. (Christian Brabandt, closes #179)
author Christian Brabandt <cb@256bit.org>
date Tue, 07 Aug 2018 21:45:05 +0200
parents f094d4085014
children 72d6f6f7ead7
comparison
equal deleted inserted replaced
14474:6325f850efcf 14475:dddba3937532
32 void ml_setflags(buf_T *buf); 32 void ml_setflags(buf_T *buf);
33 char_u *ml_encrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size); 33 char_u *ml_encrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size);
34 void ml_decrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size); 34 void ml_decrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size);
35 long ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp); 35 long ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp);
36 void goto_byte(long cnt); 36 void goto_byte(long cnt);
37 char_u *make_percent_swname (char_u *dir, char_u *name);
37 /* vim: set ft=c : */ 38 /* vim: set ft=c : */