]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/iokit/iokit.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / basis / iokit / iokit.factor
index 5e2f11f9de67657975d2f313d7632cbbfe4ae21f..8114c8f49cd30fe084cdc05bd6d3e20fe6f926ec 100644 (file)
@@ -11,7 +11,7 @@ IN: iokit
 
 CONSTANT: kIOKitBuildVersionKey   "IOKitBuildVersion"
 CONSTANT: kIOKitDiagnosticsKey   "IOKitDiagnostics"
+
 CONSTANT: kIORegistryPlanesKey   "IORegistryPlanes"
 CONSTANT: kIOCatalogueKey    "IOCatalogue"
 
@@ -84,16 +84,16 @@ CONSTANT: kIOBundleResourceFileKey "IOBundleResourceFile"
 CONSTANT: kIOBusBadgeKey "IOBusBadge"
 CONSTANT: kIODeviceIconKey "IODeviceIcon"
 
-CONSTANT: kIOPlatformSerialNumberKey  "IOPlatformSerialNumber" 
+CONSTANT: kIOPlatformSerialNumberKey  "IOPlatformSerialNumber"
 
-CONSTANT: kIOPlatformUUIDKey  "IOPlatformUUID" 
+CONSTANT: kIOPlatformUUIDKey  "IOPlatformUUID"
 
 CONSTANT: kIONVRAMDeletePropertyKey  "IONVRAM-DELETE-PROPERTY"
 CONSTANT: kIODTNVRAMPanicInfoKey   "aapl,panic-info"
 
-CONSTANT: kIOBootDeviceKey "IOBootDevice"  
-CONSTANT: kIOBootDevicePathKey "IOBootDevicePath" 
-CONSTANT: kIOBootDeviceSizeKey "IOBootDeviceSize" 
+CONSTANT: kIOBootDeviceKey "IOBootDevice"
+CONSTANT: kIOBootDevicePathKey "IOBootDevicePath"
+CONSTANT: kIOBootDeviceSizeKey "IOBootDeviceSize"
 
 CONSTANT: kOSBuildVersionKey   "OS Build Version"
 
@@ -154,11 +154,10 @@ TUPLE: mach-error-state error-code error-string ;
 
 : io-objects-from-iterator ( i -- array )
     io-objects-from-iterator* [ release-io-object ] dip ;
-    
+
 : properties-from-io-object ( o -- o nsdictionary )
     dup f void* <ref> [
         kCFAllocatorDefault kNilOptions
         IORegistryEntryCreateCFProperties mach-error
     ]
     keep void* deref ;
-