comparison src/buffer.c @ 8560:f3c636c673f7 v7.4.1570

commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 15 15:09:29 2016 +0100 patch 7.4.1570 Problem: There is no way to avoid the message when editing a file. Solution: Add the "F" flag to 'shortmess'. (Shougo, closes https://github.com/vim/vim/issues/686)
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Mar 2016 15:15:04 +0100
parents 768065c86a35
children 24b43dd167eb
comparison
equal deleted inserted replaced
8559:d13b2c2fb02a 8560:f3c636c673f7
137 #ifdef FEAT_NETBEANS_INTG 137 #ifdef FEAT_NETBEANS_INTG
138 && netbeansReadFile 138 && netbeansReadFile
139 #endif 139 #endif
140 ) 140 )
141 { 141 {
142 int old_msg_silent = msg_silent;
143
142 #ifdef FEAT_NETBEANS_INTG 144 #ifdef FEAT_NETBEANS_INTG
143 int oldFire = netbeansFireChanges; 145 int oldFire = netbeansFireChanges;
144 146
145 netbeansFireChanges = 0; 147 netbeansFireChanges = 0;
146 #endif 148 #endif
149 if (shortmess(SHM_FILEINFO))
150 msg_silent = 1;
147 retval = readfile(curbuf->b_ffname, curbuf->b_fname, 151 retval = readfile(curbuf->b_ffname, curbuf->b_fname,
148 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap, 152 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, eap,
149 flags | READ_NEW); 153 flags | READ_NEW);
154 msg_silent = old_msg_silent;
150 #ifdef FEAT_NETBEANS_INTG 155 #ifdef FEAT_NETBEANS_INTG
151 netbeansFireChanges = oldFire; 156 netbeansFireChanges = oldFire;
152 #endif 157 #endif
153 /* Help buffer is filtered. */ 158 /* Help buffer is filtered. */
154 if (curbuf->b_help) 159 if (curbuf->b_help)