aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 534f18d76d6..33c1d99128c 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1,5 +1,5 @@
1/* Interface definitions for display code. 1/* Interface definitions for display code.
2 Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000 2 Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -2118,12 +2118,20 @@ extern int auto_raise_tool_bar_buttons_p;
2118 2118
2119/* Margin around tool-bar buttons in pixels. */ 2119/* Margin around tool-bar buttons in pixels. */
2120 2120
2121extern int tool_bar_button_margin; 2121extern Lisp_Object Vtool_bar_button_margin;
2122 2122
2123/* Thickness of relief to draw around tool-bar buttons. */ 2123/* Thickness of relief to draw around tool-bar buttons. */
2124 2124
2125extern int tool_bar_button_relief; 2125extern int tool_bar_button_relief;
2126 2126
2127/* Default values of the above variables. */
2128
2129#define DEFAULT_TOOL_BAR_BUTTON_MARGIN 1
2130#define DEFAULT_TOOL_BAR_BUTTON_RELIEF 3
2131
2132/* The height in pixels of the default tool-bar images. */
2133
2134#define DEFAULT_TOOL_BAR_IMAGE_HEIGHT 24
2127 2135
2128 2136
2129/*********************************************************************** 2137/***********************************************************************