comparison src/structs.h @ 8281:74b15ed0a259 v7.4.1433

commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 27 18:13:23 2016 +0100 patch 7.4.1433 Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
author Christian Brabandt <cb@256bit.org>
date Sat, 27 Feb 2016 18:15:07 +0100
parents 108d30ed34ba
children 3b9a306724ec
comparison
equal deleted inserted replaced
8280:65bed5ff0ba6 8281:74b15ed0a259
1637 #ifdef VMS 1637 #ifdef VMS
1638 char b_fab_rfm; /* Record format */ 1638 char b_fab_rfm; /* Record format */
1639 char b_fab_rat; /* Record attribute */ 1639 char b_fab_rat; /* Record attribute */
1640 unsigned int b_fab_mrs; /* Max record size */ 1640 unsigned int b_fab_mrs; /* Max record size */
1641 #endif 1641 #endif
1642 #ifdef FEAT_SNIFF
1643 int b_sniff; /* file was loaded through Sniff */
1644 #endif
1645
1646 int b_fnum; /* buffer number for this file. */ 1642 int b_fnum; /* buffer number for this file. */
1647 1643
1648 int b_changed; /* 'modified': Set to TRUE if something in the 1644 int b_changed; /* 'modified': Set to TRUE if something in the
1649 file has been changed and not written out. */ 1645 file has been changed and not written out. */
1650 int b_changedtick; /* incremented for each change, also for undo */ 1646 int b_changedtick; /* incremented for each change, also for undo */