0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)

This commit is contained in:
Bram Moolenaar
2010-05-30 19:00:15 +02:00
parent a17d4c1934
commit fd3e5dc97f
5 changed files with 13 additions and 4 deletions

View File

@@ -1090,7 +1090,6 @@ Vim 7.3:
Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi
- Persistent undo bugs / fixes: - Persistent undo bugs / fixes:
- Need to check all values for evil manipulation. - Need to check all values for evil manipulation.
- patch for unused functions. (Dominique Pelle, 2010 May 29)
- Also crypt the undo file. - Also crypt the undo file.
- Also crypt the swap file, each block separately. Change mf_write() and - Also crypt the swap file, each block separately. Change mf_write() and
mf_read(). How to get b_p_key to these functions? mf_read(). How to get b_p_key to these functions?

View File

@@ -3908,6 +3908,7 @@ gui_drag_scrollbar(sb, value, still_dragging)
* Scrollbar stuff: * Scrollbar stuff:
*/ */
#if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) || defined(PROTO)
/* /*
* Called when something in the window layout has changed. * Called when something in the window layout has changed.
*/ */
@@ -3922,6 +3923,7 @@ gui_may_update_scrollbars()
} }
need_mouse_correct = TRUE; need_mouse_correct = TRUE;
} }
#endif
void void
gui_update_scrollbars(force) gui_update_scrollbars(force)

View File

@@ -172,12 +172,13 @@ gtk_form_move(GtkForm *form,
} }
} }
#if !defined(HAVE_GTK2) || defined(PROTO)
void void
gtk_form_set_size(GtkForm *form, guint width, guint height) gtk_form_set_size(GtkForm *form, guint width, guint height)
{ {
g_return_if_fail(GTK_IS_FORM(form)); g_return_if_fail(GTK_IS_FORM(form));
/* prevent unneccessary calls */ /* prevent useless calls */
if (form->width == width && form->height == height) if (form->width == width && form->height == height)
return; return;
form->width = width; form->width = width;
@@ -190,6 +191,7 @@ gtk_form_set_size(GtkForm *form, guint width, guint height)
gtk_container_queue_resize(GTK_CONTAINER(GTK_WIDGET(form)->parent)); gtk_container_queue_resize(GTK_CONTAINER(GTK_WIDGET(form)->parent));
#endif #endif
} }
#endif
void void
gtk_form_freeze(GtkForm *form) gtk_form_freeze(GtkForm *form)

View File

@@ -297,6 +297,8 @@ redrawWinline(lnum, invalid)
#endif #endif
} }
#if defined(FEAT_RUBY) || defined(FEAT_VISUAL) || \
(defined(FEAT_CLIPBOARD) && defined(FEAT_X11)) || defined(PROTO)
/* /*
* update all windows that are editing the current buffer * update all windows that are editing the current buffer
*/ */
@@ -307,6 +309,7 @@ update_curbuf(type)
redraw_curbuf_later(type); redraw_curbuf_later(type);
update_screen(type); update_screen(type);
} }
#endif
/* /*
* update_screen() * update_screen()

View File

@@ -2609,6 +2609,8 @@ out_char_nf(c)
out_flush(); out_flush();
} }
#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
|| defined(FEAT_TERMRESPONSE) || defined(PROTO)
/* /*
* A never-padding out_str. * A never-padding out_str.
* use this whenever you don't want to run the string through tputs. * use this whenever you don't want to run the string through tputs.
@@ -2631,6 +2633,7 @@ out_str_nf(s)
if (p_wd) if (p_wd)
out_flush(); out_flush();
} }
#endif
/* /*
* out_str(s): Put a character string a byte at a time into the output buffer. * out_str(s): Put a character string a byte at a time into the output buffer.
@@ -4361,7 +4364,7 @@ check_termcode(max_offset, buf, buflen)
* ### Y cursor position padded to 3 digits * ### Y cursor position padded to 3 digits
* (s-x) SHIFT key pressed - not pressed x not reporting * (s-x) SHIFT key pressed - not pressed x not reporting
* (c-x) CTRL key pressed - not pressed x not reporting * (c-x) CTRL key pressed - not pressed x not reporting
* \033\\ terminateing sequence * \033\\ terminating sequence
*/ */
p = tp + slen; p = tp + slen;
@@ -4607,7 +4610,7 @@ check_termcode(max_offset, buf, buflen)
# ifdef FEAT_MOUSE_PTERM # ifdef FEAT_MOUSE_PTERM
if (key_name[0] == (int)KS_PTERM_MOUSE) if (key_name[0] == (int)KS_PTERM_MOUSE)
{ {
int button, num_clicks, action, mc, mr; int button, num_clicks, action;
p = tp + slen; p = tp + slen;