aboutsummaryrefslogtreecommitdiffhomepage
path: root/proof-general.el
Commit message (Collapse)AuthorAge
* Hopefully fix ProofGeneral/PG#413Gravatar Erik Martin-Dorel2019-01-14
| | | | | Revert proof-general.el to 05df29f7ff065d8da45b81691c602b6cf075e4a0/pg-init.el (modulo comments).
* Fix ProofGeneral/PG#413 furtherGravatar Erik Martin-Dorel2019-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | The previous code raised some bytecomp errors when loading a ~/.emacs containing a bootstrapped use-package proof-general config., such as: ``` (require 'package) (let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) (not (gnutls-available-p)))) (proto (if no-ssl "http" "https"))) (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)) (package-initialize) ;; Bootstrap use-package (unless (package-installed-p 'use-package) (package-refresh-contents) (package-install 'use-package)) (eval-when-compile (require 'use-package)) (use-package proof-general :ensure t :mode ("\\.v\\'" . coq-mode)) ```
* Update the commentary section in proof-general.elGravatar Erik Martin-Dorel2019-01-13
| | | | | | | as this text should document the whole package and will be shown at http://www.melpa.org/#/proof-general href: https://github.com/ProofGeneral/PG/issues/198#issuecomment-419741803
* Fix the license notice in proof-general.elGravatar Erik Martin-Dorel2019-01-13
| | | | | | as PG master is still under GPLv2 (while PG async already switched to GPLv3+) href: https://github.com/ProofGeneral/PG/tree/fb3b75dab55b6e6befffc53e136422558be5faa0#contributing
* Rename pg-init.el to proof-general.elGravatar Erik Martin-Dorel2019-01-13
Close ProofGeneral/PG#385 and close ProofGeneral/PG#398