aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-01-30 15:04:35 +0000
committerGerd Moellmann2001-01-30 15:04:35 +0000
commitcc4cb7559c4e91c908e42d35f095c9a02808f1a3 (patch)
treeda2210ed31ea6bcd06425b9a91bc614e645130ec /src
parent2149d5dc0fafbbfd49ad74066c7cf332ac40d294 (diff)
downloademacs-cc4cb7559c4e91c908e42d35f095c9a02808f1a3.tar.gz
emacs-cc4cb7559c4e91c908e42d35f095c9a02808f1a3.zip
(Vtool_bar_button_margin:): Declare extern.
(DEFAULT_TOOL_BAR_BUTTON_MARGIN, DEFAULT_TOOL_BAR_BUTTON_RELIEF) (DEFAULT_TOOL_BAR_IMAGE_HEIGHT): New defines.
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/***********************************************************************