aboutsummaryrefslogtreecommitdiffstats
path: root/test/ChangeLog
diff options
context:
space:
mode:
authorDmitry Gutov2013-05-19 10:01:23 +0400
committerDmitry Gutov2013-05-19 10:01:23 +0400
commit1a0a0a8a6a7c4cb47bb0d9bb5d3efa281cb70546 (patch)
tree9b1f66299f4384ac3bca1bc4044a2548077aacbb /test/ChangeLog
parentc1a6c0a42021df3d41ba782460965c5cc0ae902c (diff)
downloademacs-1a0a0a8a6a7c4cb47bb0d9bb5d3efa281cb70546.tar.gz
emacs-1a0a0a8a6a7c4cb47bb0d9bb5d3efa281cb70546.zip
* lisp/progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
start at point, so that expansion starting right after opening slash in a regexp is recognized. (ruby-syntax-before-regexp-re): New defvar, extracted from ruby-syntax-propertize-function. Since the value of this regexp is looked up at runtime now, we should be able to turn `ruby-syntax-methods-before-regexp' into a defcustom later. (ruby-syntax-propertize-function): Split regexp matching into two parts, for opening and closing slashes. That allows us to skip over string interpolations and support multiline regexps. Don't call `ruby-syntax-propertize-expansions', instead use another rule for them, which calls `ruby-syntax-propertize-expansion'. (ruby-syntax-propertize-expansions): Move `remove-text-properties' call to `ruby-syntax-propertize-function'. (ruby-syntax-propertize-expansion): Extracted from `ruby-syntax-propertize-expansions'. Handles one expansion. (ruby-syntax-propertize-heredoc): Explicitly call `ruby-syntax-propertize-expansions'. (ruby-syntax-propertize-percent-literal): Leave point right after the percent symbol, so that the expression expansion rule can propertize the contents. * test/automated/ruby-mode-tests.el (ruby-heredoc-highlights-interpolations) (ruby-regexp-skips-over-interpolation) (ruby-regexp-continues-till-end-when-unclosed) (ruby-regexp-can-be-multiline) (ruby-interpolation-inside-percent-literal): New tests. * test/indent/ruby.rb: Add multiline regexp example.
Diffstat (limited to 'test/ChangeLog')
-rw-r--r--test/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index c11d5d26c13..5c17e09e962 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,13 @@
12013-05-19 Dmitry Gutov <dgutov@yandex.ru>
2
3 * indent/ruby.rb: Add multiline regexp example.
4
5 * automated/ruby-mode-tests.el (ruby-heredoc-highlights-interpolations)
6 (ruby-regexp-skips-over-interpolation)
7 (ruby-regexp-continues-till-end-when-unclosed)
8 (ruby-regexp-can-be-multiline)
9 (ruby-interpolation-inside-percent-literal): New tests.
10
12013-05-08 Stefan Monnier <monnier@iro.umontreal.ca> 112013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2 12
3 * indent/ruby.rb: Fix indentation after =; add more cases. 13 * indent/ruby.rb: Fix indentation after =; add more cases.