mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-emacs/ruby-mode: cleanup
Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
(add-to-list 'load-path "@SITELISP@")
|
||||
|
||||
(autoload 'ruby-mode "ruby-mode" "Major mode to edit ruby files." t)
|
||||
|
||||
(add-to-list 'auto-mode-alist '("Rakefile\\'" . ruby-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.\\(rake\\|rb\\)\\'" . ruby-mode))
|
||||
(add-to-list 'interpreter-mode-alist '("ruby" . ruby-mode))
|
||||
|
||||
(autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process" t)
|
||||
(autoload 'inf-ruby-keys "inf-ruby" "Set local key defs for inf-ruby in ruby-mode")
|
||||
|
||||
(add-hook 'ruby-mode-hook 'inf-ruby-keys)
|
||||
@@ -1,11 +0,0 @@
|
||||
(add-to-list 'load-path "@SITELISP@")
|
||||
|
||||
(autoload 'ruby-mode "ruby-mode" "Major mode to edit ruby files." t)
|
||||
|
||||
(add-to-list 'auto-mode-alist '("\\.rb\\'" . ruby-mode))
|
||||
(add-to-list 'interpreter-mode-alist '("ruby" . ruby-mode))
|
||||
|
||||
(autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process" t)
|
||||
(autoload 'inf-ruby-keys "inf-ruby" "Set local key defs for inf-ruby in ruby-mode")
|
||||
|
||||
(add-hook 'ruby-mode-hook 'inf-ruby-keys)
|
||||
@@ -1,22 +0,0 @@
|
||||
commit 595825dc577616862b271ffac4c58eb27f0610af
|
||||
Author: hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
|
||||
Date: Sun Apr 21 10:04:54 2013 +0000
|
||||
|
||||
Replace use of obsolete variable `last-command-char` by @maser [fix GH-290]
|
||||
|
||||
|
||||
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
|
||||
|
||||
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el
|
||||
index dcaa396..ace0f27 100644
|
||||
--- a/misc/ruby-mode.el
|
||||
+++ b/misc/ruby-mode.el
|
||||
@@ -874,7 +874,7 @@ Also ignores spaces after parenthesis when 'space."
|
||||
|
||||
(defun ruby-electric-brace (arg)
|
||||
(interactive "P")
|
||||
- (insert-char last-command-char 1)
|
||||
+ (insert-char last-command-event 1)
|
||||
(ruby-indent-line t)
|
||||
(delete-char -1)
|
||||
(self-insert-command (prefix-numeric-value arg)))
|
||||
Reference in New Issue
Block a user