From 57a54f5360e7ba7c5282746c4d58fac74a3b559a Mon Sep 17 00:00:00 2001 Message-Id: <57a54f5360e7ba7c5282746c4d58fac74a3b559a.1715447917.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 17 Apr 2005 21:43:16 +0000 Subject: [PATCH] Exporting symbols Organization: Straylight/Edgeware From: espen --- gtk/gtkstyle.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gtk/gtkstyle.lisp b/gtk/gtkstyle.lisp index 290cf60..1a357c1 100644 --- a/gtk/gtkstyle.lisp +++ b/gtk/gtkstyle.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gtkstyle.lisp,v 1.1 2004-12-20 00:48:57 espen Exp $ +;; $Id: gtkstyle.lisp,v 1.2 2005-04-17 21:43:16 espen Exp $ (in-package "GTK") @@ -224,3 +224,8 @@ (defun style-black-gc (style) (defun style-white-gc (style) (%style-get-gc style :white :normal)) + +(export + '(style-fg style-bg style-light style-dark style-mid style-text style-base + style-text-aa style-fg-gc style-bg-gc style-light-gc style-dark-gc + style-mid-gc style-text-gc style-base-gc style-text-aa-gc)) -- [mdw]