lint
authorisaacs <i@izs.me>
Mon, 11 Jun 2012 14:48:02 +0000 (07:48 -0700)
committerisaacs <i@izs.me>
Mon, 11 Jun 2012 15:13:36 +0000 (08:13 -0700)
lib/fs.js
lib/readline.js

index 65df0be..d6f195a 100644 (file)
--- a/lib/fs.js
+++ b/lib/fs.js
@@ -50,7 +50,7 @@ var O_SYNC = constants.O_SYNC || 0;
 var O_TRUNC = constants.O_TRUNC || 0;
 var O_WRONLY = constants.O_WRONLY || 0;
 
-var isWindows = process.platform === 'win32'
+var isWindows = process.platform === 'win32';
 
 fs.Stats = binding.Stats;
 
@@ -1164,7 +1164,7 @@ var ReadStream = fs.ReadStream = function(path, options) {
   }
 
   if (this.fd !== null) {
-    process.nextTick(function () {
+    process.nextTick(function() {
       self._read();
     });
     return;
index 02d1552..df0d92b 100644 (file)
@@ -145,7 +145,7 @@ Interface.prototype._setRawMode = function(mode) {
   if (typeof this.input.setRawMode === 'function') {
     return this.input.setRawMode(mode);
   }
-}
+};
 
 
 Interface.prototype.prompt = function(preserveCursor) {
@@ -656,8 +656,9 @@ Interface.prototype._ttyWrite = function(s, key) {
                 self.pause();
                 self.emit('SIGCONT');
               }
-              // explictly re-enable "raw mode" and move the cursor to the correct
-              // position. See https://github.com/joyent/node/issues/3295.
+              // explictly re-enable "raw mode" and move the cursor to
+              // the correct position.
+              // See https://github.com/joyent/node/issues/3295.
               self._setRawMode(true);
               self._refreshLine();
             };