aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/proof-shell.el
diff options
context:
space:
mode:
Diffstat (limited to 'generic/proof-shell.el')
-rw-r--r--generic/proof-shell.el50
1 files changed, 26 insertions, 24 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index f6bd446c..8dc26f9a 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -113,6 +113,32 @@ to examine proof-shell-last-output.")
;;
+;; Indicator and fake minor mode for active scripting buffer
+;;
+
+(defcustom proof-shell-active-scripting-indicator
+ (if proof-running-on-XEmacs
+ (cons (make-extent nil nil) " Scripting ")
+ " Scripting")
+ "Modeline indicator for active scripting buffer.
+If first component is extent it will automatically follow the colour
+of the queue region."
+ :type 'sexp
+ :group 'proof-general-internals)
+
+(unless
+ (assq 'proof-active-buffer-fake-minor-mode minor-mode-alist)
+ (setq minor-mode-alist
+ (append minor-mode-alist
+ (list
+ (list
+ 'proof-active-buffer-fake-minor-mode
+ proof-shell-active-scripting-indicator)))))
+
+
+
+
+;;
;; Implementing the process lock
;;
;; da: In fact, there is little need for a lock. Since Emacs Lisp
@@ -357,30 +383,6 @@ Does nothing if proof assistant is already running."
;;
-;; Indicator and fake minor mode for active scripting buffer
-;;
-
-(defcustom proof-shell-active-scripting-indicator
- (if proof-running-on-XEmacs
- (cons (make-extent nil nil) " Scripting ")
- " Scripting")
- "Modeline indicator for active scripting buffer.
-If first component is extent it will automatically follow the colour
-of the queue region."
- :type 'sexp
- :group 'proof-general-internals)
-
-(unless
- (assq 'proof-active-buffer-fake-minor-mode minor-mode-alist)
- (setq minor-mode-alist
- (append minor-mode-alist
- (list
- (list
- 'proof-active-buffer-fake-minor-mode
- proof-shell-active-scripting-indicator)))))
-
-
-;;
;; Shutting down proof shell and associated buffers
;;