diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f8ed1dced82..1a6b1cd517c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,19 @@ | |||
| 1 | 2014-06-05 Michal Nazarewicz <mina86@mina86.com> | 1 | 2014-06-05 Michal Nazarewicz <mina86@mina86.com> |
| 2 | 2 | ||
| 3 | * textmodes/tildify.el (tildify-ignored-environments-alist): | ||
| 4 | Optimise environments regexes | ||
| 5 | |||
| 6 | Each time beginning of an environment to ignore is found, | ||
| 7 | `tildify-find-env' needs to identify regexp for the ending | ||
| 8 | of the environment. This is done by trying all the opening | ||
| 9 | regexes on matched text in a loop, so to speed that up, this | ||
| 10 | loop should have fewer things to match, which can be done by | ||
| 11 | using alternatives in the opening regexes. | ||
| 12 | |||
| 13 | Coincidentally, this should make matching of the opening | ||
| 14 | regexp faster as well thanks to the use of `regexp-opt' and | ||
| 15 | having common prefix pulled from many regexes. | ||
| 16 | |||
| 3 | * textmodes/tildify.el (tildify-string-alist) | 17 | * textmodes/tildify.el (tildify-string-alist) |
| 4 | (tildify-ignored-environments-alist): Add `nxml-mode' to the list | 18 | (tildify-ignored-environments-alist): Add `nxml-mode' to the list |
| 5 | of supported modes since `xml-mode' is no longer a thing but just | 19 | of supported modes since `xml-mode' is no longer a thing but just |