Wilfred / ag.el

An Emacs frontend to The Silver Searcher
http://agel.readthedocs.org/en/latest/
525 stars 61 forks source link

I got an error message when ag searching. #134

Closed stardiviner closed 7 years ago

stardiviner commented 7 years ago

Thanks for reporting a bug/feature request! Make sure you include:

On my machine, the output of ag --version is: 1.0.2

My Emacs version is: 26.0.50

I'm using: Arch Linux.

Here is the error output:

Debugger entered--Lisp error: (wrong-type-argument listp (#<process ag> . t))
  delq(#<process ag> (#<process ag> #<process ag> . t))
  compilation-sentinel(#<process ag> "finished\n")

And I also found warning message in buffer *Messages*:

Invalid face reference: Ag
Invalid face reference: Debugger
stardiviner commented 7 years ago

I found the problem, I set variable compilation-in-progress to t. So caused it becomes a list of (#<process ag> . t). So caused delq can't work correctly.