Typo.
[cl-gtk2.git] / glib / glib.markup.lisp
1 (in-package :glib)
2
3 (defcfun g-markup-escape-text g-string
4   (text :string)
5   (length :int))
6
7 (defun markup-escape-text (string)
8   (g-markup-escape-text string (length string)))
9
10 (export 'markup-escape-text)