From: Dmitry Gutov Date: Sun, 13 Mar 2016 21:10:38 +0000 (+0200) Subject: Make '.' associative, for easier sexp navigation X-Git-Tag: emacs-25.0.93~89^2~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=04f5525fbb961f6006280be340ca0f03df9e80a7;p=emacs.git Make '.' associative, for easier sexp navigation * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Make '.' associative, for easier sexp navigation. --- diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 36c1aed529e..b0b837aa20e 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -368,7 +368,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (exp (exp1) (exp "," exp) (exp "=" exp) (id " @ " exp)) (exp1 (exp2) (exp2 "?" exp1 ":" exp1)) - (exp2 (exp3) (exp3 "." exp2)) + (exp2 (exp3) (exp3 "." exp3)) (exp3 ("def" insts "end") ("begin" insts-rescue-insts "end") ("do" insts "end") @@ -416,7 +416,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (nonassoc "==" "===" "!=") (nonassoc "=~" "!~") (left "<<" ">>") - (right ".")))))) + (assoc ".")))))) (defun ruby-smie--bosp () (save-excursion (skip-chars-backward " \t")