diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2014-02-21 17:39:17 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2014-02-21 17:39:17 +0200 |
commit | cb8f50a75c7192c54758e4563cf3386f80579e55 (patch) | |
tree | b9eb51ba0170f21926e0da35e28775a2619ecb3b /lisp/progmodes/ruby-mode.el | |
parent | c8481b1b2c4157c7b30edee3d335daae028bd88d (diff) | |
download | emacs-cb8f50a75c7192c54758e4563cf3386f80579e55.tar.gz |
* lisp/progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
-rw-r--r-- | lisp/progmodes/ruby-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |