diff options
| author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2016-03-29 01:56:21 -0300 | 
|---|---|---|
| committer | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2017-04-11 00:33:09 +0200 | 
| commit | d0b08f32f56c39df484ca10c6c928596548ad8f6 (patch) | |
| tree | d6707c56cb55228e79e5221fc059e8ec133cb01c /src/nvim/globals.h | |
| parent | 9ea111d1af6abcac361eece478fb7709e5264b82 (diff) | |
| download | rneovim-d0b08f32f56c39df484ca10c6c928596548ad8f6.tar.gz rneovim-d0b08f32f56c39df484ca10c6c928596548ad8f6.tar.bz2 rneovim-d0b08f32f56c39df484ca10c6c928596548ad8f6.zip | |
Remove the mf_dont_release global after getting rid of maxmem[tot]
Diffstat (limited to 'src/nvim/globals.h')
| -rw-r--r-- | src/nvim/globals.h | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 3c705d88a5..c41b54e22e 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -588,10 +588,6 @@ EXTERN buf_T    *curbuf INIT(= NULL);    // currently active buffer  #define FOR_ALL_BUFFERS_BACKWARDS(buf) \    for (buf_T *buf = lastbuf; buf != NULL; buf = buf->b_prev) -/* Flag that is set when switching off 'swapfile'.  It means that all blocks - * are to be loaded into memory.  Shouldn't be global... */ -EXTERN int mf_dont_release INIT(= FALSE);       /* don't release blocks */ -  /*   * List of files being edited (global argument list).  curwin->w_alist points   * to this when the window is using the global argument list. | 
