Move markup to glib, use G-STRING.
[cl-gtk2.git] / gtk / gtk.markup.lisp
diff --git a/gtk/gtk.markup.lisp b/gtk/gtk.markup.lisp
deleted file mode 100644 (file)
index b574a9b..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-(in-package :gtk)
-
-(defcfun |g_markup_escape_text| :string
-  (raw  :string)
-  (size :int))
-
-(defun markup-escape-text (raw)
-  (cffi:with-foreign-string (s raw)
-    (|g_markup_escape_text| s (length raw))))
-
-(export 'markup-escape-text)