summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2014-02-21 17:39:17 +0200
committerDmitry Gutov <dgutov@yandex.ru>2014-02-21 17:39:17 +0200
commitcb8f50a75c7192c54758e4563cf3386f80579e55 (patch)
treeb9eb51ba0170f21926e0da35e28775a2619ecb3b
parentc8481b1b2c4157c7b30edee3d335daae028bd88d (diff)
downloademacs-cb8f50a75c7192c54758e4563cf3386f80579e55.tar.gz
* lisp/progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/ruby-mode.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 71bc7e48aef..de4fe916046 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
+ * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
+
* electric.el (electric-indent-functions-without-reindent):
Add `yaml-indent-line'.
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el
index 96835fc9892..e2175fcc80b 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -2174,7 +2174,7 @@ See `font-lock-syntax-table'.")
"\\|jbuilder\\|gemspec\\|podspec"
"\\|/"
"\\(?:Gem\\|Rake\\|Cap\\|Thor"
- "Vagrant\\|Guard\\|Pod\\)file"
+ "\\|Vagrant\\|Guard\\|Pod\\)file"
"\\)\\'")) 'ruby-mode))
;;;###autoload