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

ruby-changes:31105

From: knu <ko1@a...>
Date: Tue, 8 Oct 2013 00:16:44 +0900 (JST)
Subject: [ruby-changes:31105] knu:r43184 (trunk): * misc/ruby-additional.el: Add a standard header and footer,

knu	2013-10-08 00:16:38 +0900 (Tue, 08 Oct 2013)

  New Revision: 43184

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

  Log:
    * misc/ruby-additional.el: Add a standard header and footer,
      including (provide 'ruby-additional).

  Modified files:
    trunk/ChangeLog
    trunk/misc/ruby-additional.el
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 43183)
+++ ChangeLog	(revision 43184)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Tue Oct  8 00:14:53 2013  Akinori MUSHA  <knu@i...>
+
+	* misc/ruby-additional.el: Add a standard header and footer,
+	  including (provide 'ruby-additional).
+
 Mon Oct  7 22:52:45 2013  Akinori MUSHA  <knu@i...>
 
 	* misc/ruby-electric.el (ruby-electric-space-can-be-expanded-p):
Index: misc/ruby-additional.el
===================================================================
--- misc/ruby-additional.el	(revision 43183)
+++ misc/ruby-additional.el	(revision 43184)
@@ -1,4 +1,20 @@ https://github.com/ruby/ruby/blob/trunk/misc/ruby-additional.el#L1
-;; missing functions in Emacs 24.
+;;; ruby-additional.el --- ruby-mode extensions yet to be merged into Emacs
+
+;; Authors: Yukihiro Matsumoto, Nobuyoshi Nakada, Akinori MUSHA
+;; URL: http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/
+;; Created: 3 Sep 2012
+;; Package-Requires: ((ruby-mode "1.2"))
+;; Keywords: ruby, languages
+
+;;; Commentary:
+;;
+;; This package contains ruby-mode extensions yet to be merged into
+;; the Emacs distribution.
+
+;;; Code:
+
+(eval-when-compile
+  (require 'ruby-mode))
 
 (eval-after-load 'ruby-mode
   '(progn
@@ -98,3 +114,7 @@ Now encoding needs to be set always expl https://github.com/ruby/ruby/blob/trunk/misc/ruby-additional.el#L114
                       (insert "# -*- coding: " coding-system " -*-\n")))))))
 
      ))
+
+(provide 'ruby-additional)
+
+;;; ruby-additional.el ends here

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

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