php-eldoc icon indicating copy to clipboard operation
php-eldoc copied to clipboard

Symbol's value as variable is void: auto-complete-mode

Open alflanagan opened this issue 7 years ago • 1 comments

I get the above error when running php-eldoc-enable. It appears to arise from this code:

  (when (and (fboundp 'auto-complete-mode)
             auto-complete-mode)...

This seems to fix it:

  (when (and (fboundp 'auto-complete-mode)
             (auto-complete-mode))...

alflanagan avatar Dec 21 '16 18:12 alflanagan