Search results

  1. A

    Bug - Fixed Carriage returns missing in stack traces

    It seems newlines in stack traces have changed to contain only a line feed, not a carriage return. This makes emacs (correctly) consider the session logs to have inconsistent line endings. This seems to be a rather recent change.
  2. A

    Bug - Fixed JSONException: A JSONArray text must start with '[' at 1

    When starting up r19417, 38 of the following occur: Unexpected error, debug log printed. class org.json.JSONException: A JSONArray text must start with '[' at 1 [character 2 line 1] org.json.JSONException: A JSONArray text must start with '[' at 1 [character 2 line 1] at...
  3. A

    Bug - Fixed exit does not exit

    The wiki says that exit will exit the script: However, when running the following script on r19401: int method3() { print("method3"); exit; } int method2() { print("method2"); method3(); return 1; } void method1() { int a = 0; while (a < 10) { print("method1 " + a); a +=...
Top