aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1996-08-20 19:10:47 +0000
committerKarl Heuer1996-08-20 19:10:47 +0000
commit950086e6eb3c1ceb84a8d0a6f4f30f76b6f56f11 (patch)
treeb07d9449e1cead9a273dc5f7fed2d7540d4ff973 /lisp
parent7d7134484ace48209757c4df34685e684a94a408 (diff)
downloademacs-950086e6eb3c1ceb84a8d0a6f4f30f76b6f56f11.tar.gz
emacs-950086e6eb3c1ceb84a8d0a6f4f30f76b6f56f11.zip
(ielm-map): Don't bind M-q.
(inferior-emacs-lisp-mode): Set fill-paragraph-function instead.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ielm.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el
index cb229c85593..afc2fa3a858 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -89,7 +89,7 @@ This variable is buffer-local.")
89(defvar ielm-header 89(defvar ielm-header
90 (concat 90 (concat
91 "*** Welcome to IELM version " 91 "*** Welcome to IELM version "
92 (substring "$Revision: 1.6 $" 11 -2) 92 (substring "$Revision: 1.7 $" 11 -2)
93 " *** Type (describe-mode) for help.\n" 93 " *** Type (describe-mode) for help.\n"
94 "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") 94 "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n")
95 "Message to display when IELM is started.") 95 "Message to display when IELM is started.")
@@ -111,7 +111,6 @@ This variable is buffer-local.")
111 ;; These bindings are from shared-lisp-mode-map -- can you inherit 111 ;; These bindings are from shared-lisp-mode-map -- can you inherit
112 ;; from more than one keymap?? 112 ;; from more than one keymap??
113 (define-key ielm-map "\e\C-q" 'indent-sexp) 113 (define-key ielm-map "\e\C-q" 'indent-sexp)
114 (define-key ielm-map "\eq" 'lisp-fill-paragraph)
115 (define-key ielm-map "\177" 'backward-delete-char-untabify) 114 (define-key ielm-map "\177" 'backward-delete-char-untabify)
116 ;; Some convenience bindings for setting the working buffer 115 ;; Some convenience bindings for setting the working buffer
117 (define-key ielm-map "\C-c\C-b" 'ielm-change-working-buffer) 116 (define-key ielm-map "\C-c\C-b" 'ielm-change-working-buffer)
@@ -416,6 +415,8 @@ Customised bindings may be defined in `ielm-map', which currently contains:
416 (make-local-variable 'ielm-working-buffer) 415 (make-local-variable 'ielm-working-buffer)
417 (setq ielm-working-buffer (current-buffer)) 416 (setq ielm-working-buffer (current-buffer))
418 (setq indent-line-function 'ielm-indent-line) 417 (setq indent-line-function 'ielm-indent-line)
418 (make-local-variable 'fill-paragraph-function)
419 (setq fill-paragraph-function 'lisp-fill-paragraph)
419 420
420 ;; Value holders 421 ;; Value holders
421 (setq : nil) 422 (setq : nil)