Browse Source

lint

v0.9.1-release
isaacs 13 years ago
parent
commit
54a4f99c4e
  1. 4
      lib/fs.js
  2. 7
      lib/readline.js

4
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;

7
lib/readline.js

@ -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();
};

Loading…
Cancel
Save