aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/ruby-mode.el
diff options
context:
space:
mode:
authorJoakim Verona2013-09-16 08:27:23 +0200
committerJoakim Verona2013-09-16 08:27:23 +0200
commitdf15e4f6391d475acf15dcb512a28eed9964caac (patch)
treea1b8b76d585bb6168da097b4ce1b35be3fe8b1e6 /lisp/progmodes/ruby-mode.el
parent2b483f0f59ff7f125dfbe490e42eb84c238ac971 (diff)
parent578c21bc0316661f211dd73a9eb65c8213bd372f (diff)
downloademacs-df15e4f6391d475acf15dcb512a28eed9964caac.tar.gz
emacs-df15e4f6391d475acf15dcb512a28eed9964caac.zip
merge from trunk
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
-rw-r--r--lisp/progmodes/ruby-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el
index 902616e3023..95206c15390 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -132,7 +132,7 @@ This should only be called after matching against `ruby-here-doc-beg-re'."
132 ruby-block-end-re "\\|}\\|\\]\\)") 132 ruby-block-end-re "\\|}\\|\\]\\)")
133 "Regexp to match where the indentation gets shallower.") 133 "Regexp to match where the indentation gets shallower.")
134 134
135(defconst ruby-operator-re "[-,.+*/%&|^~=<>:]" 135(defconst ruby-operator-re "[-,.+*/%&|^~=<>:]\\|\\\\$"
136 "Regexp to match operators.") 136 "Regexp to match operators.")
137 137
138(defconst ruby-symbol-chars "a-zA-Z0-9_" 138(defconst ruby-symbol-chars "a-zA-Z0-9_"