diff options
| author | Dmitry Gutov | 2013-11-07 03:58:12 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2013-11-07 03:58:12 +0200 |
| commit | b420ccfc4cbe081b53881a7c9f0dd6b778b99b99 (patch) | |
| tree | c9aa0d449ad8538ef65d9c8aae799f1a9daa3f6a /lisp/progmodes/ruby-mode.el | |
| parent | e2e894cf5c87c3880fe5725ac3ef7e6ab529eaf1 (diff) | |
| download | emacs-b420ccfc4cbe081b53881a7c9f0dd6b778b99b99.tar.gz emacs-b420ccfc4cbe081b53881a7c9f0dd6b778b99b99.zip | |
* lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
"." compared to "do".
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
| -rw-r--r-- | lisp/progmodes/ruby-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 253a6006052..b5020344872 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el | |||
| @@ -280,7 +280,7 @@ explicitly declared in magic comment." | |||
| 280 | (inst (exp) (inst "iuwu-mod" exp)) | 280 | (inst (exp) (inst "iuwu-mod" exp)) |
| 281 | (exp (exp1) (exp "," exp) (exp "=" exp) | 281 | (exp (exp1) (exp "," exp) (exp "=" exp) |
| 282 | (id " @ " exp) | 282 | (id " @ " exp) |
| 283 | (exp "." exp)) | 283 | (exp "." id)) |
| 284 | (exp1 (exp2) (exp2 "?" exp1 ":" exp1)) | 284 | (exp1 (exp2) (exp2 "?" exp1 ":" exp1)) |
| 285 | (exp2 ("def" insts "end") | 285 | (exp2 ("def" insts "end") |
| 286 | ("begin" insts-rescue-insts "end") | 286 | ("begin" insts-rescue-insts "end") |