[前][次][番号順一覧][スレッド一覧]

ruby-changes:9419

From: matz <ko1@a...>
Date: Wed, 24 Dec 2008 03:23:39 +0900 (JST)
Subject: [ruby-changes:9419] Ruby:r20957 (trunk): * misc/ruby-mode.el: added comment to mention newer version

matz	2008-12-24 03:23:15 +0900 (Wed, 24 Dec 2008)

  New Revision: 20957

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20957

  Log:
    * misc/ruby-mode.el: added comment to mention newer version
      bundled with Emacs 23 or later.  a patch from Phil Hagelberg
      <phil at hagelb.org> in [ruby-core:20838].

  Modified files:
    trunk/ChangeLog
    trunk/misc/ruby-mode.el

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 20956)
+++ ChangeLog	(revision 20957)
@@ -1,3 +1,9 @@
+Wed Dec 24 03:21:21 2008  Yukihiro Matsumoto  <matz@r...>
+
+	* misc/ruby-mode.el: added comment to mention newer version
+	  bundled with Emacs 23 or later.  a patch from Phil Hagelberg
+	  <phil at hagelb.org> in [ruby-core:20838].
+
 Tue Dec 23 23:49:37 2008  Tanaka Akira  <akr@f...>
 
 	* io.c (rb_io_init_copy): call io_seek only if io_tell succeeds.
Index: misc/ruby-mode.el
===================================================================
--- misc/ruby-mode.el	(revision 20956)
+++ misc/ruby-mode.el	(revision 20957)
@@ -1,10 +1,51 @@
-;;;
-;;;  ruby-mode.el -
-;;;
-;;;  $Author$
-;;;  created at: Fri Feb  4 14:49:13 JST 1994
-;;;
+;;; ruby-mode.el --- Major mode for editing Ruby files
 
+;; Copyright (C) 1994, 1995, 1996 1997, 1998, 1999, 2000, 2001,
+;;   2002,2003, 2004, 2005, 2006, 2007, 2008
+;;   Free Software Foundation, Inc.
+
+;; Authors: Yukihiro Matsumoto, Nobuyoshi Nakada
+;; URL: http://www.emacswiki.org/cgi-bin/wiki/RubyMode
+;; Created: Fri Feb  4 14:49:13 JST 1994
+;; Keywords: languages ruby
+;; Version: 0.9
+
+;; This file is not part of GNU Emacs. However, a newer version of
+;; ruby-mode is included in recent releases of GNU Emacs (version 23
+;; and up), but the new version is not guaranteed to be compatible
+;; with older versions of Emacs or XEmacs. This file is the last
+;; version that aims to keep this compatibility.
+
+;; You can also get the latest version from the Emacs Lisp Package
+;; Archive: http://tromey.com/elpa
+
+;; This file is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; It is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
+;; License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with it.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Provides font-locking, indentation support, and navigation for Ruby code.
+;;
+;; If you're installing manually, you should add this to your .emacs
+;; file after putting it on your load path:
+;;
+;;    (autoload 'ruby-mode "ruby-mode" "Major mode for ruby files" t)
+;;    (add-to-list 'auto-mode-alist '("\\.rb$" . ruby-mode))
+;;    (add-to-list 'interpreter-mode-alist '("ruby" . ruby-mode))
+;;
+
+;;; Code:
+
 (defconst ruby-mode-revision "$Revision$"
   "Ruby mode revision string.")
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]