From 6d4b2f54df5d533eb0794331f38445a6ca5d3a3f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 25 Aug 2022 15:11:15 +0100 Subject: patch 9.0.0263: too many #ifdefs Problem: Too many #ifdefs. Solution: Make some functions always available. --- src/ex_cmds2.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/ex_cmds2.c') diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 2de1798b18..a41e0675b7 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -27,10 +27,8 @@ autowrite(buf_T *buf, int forceit) bufref_T bufref; if (!(p_aw || p_awa) || !p_write -#ifdef FEAT_QUICKFIX // never autowrite a "nofile" or "nowrite" buffer || bt_dontwrite(buf) -#endif || (!forceit && buf->b_p_ro) || buf->b_ffname == NULL) return FAIL; set_bufref(&bufref, buf); -- cgit v1.2.3