From: espen Date: Wed, 12 Jan 2005 13:36:40 +0000 (+0000) Subject: Corrected return type for TEXT-BUFFER-GET-SELECTION-BOUNDS X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/ebb56f361d0aa6b17318b6fa2d36da799a3ca9e1 Corrected return type for TEXT-BUFFER-GET-SELECTION-BOUNDS --- diff --git a/gtk/gtktext.lisp b/gtk/gtktext.lisp index 211c46f..6887adb 100644 --- a/gtk/gtktext.lisp +++ b/gtk/gtktext.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: gtktext.lisp,v 1.3 2005-01-07 00:28:36 espen Exp $ +;; $Id: gtktext.lisp,v 1.4 2005-01-12 13:36:40 espen Exp $ (in-package "GTK") @@ -308,7 +308,7 @@ (default-editable boolean)) (defbinding text-buffer-get-selection-bounds (buffer &optional (start (make-instance 'text-iter)) - (end (make-instance 'text-iter))) nil + (end (make-instance 'text-iter))) boolean (buffer text-buffer) (start text-iter :return) (end text-iter :return))