]> gitweb.factorcode.org Git - factor.git/commitdiff
basis/extra: removing unnecessary IN: statements.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 3 Jan 2022 15:46:06 +0000 (07:46 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 3 Jan 2022 15:46:06 +0000 (07:46 -0800)
20 files changed:
basis/bit-arrays/prettyprint/prettyprint.factor
basis/bit-vectors/prettyprint/prettyprint.factor
basis/dlists/prettyprint/prettyprint.factor
basis/hash-sets/identity/prettyprint/prettyprint.factor
basis/hash-sets/numbers/prettyprint/prettyprint.factor
basis/hash-sets/sequences/prettyprint/prettyprint.factor
basis/hash-sets/wrapped/prettyprint/prettyprint.factor
basis/hashtables/identity/prettyprint/prettyprint.factor
basis/hashtables/sequences/prettyprint/prettyprint.factor
basis/hashtables/wrapped/prettyprint/prettyprint.factor
basis/io/streams/byte-array/fast/fast.factor
basis/math/rectangles/prettyprint/prettyprint.factor
basis/regexp/prettyprint/prettyprint.factor
basis/stack-checker/errors/prettyprint/prettyprint.factor
basis/ui/gadgets/prettyprint/prettyprint.factor
basis/urls/prettyprint/prettyprint.factor
basis/vlists/prettyprint/prettyprint.factor
basis/windows/com/prettyprint/prettyprint.factor
extra/game/loop/prettyprint/prettyprint.factor
extra/gpu/shaders/prettyprint/prettyprint.factor

index 6434825d6f68f28d015b87ba44d9ec53a3a0ec16..838fbffe412653905774657fae02202f93d45450 100644 (file)
@@ -1,5 +1,4 @@
 USING: bit-arrays kernel prettyprint.custom ;
-IN: bit-arrays.prettyprint
 
 M: bit-array pprint-delims drop \ ?{ \ } ;
 M: bit-array >pprint-sequence ;
index d40a4eafbb68e7b6627bd4fea042201d6ff5b85f..74b7a391ee8e9d263b56ca13b97ac051c85bcb40 100644 (file)
@@ -1,5 +1,4 @@
 USING: bit-vectors kernel prettyprint.custom ;
-IN: bit-vectors.prettyprint
 
 M: bit-vector >pprint-sequence ;
 M: bit-vector pprint-delims drop \ ?V{ \ } ;
index c4c8e020b9109d12d477cc3d3694a85e790b2ecf..74a16f5c746c75a68f86268b05f91cbb51a82102 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2011 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: dlists kernel prettyprint.custom ;
-IN: dlists.prettyprint
 
 M: dlist pprint-delims drop \ DL{ \ } ;
 M: dlist >pprint-sequence dlist>sequence ;
index 25baec023459943e80af81c4e344edd0e2dffe34..c7dd3daf927e0d5f9c8c17dd51739b6946954b9f 100644 (file)
@@ -3,6 +3,4 @@
 
 USING: hash-sets.identity kernel prettyprint.custom ;
 
-IN: hash-sets.identity.prettyprint
-
 M: identity-hash-set pprint-delims drop \ IHS{ \ } ;
index 55188e1c6057e602d87a85230ed80abc28dbef22..04a48ba704b94b1f7d351ce5596553875a9aca27 100644 (file)
@@ -3,6 +3,4 @@
 
 USING: hash-sets.numbers kernel prettyprint.custom ;
 
-IN: hash-sets.numbers.prettyprint
-
 M: number-hash-set pprint-delims drop \ NHS{ \ } ;
index b97a9d44c7546c883e3e7e55fb1b3b9ea3c1cfb0..8c1ec9c0ed0febad8efc3e6c23332b5fcce2b60a 100644 (file)
@@ -3,6 +3,4 @@
 
 USING: hash-sets.sequences kernel prettyprint.custom ;
 
-IN: hash-sets.sequences.prettyprint
-
 M: sequence-hash-set pprint-delims drop \ SHS{ \ } ;
index 810be0c91a27878ea275f84fecc1c70cdfb93818..b59ff800d9cd49223c30ffc51d2c613139bb12b7 100644 (file)
@@ -4,8 +4,6 @@
 USING: continuations hash-sets.wrapped namespaces
 prettyprint.config prettyprint.custom sets ;
 
-IN: hash-sets.wrapped.prettyprint
-
 M: wrapped-hash-set >pprint-sequence members ;
 
 M: wrapped-hash-set pprint*
index 4e27c5968d73685947a7c1e16f22842baccde38a..83c9d7d966cb75e0e75b22b82ddf9b08e84bb512 100644 (file)
@@ -3,6 +3,4 @@
 
 USING: hashtables.identity kernel prettyprint.custom ;
 
-IN: hashtables.identity.prettyprint
-
 M: identity-hashtable pprint-delims drop \ IH{ \ } ;
index 8b80399a39ad76014181a91dabe57f07e950638d..23a0a662733e81ccb084b8f1b0057fb6b69def59 100644 (file)
@@ -3,6 +3,4 @@
 
 USING: hashtables.sequences kernel prettyprint.custom ;
 
-IN: hashtables.sequences.prettyprint
-
 M: sequence-hashtable pprint-delims drop \ SH{ \ } ;
index cf4100e44ddcee6a8a62df447d7e214f7ab4d118..adeb0098513ad4bea1b9f7166f288cbd6798673f 100644 (file)
@@ -4,8 +4,6 @@
 USING: assocs continuations hashtables.wrapped namespaces
 prettyprint.config prettyprint.custom ;
 
-IN: hashtables.wrapped.prettyprint
-
 M: wrapped-hashtable >pprint-sequence >alist ;
 
 M: wrapped-hashtable pprint*
index 9f74d0778b240067a747608d43e23b937c3f07f2..26dae5f4bf5126f28750000eb06d16010827bc09 100644 (file)
@@ -2,7 +2,6 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien byte-arrays byte-vectors io kernel libc math
 sequences ;
-IN: io.streams.byte-array.fast
 
 ! This is split off from io.streams.byte-array because it uses
 ! memcpy, which is a non-core word that only works after the
index b1fe1789f788d3d0615a4256999c62eb762f8887..c6e00d2f0c3cf41c88270a6c846234e7cab5933e 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors math.rectangles kernel prettyprint.custom prettyprint.backend ;
-IN: math.rectangles.prettyprint
+USING: accessors math.rectangles kernel prettyprint.custom
+prettyprint.backend ;
 
 M: rect pprint*
     [
index ae3877c7d78f39797d823c2cea453fe12c708221..fd7def208db70f00fcea9e5fe249ed592cef98c8 100644 (file)
@@ -2,7 +2,6 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors kernel make prettyprint.backend
 prettyprint.custom regexp regexp.parser splitting ;
-IN: regexp.prettyprint
 
 M: regexp pprint*
     [
index 40eca52c6238d091857e08fb93ff431904996a0c..edc90554a674eaabc5df8227ea2421713c16aa22 100644 (file)
@@ -2,7 +2,6 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors arrays debugger io kernel prettyprint sequences
 stack-checker.errors summary ;
-IN: stack-checker.errors.prettyprint
 
 M: unknown-macro-input summary
     macro>> name>> "Cannot apply “" "” to an input parameter of a non-inline word" surround ;
index 45b540994e2c83c75a9217d1bed5c699cc2522d9..b77c35510aef062d1c015df7f7ad5a02a404e5bc 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: ui.gadgets prettyprint.backend prettyprint.custom ;
-IN: ui.gadgets.prettyprint
 
 ! Don't print gadgets with RECT: syntax
 M: gadget pprint* pprint-tuple ;
index 35e428c8fa30005b650b03c0ff21bd2686fe2e4c..c4ce8d9693fa99018575d7b1cf770fb59a7acfa6 100644 (file)
@@ -2,7 +2,6 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: kernel present prettyprint.custom prettyprint.sections
 prettyprint.backend urls ;
-IN: urls.prettyprint
 
 M: url pprint*
     \ URL" record-vocab
index 76e373726a647847c721aae0698d3115136e3c8d..d60b51db228b56e89bf5693d5a7a56eaa2c1bd58 100644 (file)
@@ -1,5 +1,4 @@
 USING: assocs kernel prettyprint.custom vlists ;
-IN: vlists.prettyprint
 
 M: vlist pprint-delims drop \ VL{ \ } ;
 M: vlist >pprint-sequence ;
index ef79a586005fac7e75150c1ccb3e1bf569aa3821..e95e1f195c8aceed5dfe7b2f387f91126fe2b752 100644 (file)
@@ -2,6 +2,5 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: windows.kernel32 windows.ole32 prettyprint.custom
 prettyprint.sections sequences ;
-IN: windows.com.prettyprint
 
 M: GUID pprint* guid>string "GUID: " prepend text ;
index 3550444a789ad0734f97756f3af7a8d2ca22b831..2be2ba9dec3f5d5f799016075f33751b99b6ffdb 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2009 Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors debugger game.loop io ;
-IN: game.loop.prettyprint
 
 M: game-loop-error-state error.
     "An error occurred inside a game loop." print
index 10afe4bee10b50993d381339aa35e8c7b24d4921..20bc8b9f51df6bc5b934730d8d2d1ac31aeb2ff1 100644 (file)
@@ -1,5 +1,4 @@
 USING: accessors debugger gpu.shaders io kernel prettyprint ;
-IN: gpu.shaders.prettyprint
 
 M: compile-shader-error error.
     "The GLSL shader " write