diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-13 18:48:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-13 18:48:16 +0000 |
commit | f1726cc8d66a0f260bb68e212d847239627789f0 (patch) | |
tree | b98b20ca7b4c09d9d1a0b1bd75894eba8a1c2e35 /src/structs.h | |
parent | 5fd0ca70d31f835eefb1ee8a06b73763d761a134 (diff) | |
download | vim-git-f1726cc8d66a0f260bb68e212d847239627789f0.tar.gz |
updated for version 7.2-170v7.2.170
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 7deb5abc4..25012d698 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1166,7 +1166,8 @@ struct file_buffer char_u *b_fname; /* current file name */ #ifdef UNIX - dev_t b_dev; /* device number (-1 if not set) */ + int b_dev_valid; /* TRUE when b_dev has a valid number */ + dev_t b_dev; /* device number */ ino_t b_ino; /* inode number */ #endif #ifdef FEAT_CW_EDITOR |