Open GoogleCodeExporter opened 9 years ago
Also, this problem started happening in Emacs 24.
Original comment by chris012...@gmail.com
on 9 Jul 2012 at 1:35
This also cause gnus to stop working in Emacs 24. The problem seems in dbpg.el
that changes open-network-stream behavior
(defadvice open-network-stream (around debugclient-pass-process-to-comint)
"[comint hack] Pass the spawned DBGp client process to comint."
(let* ((buffer (ad-get-arg 1))
(proc (buffer-local-value 'dbgp-buffer-process buffer)))
(set-process-buffer proc buffer)
(setq ad-return-value proc)))
Original comment by laurent....@gmail.com
on 21 Jul 2012 at 5:44
Also seems to break list-packages.
Is this project dead? Should we fork on github or something?
Original comment by pho...@gmail.com
on 14 Jun 2013 at 10:50
Geben defadvice absolutely correct! The problem is may be in list-packages. I
think there open-network-stream somehow redefined and it cause advice
activation in geben. Possible workaround disable advise in dbgp.el. After
(defadvice .... ) and after ad-deactivate insert
(ad-disable-advice 'open-network-stream 'around
'debugclient-pass-process-to-comint)
Before ad-activate insert
(ad-enable-advice 'open-network-stream 'around
'debugclient-pass-process-to-comint)
Original comment by simply....@gmail.com
on 19 Sep 2013 at 4:18
Attachments:
The workaround works for me. If you install geben form elpa, just remember to
re-complie dbgp.el
Original comment by Deyuan.D...@gmail.com
on 16 Mar 2014 at 9:13
Original issue reported on code.google.com by
chris012...@gmail.com
on 9 Jul 2012 at 1:34