fix(coq): file-missing generic/proof-site error

To work around shenanigans in proof-general's autoloads. Should be
reverted once ProofGeneral/PG#771 is resolved.

Fix: #8169
Ref: ProofGeneral/PG#771
This commit is contained in:
Henrik Lissner
2024-11-19 04:40:42 -05:00
parent 9423f6bf95
commit 7533707e00
2 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,10 @@
;;;###package proof-general
(setq proof-splash-enable nil)
;; REVIEW: Remove when ProofGeneral/PG#771 is fixed. Also see #8169.
(require 'proof-site
(expand-file-name "generic/proof-site"
(file-name-directory (locate-library "proof-general"))))
;;;###package coq

View File

@ -1,5 +1,8 @@
;; -*- no-byte-compile: t; -*-
;;; lang/coq/packages.el
(package! proof-general :pin "3a99da275523c8f844fdfa3dd073295eece939f3")
(package! proof-general
:pin "3a99da275523c8f844fdfa3dd073295eece939f3"
;; REVIEW: Remove when ProofGeneral/PG#771 is fixed. Also see #8169.
:recipe (:build (:not autoloads)))
(package! company-coq :pin "5affe7a96a25df9101f9e44bac8a828d8292c2fa")