ruby-changes:26050
From: nobu <ko1@a...>
Date: Sat, 1 Dec 2012 17:13:17 +0900 (JST)
Subject: [ruby-changes:26050] nobu:r38107 (trunk): inf-ruby.el: fix compilation-shell-minor-mode
nobu 2012-12-01 17:13:04 +0900 (Sat, 01 Dec 2012) New Revision: 38107 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38107 Log: inf-ruby.el: fix compilation-shell-minor-mode * misc/inf-ruby.el (inferior-ruby-mode): fix the compilation-shell-minor-mode configuration. a patch by j2petkov (Jean-Christophe Petkovich) in [ruby-core:46518]. [Bug #6742] Modified files: trunk/ChangeLog trunk/misc/inf-ruby.el Index: ChangeLog =================================================================== --- ChangeLog (revision 38106) +++ ChangeLog (revision 38107) @@ -1,3 +1,10 @@ +Sat Dec 1 17:12:55 2012 Nobuyoshi Nakada <nobu@r...> + + * misc/inf-ruby.el (inferior-ruby-mode): fix the + compilation-shell-minor-mode configuration. a patch by + j2petkov (Jean-Christophe Petkovich) in [ruby-core:46518]. + [Bug #6742] + Sat Dec 1 15:05:30 2012 Nobuyoshi Nakada <nobu@r...> * dir.c (glob_helper): use NAMLEN() to tell the length of d_name Index: misc/inf-ruby.el =================================================================== --- misc/inf-ruby.el (revision 38106) +++ misc/inf-ruby.el (revision 38107) @@ -220,9 +220,9 @@ (use-local-map inferior-ruby-mode-map) (setq comint-input-filter (function ruby-input-filter)) (setq comint-get-old-input (function ruby-get-old-input)) - (compilation-shell-minor-mode t) (make-local-variable 'compilation-error-regexp-alist) (setq compilation-error-regexp-alist inferior-ruby-error-regexp-alist) + (compilation-shell-minor-mode t) (run-hooks 'inferior-ruby-mode-hook)) (defvar inferior-ruby-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/