comparison src/move.c @ 6689:97cc4ee3e095 v7.4.669

updated for version 7.4.669 Problem: When netbeans is active the sign column always shows up. Solution: Only show the sign column once a sign has been added. (Xavier de Gaye)
author Bram Moolenaar <bram@vim.org>
date Fri, 20 Mar 2015 18:11:48 +0100
parents 7cda721eadb0
children 286fd54c7ae3
comparison
equal deleted inserted replaced
6688:a2bcc773cfa0 6689:97cc4ee3e095
903 #endif 903 #endif
904 #ifdef FEAT_SIGNS 904 #ifdef FEAT_SIGNS
905 + ( 905 + (
906 # ifdef FEAT_NETBEANS_INTG 906 # ifdef FEAT_NETBEANS_INTG
907 /* show glyph gutter in netbeans */ 907 /* show glyph gutter in netbeans */
908 netbeans_active() || 908 wp->w_buffer->b_has_sign_column ||
909 # endif 909 # endif
910 wp->w_buffer->b_signlist != NULL ? 2 : 0) 910 wp->w_buffer->b_signlist != NULL ? 2 : 0)
911 #endif 911 #endif
912 ); 912 );
913 } 913 }