Fri Mar 08 2002 Akira TAGOH <tagoh@redhat.com> 1.6.7-1
- New upstream release.
- ruby-1.6.6-100.patch, ruby-1.6.6-501-ruby-mode.patch: removed. these
patches no longer should be needed.
- ruby-1.6.7-500-marshal-proc.patch: applied a fix patch. (ruby-dev#16178:
Marshal::dump should call Proc#call.)
- ruby-1.6.7-501-class-var.patch: applied a fix patch. (ruby-talk#35157:
class vars broken in 1.6.7)
Wed Feb 27 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-5
- Disable alpha because nothing is xemacs for alpha now.
Tue Feb 05 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-3
- Fixed the duplicate files.
Tue Feb 05 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-2
- Fixed the missing %defattr
Fri Feb 01 2002 Akira TAGOH <tagoh@redhat.com> 1.6.6-1
- New upstream release.
- Applied bug fix patches:
- ruby-1.6.6-501-ruby-mode.patch: ruby-talk#30479: disables font-lock
coloring.
- ruby-1.6.6-100.patch: ruby-talk#30203: Ruby 1.6.6 bug and fix
ruby-list#33047: regex bug PR#230: problem with -d in 1.6.6
- Added ruby-mode and ruby-mode-xemacs packages.
- Ruby works fine for ia64. so re-enable to build with ia64. (probably it
should be worked for alpha)
Wed Jan 09 2002 Tim Powers <timp@redhat.com>
- automated rebuild
20 lines
691 B
EmacsLisp
20 lines
691 B
EmacsLisp
;; ruby-mode-init.el
|
|
;; Created: 2002-02-01
|
|
;;
|
|
(if (featurep 'xemacs)
|
|
(setq load-path (cons "/usr/lib/xemacs/xemacs-packages/lisp/ruby-mode" load-path))
|
|
(setq load-path (cons "/usr/share/emacs/site-lisp/ruby-mode" load-path)))
|
|
|
|
|
|
(autoload 'ruby-mode "ruby-mode" "Mode for editing ruby source files" t)
|
|
(setq auto-mode-alist
|
|
(cons '("\\.rb$" . ruby-mode) auto-mode-alist))
|
|
(setq interpreter-mode-alist
|
|
(cons '("ruby" . ruby-mode) interpreter-mode-alist))
|
|
|
|
(autoload 'run-ruby "inf-ruby" "Run an inferior Ruby process")
|
|
(autoload 'inf-ruby-keys "inf-ruby" "Set local key defs for inf-ruby in ruby-mode")
|
|
|
|
(add-hook 'ruby-mode-hook
|
|
'(lambda ()
|
|
(inf-ruby-keys)))
|