1. 05 May, 2016 2 commits
  2. 10 Feb, 2016 2 commits
  3. 05 Feb, 2016 2 commits
  4. 31 Jan, 2016 3 commits
  5. 30 Jan, 2016 1 commit
  6. 29 Jan, 2016 4 commits
  7. 28 Jan, 2016 1 commit
  8. 26 Jan, 2016 6 commits
  9. 25 Jan, 2016 17 commits
  10. 19 Jan, 2016 1 commit
  11. 08 Jan, 2016 1 commit
    • antirez's avatar
      Scripting: handle trailing comments. · e50b9a07
      antirez authored
      This fix, provided by Paul Kulchenko (@pkulchenko), allows the Lua
      scripting engine to evaluate statements with a trailing comment like the
      following one:
      
          EVAL "print() --comment" 0
      
      Lua can't parse the above if the string does not end with a newline, so
      now a final newline is always added automatically. This does not change
      the SHA1 of scripts since the SHA1 is computed on the body we pass to
      EVAL, without the other code we add to register the function.
      
      Close #2951.
      e50b9a07