Fix default keyword argument on gtk:editable-get-chars
authorDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Thu, 24 Sep 2009 03:04:46 +0000 (07:04 +0400)
committerDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Thu, 24 Sep 2009 03:04:46 +0000 (07:04 +0400)
gtk/gtk.entry.lisp

index 6cd0c45..c4362ae 100644 (file)
@@ -86,7 +86,7 @@
   (start-pos :int)
   (end-pos :int))
 
-(defun editable-get-chars (editable &key (start -1) (end -1))
+(defun editable-get-chars (editable &key (start 0) (end -1))
   (gtk-editable-get-chars editable start end))
 
 (export 'editable-get-chars)