Mercurial > vim
comparison src/ex_cmds.c @ 6236:c72eb8499a9d v7.4.453
updated for version 7.4.453
Problem: Still can't build with tiny features.
Solution: Add #ifdef.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 19 Sep 2014 22:23:26 +0200 |
parents | 78aad99db762 |
children | 387e63680524 |
comparison
equal
deleted
inserted
replaced
6235:a863c5da603b | 6236:c72eb8499a9d |
---|---|
5904 */ | 5904 */ |
5905 void | 5905 void |
5906 ex_helpclose(eap) | 5906 ex_helpclose(eap) |
5907 exarg_T *eap UNUSED; | 5907 exarg_T *eap UNUSED; |
5908 { | 5908 { |
5909 #if defined(FEAT_WINDOWS) | |
5909 win_T *win; | 5910 win_T *win; |
5910 | 5911 |
5911 FOR_ALL_WINDOWS(win) | 5912 FOR_ALL_WINDOWS(win) |
5912 { | 5913 { |
5913 if (win->w_buffer->b_help) | 5914 if (win->w_buffer->b_help) |
5914 { | 5915 { |
5915 win_close(win, FALSE); | 5916 win_close(win, FALSE); |
5916 return; | 5917 return; |
5917 } | 5918 } |
5918 } | 5919 } |
5920 #endif | |
5919 } | 5921 } |
5920 | 5922 |
5921 #if defined(FEAT_MULTI_LANG) || defined(PROTO) | 5923 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
5922 /* | 5924 /* |
5923 * In an argument search for a language specifiers in the form "@xx". | 5925 * In an argument search for a language specifiers in the form "@xx". |