]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/launcher/windows/windows.factor
Switch to https urls
[factor.git] / basis / io / launcher / windows / windows.factor
index 277f3ab8bcdb32100b21d1abb4a6e500d6b9e035..755af95bb596280e39e0801b19b1f658cf0ff8fb 100644 (file)
@@ -1,5 +1,5 @@
 ! Copyright (C) 2007, 2010 Doug Coleman, Slava Pestov.
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: accessors alien alien.c-types alien.data arrays assocs
 classes classes.struct combinators combinators.short-circuit
 concurrency.flags continuations debugger destructors init io
@@ -78,7 +78,7 @@ TUPLE: CreateProcess-args
 ! Naked double-quotes get a backslash before them
 ! Backslashes before a double-quote get doubled in the output
 ! If there's a space, double trailing backslashes and surround by quotes
-! See http://msdn.microsoft.com/en-us/library/ms647232.aspx
+! See https://msdn.microsoft.com/en-us/library/ms647232.aspx
 : escape-argument ( str -- newstr )
     escape-double-quote
     CHAR: \s over member? [
@@ -209,7 +209,7 @@ M: windows (wait-for-processes)
     } case ;
 
 ! The below code is based on the example given in
-! http://msdn2.microsoft.com/en-us/library/ms682499.aspx
+! https://msdn2.microsoft.com/en-us/library/ms682499.aspx
 
 : redirect-default ( obj access-mode create-mode -- handle )
     3drop f ;