aboutsummaryrefslogtreecommitdiffhomepage
path: root/hol-light
Commit message (Collapse)AuthorAge
* Use `cl-lib` instead of `cl` everywhereGravatar Stefan Monnier2018-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use lexical-binding in a few files where it was easy. Don't require `proof-compat` when it's not used. * coq/coq-db.el: Use lexical-binding. * coq/coq-system.el: Use lexical-binding. (coq--extract-prog-args): Use concatenated-args rather than recomputing it. * coq/coq.el: Require `span` to silence some warnings. * generic/pg-user.el: Use lexical-binding. (complete, add-completion, completion-min-length): Silence warnings. * generic/pg-xml.el: Use lexical-binding. (pg-xml-string-of): Prefer mapconcat to reduce+concat. * generic/proof-depends.el: Use lexical-binding. (proof-dep-split-deps): Use `push`. * generic/proof-shell.el: Require `span` to silence some warnings. (proof-shell-invisible-command): Don't use lexical-let just to build a wasteful η-redex! * lib/holes.el: Use lexical-binding. Remove redundant :group args. * lib/span.el: Use lexical-binding. (span-read-only-hook): Use user-error. (span-raise): Remove, unused.
* Cleanup patch; Moving defvar to toplevelGravatar Stefan Monnier2018-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move `defvar`s used to silence warnings outside of eval-when-compile. Make sure they don't actually give a value to the var. * pg-init.el: Simplify. Use (if t ...) to avoid running `require` at compile-time. Don't add subdirs to load-path here since this code is never used. (pg-init--script-full-path, pg-init--pg-root): Inline their definition into their sole user. * generic/proof-utils.el (proof-resize-window-tofit): Inline definitions of window-leftmost-p and window-rightmost-p previously in proof-compat.el. * lib/proof-compat.el (proof-running-on-win32): Remove, not used. (mac-key-mode): Remove, there's no carbon-emacs-package-version in Emacs≥24.3. (pg-custom-undeclare-variable): Use dolist. (save-selected-frame): Remove, save-selected-window also saves&restores the selected frame at the same time. Update all users (which already used save-selected-window around it). (window-leftmost-p, window-rightmost-p, window-bottom-p) (find-coding-system): Remove, unused. * hol-light/hol-light.el (caml-font-lock-keywords): Don't try to defvar it to a dummy value and... (hol-light): ...check its existence before using it instead. * coq/coq.el (coq-may-use-prettify): Simplify initialization.
* Update copyright messages and improve the header of elisp files.Gravatar Erik Martin-Dorel2018-02-21
|
* Change (eval-when (compile) ...) to (eval-when-compile ...)Gravatar Clément Pit--Claudel2017-05-05
| | | | This fixes a bunch of compilation warnings
* Remove compile-time calls to proof-ready-for-assistantGravatar Clément Pit--Claudel2017-03-08
| | | | | Compilation used to run in a separate Emacs process for each file, but that's not what happens when installing PG with package.el.
* Fix incorrect assumption that noninteractive == byte-compilingGravatar Clément Pit--Claudel2017-03-08
| | | | | The PG Makefile does ensure (using --batch) that noninteractive is non-nil while compiling, but package.el doesn't.
* Improvements for type tokens, remove preceding colonGravatar David Aspinall2015-01-05
|
* - support bullets and braces in ProoftreeGravatar Hendrik Tews2013-01-15
| | | | - prooftree protocol change to version 3
* UpdateGravatar David Aspinall2012-11-01
|
* Remove option aspect of 'finfo' datatype, and rename datatype to 'mldata'.Gravatar mark2012-02-24
| | | | | Add wrapper function for :thm -> thm list. Promote more objects.
* Altered graph .dot export so that nodes are displayed as their tactic.Gravatar mark2012-02-23
|
* Allocate jobs!Gravatar David Aspinall2012-02-23
|
* *** empty log message ***Gravatar mark2012-02-23
|
* Capability for exporting .dot files added.Gravatar mark2012-02-23
|
* Various small improvements to capabilityGravatar mark2012-02-21
| | | | | Whole of examples3 now processes Facility for adding manual labels to atomic/composite tactics
* *** empty log message ***Gravatar David Aspinall2012-02-21
|
* *** empty log message ***Gravatar David Aspinall2012-02-21
|
* *** empty log message ***Gravatar David Aspinall2012-02-21
|
* First version of HOL Light tactic recording.Gravatar mark2012-02-16
| | | | | | | | See INSTRUCTIONS and LIMITATIONS files for more details. Currently works for flattening "packaged-up" tactic proofs into g/e commands. Won't work for most proofs because most tactics/thms haven't been promoted. Support for exporting proof graph as a series of goal pairs. Support for displaying extra information to be intercepter by PG for Prooftree.
* Add example menu entryGravatar David Aspinall2012-02-08
|
* Duplicate proofGravatar David Aspinall2012-02-08
|
* Tweak output strings and prompt matchingGravatar David Aspinall2012-02-08
|
* Abort attempt to use special exception printingGravatar David Aspinall2012-02-08
|
* Add print_exn for marked up error messages.Gravatar David Aspinall2012-02-08
|
* Add restart command (does nothing)Gravatar David Aspinall2012-02-08
|
* Add autotestGravatar David Aspinall2012-02-08
|
* Fix parenoGravatar David Aspinall2012-02-08
|
* Add hol-light-prog-name, restart command.Gravatar David Aspinall2012-02-08
|
* Try to make evars output match what is expected by ProoftreeGravatar David Aspinall2012-02-08
|
* Add proof-forget-id command and make top_thm discard the goalstack.Gravatar David Aspinall2012-02-08
|
* Improve handling of undo, implementing pg_kill and pg_undo.Gravatar David Aspinall2012-02-08
|
* More progress with Prooftree. Basic trees produced. Undoing needs work.Gravatar David Aspinall2012-02-08
|
* Adjust global state idea, it is supposed to count down as well as up...Gravatar David Aspinall2012-02-08
|
* Get a little bit further with proof tree.Gravatar David Aspinall2012-02-07
|
* Load pg_tactics, fix proof-undo-n-times-cmd again.Gravatar David Aspinall2012-02-07
|
* Borrow syntax keywords from caml-mode if available. Typo in undo-n-times.Gravatar David Aspinall2012-02-07
|
* Use right HOL systemGravatar David Aspinall2012-02-07
|
* Attempt to rebind failwith, which fails, with...errorsGravatar David Aspinall2012-02-07
|
* Fix compileGravatar David Aspinall2012-02-07
|
* PastoGravatar David Aspinall2012-02-07
|
* Start support for both plain and custom top levels (work in progress).Gravatar David Aspinall2012-02-07
|
* Draft symbol handlingGravatar David Aspinall2012-01-23
|
* Rename goalstate file for pgGravatar David Aspinall2012-01-20
|
* Rename fileGravatar David Aspinall2012-01-20
|
* Hint about changing promptGravatar David Aspinall2012-01-20
|
* Temporary commit to share file, this is work in progress for ProoftreeGravatar David Aspinall2012-01-19
|
* Add file from MarkGravatar David Aspinall2012-01-19
|
* Patch needed temporarily to avoid rebuild of ProoftreeGravatar David Aspinall2012-01-19
|
* Update documentationGravatar David Aspinall2012-01-19
|
* Improve configuration for HOL Light. Allow goals display to be prefixed by ↵Gravatar David Aspinall2012-01-09
| | | | ignored junk (val it : goalstack =).