aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-04-10 06:18:40 +0000
committerRichard M. Stallman <[email protected]>1997-04-10 06:18:40 +0000
commit45f13532b2e24e553a3a70312c420c6c83debe8a (patch)
treea8f58bb5be24b9353c3a18dd875f2ea19bf5f6e0
parent2c66f5d19633aaed36d7da8722dd06a2cc108132 (diff)
(scheme-mode-map): Add some menu items.
-rw-r--r--lisp/cmuscheme.el28
1 files changed, 27 insertions, 1 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index 0dbd7a2cb7..96d556362e 100644
--- a/lisp/cmuscheme.el
+++ b/lisp/cmuscheme.el
@@ -1,6 +1,6 @@
;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el.
-;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1988, 1994, 1997 Free Software Foundation, Inc.
;; Author: Olin Shivers <[email protected]>
;; Maintainer: FSF
@@ -100,6 +100,32 @@
(define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
(define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
+(let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
+ (define-key map [separator-eval] '("--"))
+ (define-key map [compile-file]
+ '("Compile Scheme File" . scheme-compile-file))
+ (define-key map [load-file]
+ '("Load Scheme File" . scheme-load-file))
+ (define-key map [switch]
+ '("Switch to Scheme" . switch-to-scheme))
+ (define-key map [com-def-go]
+ '("Compile Definitiion & Go" . scheme-compile-definition-and-go))
+ (define-key map [com-def]
+ '("Compile Definitiion" . scheme-compile-definition))
+ (define-key map [send-def-go]
+ '("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
+ (define-key map [send-def]
+ '("Evaluate Last Definition" . scheme-send-definition))
+ (define-key map [send-region-go]
+ '("Evaluate Region & Go" . scheme-send-region-and-go))
+ (define-key map [send-region-go]
+ '("Evaluate Region" . scheme-send-region))
+ (define-key map [send-region]
+ '("Evaluate Region" . scheme-send-region))
+ (define-key map [send-sexp]
+ '("Evaluate Last S-expression" . scheme-send-last-sexp))
+)
+
(defvar scheme-buffer)
(defun inferior-scheme-mode ()