diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
commit | d4755bb0e04fca334675f1503bd6474b017a9bba (patch) | |
tree | 8be8df859191e78ee9eef80d3b341fd5d0c1b81b /src/structs.h | |
parent | 269ec658f0fad22b2bf9f71b06a4e6e10277f0e5 (diff) | |
download | vim-git-d4755bb0e04fca334675f1503bd6474b017a9bba.tar.gz |
updated for version 7.0014
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 4f3b11f13..d43e55c8f 100644 --- a/src/structs.h +++ b/src/structs.h @@ -419,6 +419,7 @@ typedef struct # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) int confirm; /* TRUE to invoke yes/no dialog */ # endif + int keepalt; /* TRUE when ":keepalt" was used */ int keepmarks; /* TRUE when ":keepmarks" was used */ int keepjumps; /* TRUE when ":keepjumps" was used */ int lockmarks; /* TRUE when ":lockmarks" was used */ @@ -922,7 +923,9 @@ struct file_buffer FSSpec b_FSSpec; /* MacOS File Identification */ #endif #ifdef VMS - char b_fab_rfm; /* Record format */ + char b_fab_rfm; /* Record format */ + char b_fab_rat; /* Record attribute */ + unsigned int b_fab_mrs; /* Max record size */ #endif #ifdef FEAT_SNIFF int b_sniff; /* file was loaded through Sniff */ |