branch: elpa/drupal-mode
commit 5911ac2158bf9769c59f2e2309ca3401e9b09236
Author: Arne Jørgensen <[email protected]>
Commit: Arne Jørgensen <[email protected]>
Fixed bad indentation.
---
drupal-mode.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drupal-mode.el b/drupal-mode.el
index b1d5c11e00..fcfdce2d47 100644
--- a/drupal-mode.el
+++ b/drupal-mode.el
@@ -374,10 +374,11 @@ of the project)."
drupal-drush-program)
(let ((root drupal-rootdir)
(code (buffer-substring (region-beginning) (region-end))))
- (with-temp-buffer-window "*drush php-eval*" nil nil
- (message "PHP eval...")
- (call-process drupal-drush-program nil t nil (concat "--root="
(expand-file-name root)) "php-eval" code)
- (message "PHP eval...done")))))
+ (with-temp-buffer-window
+ "*drush php-eval*" nil nil
+ (message "PHP eval...")
+ (call-process drupal-drush-program nil t nil (concat "--root="
(expand-file-name root)) "php-eval" code)
+ (message "PHP eval...done")))))