]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve squiggly heredoc support in non-SMIE Ruby mode
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 7 Jun 2016 01:06:33 +0000 (04:06 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 7 Jun 2016 01:07:15 +0000 (04:07 +0300)
* lisp/progmodes/ruby-mode.el (ruby-parse-partial): Support
squiggly heredocs here, too (port from upstream).

lisp/progmodes/ruby-mode.el

index cd3b04de712de918df3d009f36a148935914f11f..d75edbc84ef20989ba8560b5fcfdbe0b44e7837d 100644 (file)
@@ -1151,7 +1151,7 @@ delimiter."
        ((looking-at "<<")
         (cond
          ((and (ruby-expr-beg 'heredoc)
-               (looking-at "<<\\(-\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)"))
+               (looking-at "<<\\([-~]\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)"))
           (setq re (regexp-quote (or (match-string 4) (match-string 2))))
           (if (match-beginning 1) (setq re (concat "\\s *" re)))
           (let* ((id-end (goto-char (match-end 0)))