From 6a0046e94cb1ea48e959d7bcec529ebe126c45ba Mon Sep 17 00:00:00 2001 Message-Id: <6a0046e94cb1ea48e959d7bcec529ebe126c45ba.1727341958.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 12 Jan 2005 13:36:40 +0000 Subject: [PATCH] Corrected return type for TEXT-BUFFER-GET-SELECTION-BOUNDS Organization: Straylight/Edgeware From: espen --- gtk/gtktext.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtktext.lisp b/gtk/gtktext.lisp index 4ddadd7..8b67ff9 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)) -- [mdw]