aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDmitry Gutov2013-09-16 02:42:26 +0300
committerDmitry Gutov2013-09-16 02:42:26 +0300
commit578c21bc0316661f211dd73a9eb65c8213bd372f (patch)
treee8aa2759a8c9ac1d9acae0107404a33c73d8c89c /test
parent745d3809b6b0cc594a3e1f5dd24cd043b4c3532d (diff)
downloademacs-578c21bc0316661f211dd73a9eb65c8213bd372f.tar.gz
emacs-578c21bc0316661f211dd73a9eb65c8213bd372f.zip
* lisp/progmodes/ruby-mode.el (ruby-operator-re): Consider line
continuation character an operator, as far as indentation is concerned. Fixes: debbugs:15369
Diffstat (limited to 'test')
-rw-r--r--test/indent/ruby.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb
index af1bbb9d8ab..6c9b9775b48 100644
--- a/test/indent/ruby.rb
+++ b/test/indent/ruby.rb
@@ -71,3 +71,7 @@ end
71if something == :== 71if something == :==
72 do_something 72 do_something
73end 73end
74
75# Bug#15369
76MSG = 'Separate every 3 digits in the integer portion of a number' \
77 'with underscores(_).'