updated for version 7.1-033
diff --git a/src/option.c b/src/option.c
index b4beef1..51e6a34 100644
--- a/src/option.c
+++ b/src/option.c
@@ -10624,6 +10624,9 @@
 file_ff_differs(buf)
     buf_T	*buf;
 {
+    /* In a buffer that was never loaded the options are not valid. */
+    if (buf->b_flags & BF_NEVERLOADED)
+	return FALSE;
     if ((buf->b_flags & BF_NEW)
 	    && buf->b_ml.ml_line_count == 1
 	    && *ml_get_buf(buf, (linenr_T)1, FALSE) == NUL)
diff --git a/src/version.c b/src/version.c
index 082ce12..98ecaf8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    33,
+/**/
     32,
 /**/
     31,