зеркало из https://github.com/github/ruby.git
* misc/ruby-style.el (ruby-style-{case,label}-indent): up list from
indentation point. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16153 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
29934eed9d
Коммит
9f9a532d98
|
@ -1,3 +1,8 @@
|
|||
Tue Apr 22 22:15:54 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* misc/ruby-style.el (ruby-style-{case,label}-indent): up list from
|
||||
indentation point.
|
||||
|
||||
Tue Apr 22 21:09:05 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* ext/nkf/nkf-utf8/nkf.c (score_table_A0, score_table_F0):
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
(defun ruby-style-case-indent (x)
|
||||
(save-excursion
|
||||
(back-to-indentation)
|
||||
(unless (progn (backward-up-list) (back-to-indentation)
|
||||
(> (point) (cdr x)))
|
||||
(goto-char (cdr x))
|
||||
|
@ -26,6 +27,7 @@
|
|||
|
||||
(defun ruby-style-label-indent (x)
|
||||
(save-excursion
|
||||
(back-to-indentation)
|
||||
(unless (progn (backward-up-list) (back-to-indentation)
|
||||
(>= (point) (cdr x)))
|
||||
(goto-char (cdr x))
|
||||
|
|
Загрузка…
Ссылка в новой задаче