branch: elpa/drupal-mode
commit 507da75f31fd4bfc396b178366c8ea14e3db883f
Author: Arne Jørgensen <[email protected]>
Commit: Arne Jørgensen <[email protected]>
Use `special-mode` for drush php-eval output.
---
drupal-mode.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/drupal-mode.el b/drupal-mode.el
index fcfdce2d47..053ef47451 100644
--- a/drupal-mode.el
+++ b/drupal-mode.el
@@ -377,6 +377,7 @@ of the project)."
(with-temp-buffer-window
"*drush php-eval*" nil nil
(message "PHP eval...")
+ (special-mode)
(call-process drupal-drush-program nil t nil (concat "--root="
(expand-file-name root)) "php-eval" code)
(message "PHP eval...done")))))