From 236e096ef31850942bb6563b3ed0a9b718392960 Mon Sep 17 00:00:00 2001 Message-Id: <236e096ef31850942bb6563b3ed0a9b718392960.1716653029.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 4 Jun 2007 10:42:53 +0000 Subject: [PATCH] Added missing surface types Organization: Straylight/Edgeware From: espen --- cairo/cairo.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cairo/cairo.lisp b/cairo/cairo.lisp index 74bf02a..5b5db2c 100644 --- a/cairo/cairo.lisp +++ b/cairo/cairo.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: cairo.lisp,v 1.12 2007/04/06 14:12:09 espen Exp $ +;; $Id: cairo.lisp,v 1.13 2007/06/04 10:42:53 espen Exp $ (in-package "CAIRO") @@ -58,7 +58,7 @@ (define-enum-type hint-metrics :default :off :on) (define-enum-type surface-type image-surface pdf-surface ps-surface xlib-surface xcb-surface glitz-surface quartz-surface win32-surface beos-surface - directfb-surface) + directfb-surface svg-surface os2-surface) (defclass surface-class (proxy-class) ()) -- [mdw]