* misc/ruby-mode.el (ruby-expr-beg): returned true always.
fixed: [ruby-list:40683] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
58bc7420de
commit
f870f12334
@ -1,3 +1,8 @@
|
|||||||
|
Sat Mar 19 23:48:10 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* misc/ruby-mode.el (ruby-expr-beg): returned true always.
|
||||||
|
fixed: [ruby-list:40683]
|
||||||
|
|
||||||
Sat Mar 19 00:41:02 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Sat Mar 19 00:41:02 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/lib/tk/font.rb: add some TkFont class methods to get font
|
* ext/tk/lib/tk/font.rb: add some TkFont class methods to get font
|
||||||
@ -871,7 +876,8 @@ Fri Feb 11 11:33:53 2005 Tanaka Akira <akr@m17n.org>
|
|||||||
|
|
||||||
Fri Feb 11 06:30:07 2005 George Ogata <g_ogata@optushome.com.au>
|
Fri Feb 11 06:30:07 2005 George Ogata <g_ogata@optushome.com.au>
|
||||||
|
|
||||||
* misc/ruby-mode.el: [ruby-core:04415]
|
* misc/ruby-mode.el: ignore parenthesis inside heredoc.
|
||||||
|
[ruby-core:04415]
|
||||||
|
|
||||||
Fri Feb 11 04:54:13 2005 Tilman Sauerbeck <tilman@code-monkey.de>
|
Fri Feb 11 04:54:13 2005 Tilman Sauerbeck <tilman@code-monkey.de>
|
||||||
|
|
||||||
|
@ -312,8 +312,7 @@ The variable ruby-indent-level controls the amount of indentation.
|
|||||||
(or (eq (char-syntax (char-before (point))) ?w)
|
(or (eq (char-syntax (char-before (point))) ?w)
|
||||||
(ruby-special-char-p))))
|
(ruby-special-char-p))))
|
||||||
nil)
|
nil)
|
||||||
((or (goto-char start)
|
((or (save-excursion (goto-char start) (looking-at ruby-operator-re))
|
||||||
(looking-at ruby-operator-re)
|
|
||||||
(looking-at "[\\[({,;]")
|
(looking-at "[\\[({,;]")
|
||||||
(and (or (not (eq option 'heredoc))
|
(and (or (not (eq option 'heredoc))
|
||||||
(< space 0))
|
(< space 0))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user