aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-local-vars.el
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.
* Fix most doc issues raised by (checkdoc)Gravatar Erik Martin-Dorel2018-08-23
|
* 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
* Fix incorrect uses of defvarGravatar Clément Pit--Claudel2017-03-08
| | | | | | | It didn't really matter that these variables were defined and set to nil during compilation, since we ran compilation in a clean Emacs in --batch mode; it does matter now, however, since package.el compiles PG in the user's currently running Emacs instance.
* Fixing coq project file parsing + moved project options.Gravatar Pierre Courtieu2013-07-22
|
* Simplified file variables code.Gravatar Pierre Courtieu2012-06-19
|
* Attempt to support stricter bytecomp flagsGravatar David Aspinall2011-10-17
|
* eval-when-compile -> eval-when (compile) to avoid defvar coq-prog-nameGravatar David Aspinall2011-08-24
| | | | overriding setting in coq.el
* - adjust coq-ask-insert-coq-prog-name and doc in coq-local-vars-docGravatar Hendrik Tews2011-02-28
|
* Fixes in strings/comments from Erik Martin-DorelGravatar David Aspinall2010-10-04
|
* Fixed a bug in coq "set prog args persistently".Gravatar Pierre Courtieu2010-09-06
|
* Move (require 'local-vars-list) from coq.elGravatar David Aspinall2009-09-10
|
* Another V-8-1 testGravatar David Aspinall2009-09-09
|
* Fix compiler warnings.Gravatar David Aspinall2009-09-07
|
* Clean whitespaceGravatar David Aspinall2009-09-05
|
* Doc fixGravatar David Aspinall2009-08-28
|
* Fixed a bug with local variable setting.Gravatar Pierre Courtieu2008-05-22
|
* Fixed a bug with coq-prog-name.Gravatar Pierre Courtieu2008-05-20
|
* Never use special chars with >= coq-8.1.Gravatar Pierre Courtieu2007-05-10
| | | | | proof-shell-unicode set to nil by default because of xemacs which needs a library for utf-8.
* Fixed coq prog persistent setting.Gravatar Pierre Courtieu2007-05-10
|
* Added completion to coq-prog-name asking.Gravatar Pierre Courtieu2006-12-13
|
* utf safe coq mode is not linked to proof-shell-unicode, as unicode isGravatar Pierre Courtieu2006-09-29
| | | | not well handle by xemacs.
* adapting to proof-shell-unicode. Coq has not been adapted to theGravatar Pierre Courtieu2006-09-29
| | | | -emacs-U option.
* Fixed a small bug in indentation of coq.Gravatar Pierre Courtieu2006-08-25
| | | | Fixed behavior for making abbrev table (don't if it already exists).
* Cleaning in coq and lib, fixed licenses and docstrings.Gravatar Pierre Courtieu2006-08-23
| | | | Added one or two details to docstring of generic variables.
* Started the coq-insert-tactic.Gravatar Pierre Courtieu2006-08-21
|
* Moved the coq local variables tools in a separate file and made itGravatar Pierre Courtieu2006-08-17
simpler.