summaryrefslogtreecommitdiff
path: root/lisp/progmodes/ruby-mode.el
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2016-03-15 03:15:18 +0200
committerDmitry Gutov <dgutov@yandex.ru>2016-03-15 03:16:27 +0200
commitdbfbedd3d0f3afcfb811eae0e1a7b1c33fb27735 (patch)
tree0a0d6019eec4a6ad62da388c9c0685c391119be5 /lisp/progmodes/ruby-mode.el
parent040362001d66fd721d3a85cddfadf8041cc23f7f (diff)
downloademacs-dbfbedd3d0f3afcfb811eae0e1a7b1c33fb27735.tar.gz
Do not tokenize a comment before continuation as ';'
* lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Account for a comment right after point.
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 35d0cc44ed8..edd89b30c9f 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -443,7 +443,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
(member (save-excursion (ruby-smie--backward-token))
'("iuwu-mod" "and" "or")))
(save-excursion
- (forward-comment 1)
+ (forward-comment (point-max))
(looking-at "&?\\."))))))
(defun ruby-smie--redundant-do-p (&optional skip)