emacs-eclim icon indicating copy to clipboard operation
emacs-eclim copied to clipboard

Invalid function: (java-mode javascript-mode js-mode ruby-mode php-mode c-mode c++-mode)

Open shackra opened this issue 11 years ago • 0 comments

I'm experiencing a bug with emacs-eclim, as I explained on StackOverflow

Emacs yells this message:

Company: An error occurred in auto-begin Invalid function: (java-mode javascript-mode js-mode ruby-mode php-mode c-mode c++-mode)

Adding (require 'cl) seems that do not solve this issue.

Here is the Emacs debugging information regarding this error:

Debugger entered--Lisp error: (invalid-function (java-mode javascript-mode js-mode ruby-mode php-mode c-mode c++-mode))
(java-mode javascript-mode js-mode ruby-mode php-mode c-mode c++-mode)(128)
eclim-completion-start()
(let ((start (eclim-completion-start))) (if start (progn (buffer-substring-no-properties start (point)))))
(cond ((eql command (quote interactive)) (company-begin-backend (quote company-emacs-eclim))) ((eql command (quote prefix)) (let ((start (eclim-completion-start))) (if start (progn (buffer-substring-no-properties start (point)))))) ((eql command (quote candidates)) (company-emacs-eclim--candidates arg)) ((eql command (quote annotation)) (company-emacs-eclim--annotation arg)) ((eql command (quote meta)) (eclim--completion-documentation (concat arg (company-emacs-eclim--annotation arg)))) ((eql command (quote no-cache)) (equal arg "")) ((eql command (quote ignore-case)) t) ((eql command (quote sorted)) t) ((eql command (quote post-completion)) (let ((ann (company-emacs-eclim--annotation arg))) (if ann (progn (insert ann))) (eclim--completion-action))))
company-emacs-eclim(prefix)
#[0 "\n\203   [LONG STRING THAT CANNOT BE COPY]
  company--begin-new()
  company-begin()
  #[0 "\300 \207" [company-begin] 1 "\n\n(fn)"]()
  company-auto-begin()
  company-manual-begin()
  company-complete-common()
  call-interactively(company-complete-common record nil)
  command-execute(company-complete-common record)
  execute-extended-command(nil "company-complete-common")
  call-interactively(execute-extended-command nil nil)

shackra avatar May 07 '14 22:05 shackra