branch: elpa/drupal-mode
commit d71bfb036278301c27ec95a629e40f3eb5277342
Author: Arne Jørgensen <[email protected]>
Commit: Arne Jørgensen <[email protected]>

    symbol's value as variable is void: gtags-auto-update
    
    Fixes #61.
---
 drupal/emacs-drush.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drupal/emacs-drush.el b/drupal/emacs-drush.el
index c44d65c480..ec5a30fab6 100644
--- a/drupal/emacs-drush.el
+++ b/drupal/emacs-drush.el
@@ -32,7 +32,7 @@
 ;;; Code:
 
 (defcustom drupal/emacs-drush-update-tags-after-save
-  (and (unless (boundp 'gtags-auto-update)
+  (and (unless (not (boundp 'gtags-auto-update))
          gtags-auto-update)
        drupal-drush-program
        (zerop (call-process drupal-drush-program nil nil nil "help" "etags")))

Reply via email to