]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/windows/handles/handles.factor
pcre2: fix un-named capture groups
[factor.git] / basis / windows / handles / handles.factor
index 07d6c8f5d2fd66eb02c01dbf15f3966b6f45beed..0fb57eb814320fea3e0156260d1a3a7c0613f760 100644 (file)
@@ -1,5 +1,5 @@
 ! Copyright (C) 2010 Doug Coleman.
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: accessors destructors kernel windows.errors
 windows.kernel32 windows.types ;
 IN: windows.handles
@@ -17,5 +17,5 @@ TUPLE: win32-handle < disposable handle ;
 : <win32-handle> ( handle -- win32-handle )
     win32-handle new-win32-handle ;
 
-M: win32-handle dispose* ( handle -- )
+M: win32-handle dispose*
     handle>> CloseHandle win32-error=0/f ;