aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq.el
diff options
context:
space:
mode:
authorGravatar Stefan Monnier <monnier@iro.umontreal.ca>2018-12-11 18:48:51 -0500
committerGravatar Clément Pit-Claudel <clement.pitclaudel@live.com>2018-12-12 12:28:39 -0500
commita921439a4eb5b0d96182748e779c78e2f6a41a5f (patch)
treea887ed306e13a0bcf21a939166322819bf669281 /coq/coq.el
parent05df29f7ff065d8da45b81691c602b6cf075e4a0 (diff)
Cleanup patch; Moving defvar to toplevel
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.
Diffstat (limited to 'coq/coq.el')
-rw-r--r--coq/coq.el72
1 files changed, 33 insertions, 39 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 3376f7f3..6b1494a9 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -3,7 +3,7 @@
;; This file is part of Proof General.
;; Portions © Copyright 1994-2012 David Aspinall and University of Edinburgh
-;; Portions © Copyright 2003, 2012, 2014 Free Software Foundation, Inc.
+;; Portions © Copyright 2003-2018 Free Software Foundation, Inc.
;; Portions © Copyright 2001-2017 Pierre Courtieu
;; Portions © Copyright 2010, 2016 Erik Martin-Dorel
;; Portions © Copyright 2011-2013, 2016-2017 Hendrik Tews
@@ -28,21 +28,20 @@
(require 'span)
(require 'outline)
(require 'newcomment)
- (require 'etags)
- (unless (proof-try-require 'smie)
- (defvar smie-indent-basic)
- (defvar smie-rules-function))
- (defvar proof-info) ; dynamic scope in proof-tree-urgent-action
- (defvar action) ; dynamic scope in coq-insert-as stuff
- (defvar string) ; dynamic scope in coq-insert-as stuff
- (defvar old-proof-marker)
- (defvar coq-keymap)
- (defvar coq-one-command-per-line)
- (defvar coq-auto-insert-as) ; defpacustom
- (defvar coq-time-commands) ; defpacustom
- (defvar coq-use-project-file) ; defpacustom
- (defvar coq-use-editing-holes) ; defpacustom
- (defvar coq-hide-additional-subgoals))
+ (require 'etags))
+(defvar smie-indent-basic)
+(defvar smie-rules-function)
+(defvar proof-info) ; dynamic scope in proof-tree-urgent-action
+(defvar action) ; dynamic scope in coq-insert-as stuff
+(defvar string) ; dynamic scope in coq-insert-as stuff
+(defvar old-proof-marker)
+(defvar coq-keymap)
+(defvar coq-one-command-per-line)
+(defvar coq-auto-insert-as) ; defpacustom
+(defvar coq-time-commands) ; defpacustom
+(defvar coq-use-project-file) ; defpacustom
+(defvar coq-use-editing-holes) ; defpacustom
+(defvar coq-hide-additional-subgoals)
(require 'proof)
(require 'coq-system) ; load path, option, project file etc.
@@ -66,11 +65,8 @@
;; prettify is in emacs > 24.4
;; FIXME: this should probably be done like for smie above.
-(defvar coq-may-use-prettify nil) ; may become t below
-(eval-when-compile
- (if (fboundp 'prettify-symbols-mode)
- (defvar coq-may-use-prettify t)
- (defvar prettify-symbols-alist nil)))
+(defvar coq-may-use-prettify (fboundp 'prettify-symbols-mode))
+(defvar prettify-symbols-alist)
;; ----- coq-shell configuration options
@@ -911,22 +907,21 @@ This is mapped to control/shift mouse-1, unless coq-remap-mouse-1
is nil (t by default)."
(interactive "e")
(save-selected-window
- (save-selected-frame
- (save-excursion
- (mouse-set-point event)
- (let* ((id (coq-id-at-point))
- (notat (coq-notation-at-position (point)))
- (modifs (event-modifiers event))
- (shft (member 'shift modifs))
- (ctrl (member 'control modifs))
- (cmd (when (or id notat)
- (if (and ctrl shft) (if id "Check" "Locate")
- (if shft (if id "About" "Locate")
- (if ctrl (if id "Print" "Locate")))))))
- (proof-shell-invisible-command
- (format (concat cmd " %s . ")
- ;; Notation need to be surrounded by ""
- (if id id (concat "\"" notat "\"")))))))))
+ (save-excursion
+ (mouse-set-point event)
+ (let* ((id (coq-id-at-point))
+ (notat (coq-notation-at-position (point)))
+ (modifs (event-modifiers event))
+ (shft (member 'shift modifs))
+ (ctrl (member 'control modifs))
+ (cmd (when (or id notat)
+ (if (and ctrl shft) (if id "Check" "Locate")
+ (if shft (if id "About" "Locate")
+ (if ctrl (if id "Print" "Locate")))))))
+ (proof-shell-invisible-command
+ (format (concat cmd " %s . ")
+ ;; Notation need to be surrounded by ""
+ (if id id (concat "\"" notat "\""))))))))
(defun coq-guess-or-ask-for-string (s &optional dontguess)
"Asks for a coq identifier with message S.
@@ -1211,8 +1206,7 @@ Printing All set."
(coq-ask-do-show-all "Show goal number" "Show" t))
;; Check
-(eval-when-compile
- (defvar coq-auto-adapt-printing-width)); defpacustom
+(defvar coq-auto-adapt-printing-width); defpacustom
;; Since Printing Width is a synchronized option in coq (?) it is retored
;; silently to a previous value when retracting. So we reset the stored width