- Jul 10, 2012
-
-
isaacs authored
Related: https://twitter.com/kapeli/status/222477400880070658
-
Ivan Torres authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
Conflicts: AUTHORS
-
Toshihiro Nakamura authored
Fix to remove the first-arg, in case arguments length is more than 2 Add domain.intercept() test about first-arg removal
-
- Jul 09, 2012
-
-
Bert Belder authored
-
Bert Belder authored
* A mailmap makes it easier to keep track of contributors. * Changes to the AUTHORS file: - fix misspellings - add missing/incomplete names - remove duplicate mentions * No names were added to or removed from the AUTHORS list.
-
Justin Plock authored
-
Ben Noordhuis authored
Write temp files to test/tmp, not test/fixtures.
-
Ben Noordhuis authored
Before this commit, `fs.unwatchFile(path)` removed *all* listeners for `path`. The function is overloaded now: `fs.unwatchFile(path)` still removes all listeners, but `fs.unwatchFile(path, cb)` lets you remove a specific listener. Fixes #3660.
-
isaacs authored
Fix #2595
-
Nathan Rajlich authored
Fixes #3664.
-
- Jul 08, 2012
-
-
Ben Noordhuis authored
Fix a memory leak in the the code path that deals with partial hex strings.
-
isaacs authored
* npm: Upgrade to 1.1.36 * readline: don't use Function#call() (Nathan Rajlich) * Code cleanup to pass 'use strict' (Jonas Westerlund) * module: add filename to require() json errors (TJ Holowaychuk) * readline: fix for unicode prompts (Tim Macfarlane) * timers: fix handling of large timeouts (Ben Noordhuis) * repl: fix passing an empty line inserting "undefined" into the buffer (Nathan Rajlich) * repl: fix crashes when buffering command (Maciej Małecki) * build: rename strict_aliasing to node_no_strict_aliasing (Ben Noordhuis) * build: disable -fstrict-aliasing for any gcc < 4.6.0 (Ben Noordhuis) * build: detect cc version with -dumpversion (Ben Noordhuis) * build: handle output of localized gcc or clang (Ben Noordhuis) * unix: fix memory corruption in freebsd.c (Ben Noordhuis) * unix: fix 'zero handles, one request' busy loop (Ben Noordhuis) * unix: fix busy loop on unexpected tcp message (Ben Noordhuis) * unix: fix EINPROGRESS busy loop (Ben Noordhuis)
-
isaacs authored
-
Bert Belder authored
-
isaacs authored
-
Bert Belder authored
-
Bert Belder authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
Dominic Tarr authored
-
- Jul 07, 2012
-
-
Nathan Rajlich authored
It wasn't necessary.
-
Jonas Westerlund authored
-
Jonas Westerlund authored
Fixes crash in strict mode.
-
Jonas Westerlund authored
The latter is illegal in strict mode.
-
Jonas Westerlund authored
Moving it out would require an anonymous function, or bind(), anyway. Luckily It's a tiny function. Fixes crash in strict mode.
-
Jonas Westerlund authored
Also avoid using eval as identifier. Fixes crashes in strict mode.
-
Jonas Westerlund authored
Gets rid of a strict mode error and a few levels of indentation.
-
Jonas Westerlund authored
It is an error in strict mode, and silent failure otherwise.
-
Jonas Westerlund authored
Capitalize the constructor to avoid redeclaration. Fixes strict mode error.
-
Jonas Westerlund authored
Both are errors in strict mode.
-
TJ Holowaychuk authored
Otherwise it can be quite difficult to figure out which file is busted. Closes #3580.
-
- Jul 06, 2012
-
-
Tim Macfarlane authored
prompt length is char length, not byte length
-
Ben Noordhuis authored
Don't use the double-negate trick to coalesce the timeout argument into a number, it produces the wrong result for very large timeouts. Example: setTimeout(cb, 1e10); // doesn't work, ~~1e10 == 1410065408
-
- Jul 05, 2012
-
-
Nathan Rajlich authored
There was a possiblity of insering the string "undefined" into the repl's command buffer, which would cause interesting results while evaluating.
-
Maciej Małecki authored
Wrong order of operands was causing problems while trying to use command buffering: > { ... a: 3, ... repl.js:284 if (cmd.trim().match(/^npm /) && !self.bufferedCommand) { ^ TypeError: Cannot call method 'trim' of undefined at finish (repl.js:284:17) at REPLServer.self.eval (repl.js:118:5) at rli.on.e (repl.js:260:20) at REPLServer.self.eval (repl.js:118:5) at Interface.<anonymous> (repl.js:250:12) at Interface.EventEmitter.emit (events.js:88:17) at Interface._onLine (readline.js:183:10) at Interface._line (readline.js:502:8) at Interface._ttyWrite (readline.js:720:14) at ReadStream.<anonymous> (readline.js:105:12) Test included. Closes #3515. Closes #3517. Closes #3621.
-
- Jul 04, 2012
-
-
Ben Noordhuis authored
-