[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [elpa] master cf17576 4/7: Fix #89: Make sure compilation-auto-jump
From: |
Stefan Monnier |
Subject: |
Re: [elpa] master cf17576 4/7: Fix #89: Make sure compilation-auto-jump run before cleanup |
Date: |
Sat, 01 Oct 2016 23:05:11 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2.50 (gnu/linux) |
> + ;; Manually run the `compilation-auto-jump' timer. Hackish but
> + ;; everything else seems unreliable. See:
> + ;;
> + ;; - http://debbugs.gnu.org/13829
> + ;; - http://debbugs.gnu.org/23987
> + ;; - https://github.com/leoliu/ggtags/issues/89
> + ;;
> + (pcase (cl-find 'compilation-auto-jump timer-list :key
> #'timer--function)
> + (`nil )
> + (timer (timer-event-handler timer)))
I think this deserves a bug report, where we try to figure out how to
make it possible for ggtags.el to work properly without resorting to such
a hideous and brittle hack.
A hack will probably have to stay for compatibility with older Emacsen,
but we should come up with a better solution for the future.
Stefan
- Re: [elpa] master cf17576 4/7: Fix #89: Make sure compilation-auto-jump run before cleanup,
Stefan Monnier <=