Skip to content

Commit a459cf3

Browse files
authored
Merge pull request #1753 from svaarala/v2.2.0-release-pre-cleanup
Cleanups for 2.2.0 release
2 parents d6b620b + 1b08880 commit a459cf3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

doc/release-notes-v2-2.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,12 @@ from Duktape v2.1.x. Note the following:
106106
step commands will still pause on function entry/exit as appropriate; for
107107
example, StepInto will pause on function entry or exit (or an error throw).
108108

109-
* Case insensitive RegExps are still much slower than case sensitive ones.
110-
The small canonicalization lookup (256 bytes) is enabled by default. The
111-
small lookup is still slower than DUK_USE_REGEXP_CANON_WORKAROUND but the
112-
difference is now much smaller. You may be able to turn off the workaround
113-
option whose main downside is a relatively large footprint impact (128kB).
109+
* Case insensitive RegExps now perform better by default, with the small
110+
canonicalization lookup (~300-400 bytes, DUK_USE_REGEXP_CANON_BITMAP)
111+
enabled by default. The small lookup still performs slower than
112+
DUK_USE_REGEXP_CANON_WORKAROUND but the difference is smaller, and you
113+
may be able to turn off the workaround option whose main downside is a
114+
relatively large footprint impact (128kB).
114115

115116
* When an Error instance is being constructed and Duktape.errCreate() is
116117
called for the constructor return value, the call stack seen by errCreate()

examples/hello/hello_ptrcomp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Very simple example program, pointer compression and ROM builti-ins enabled
2+
* Very simple example program, pointer compression and ROM built-ins enabled
33
*/
44

55
#include "duktape.h"

0 commit comments

Comments
 (0)