diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-07 15:16:38 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-07 15:16:38 +0000 |
commit | 965854205bcf20d98b6c61340e52ffad5c605804 (patch) | |
tree | 1ce93add698f9d3f0f85b04c6558f673131cf14f /misc/ruby-additional.el | |
parent | 1189b5fe99983c55881cad51b1f0e0245aa713a4 (diff) |
* misc/ruby-additional.el: Add a standard header and footer,
including (provide 'ruby-additional).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc/ruby-additional.el')
-rw-r--r-- | misc/ruby-additional.el | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/misc/ruby-additional.el b/misc/ruby-additional.el index 85cfdd8d90..f44e481c49 100644 --- a/misc/ruby-additional.el +++ b/misc/ruby-additional.el @@ -1,4 +1,20 @@ -;; 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 explicitly actually." (insert "# -*- coding: " coding-system " -*-\n"))))))) )) + +(provide 'ruby-additional) + +;;; ruby-additional.el ends here |