Skip to content

Commit

Permalink
Merge branch 'release/0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
arnested committed Aug 21, 2016
2 parents d920370 + f9d5596 commit 1e6f973
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drupal-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Arne Jørgensen <[email protected]>
;; URL: https://github.com/arnested/drupal-mode
;; Created: January 17, 2012
;; Version: 0.7.0
;; Version: 0.7.1
;; Package-Requires: ((php-mode "1.5.0"))
;; Keywords: programming, php, drupal

Expand Down Expand Up @@ -347,7 +347,12 @@ According to https://drupal.org/coding-standards#indenting."
:group 'drupal)

(c-add-style "drupal" drupal-style)
(add-to-list 'c-default-style '(drupal-mode . "drupal"))

(if (and
(boundp 'c-default-style)
(stringp c-default-style))
(setq c-default-style `((drupal-mode . "drupal") (other . ,c-default-style)))
(add-to-list 'c-default-style '(drupal-mode . "drupal")))



Expand Down

0 comments on commit 1e6f973

Please sign in to comment.