chiark / gitweb /
Doing ref. counting before sinking in around method
[clg] / gtk / gtk.lisp
index cba75e959a3a7fc00186c0ae6e631f84f3d6d5d3..ed3c1ac7e9dc00352fe61ee677fc8e2501b205c8 100644 (file)
@@ -20,7 +20,7 @@
 ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-;; $Id: gtk.lisp,v 1.45 2005-09-26 21:34:53 espen Exp $
+;; $Id: gtk.lisp,v 1.47 2005-11-15 10:08:13 espen Exp $
 
 
 (in-package "GTK")
@@ -45,7 +45,7 @@ (defun gtk-version ()
       (format nil "Gtk+ v~A.~A.~A" major minor micro))))
 
 (defun clg-version ()
-  "clg CVS version")
+  "clg 0.91 version")
 
 
 ;;;; Initalization
@@ -1294,13 +1294,13 @@ (progn
   (defbinding %window-present () nil
     (window window))
 
-  (defbinding %window-present-with-timestamp () nil
+  (defbinding %window-present-with-time () nil
     (window window)
     (timespamp unsigned-int))
 
   (defun window-present (window &optional timestamp)
     (if timestamp
-       (%window-present-with-timestamp window timestamp)
+       (%window-present-with-time window timestamp)
       (%window-present window))))
 
 (defbinding window-iconify () nil