# HG changeset patch # User Richard M. Stallman # Date 791718006 0 # Node ID 04591bafb562e404a0fd16e5438081b2a21b4c86 # Parent e00a48bb7ad4b58e31bfe135e67fea5dd33ee272 (shared-lisp-mode-map): Don't bind M-q. (lisp-mode-variables): Put it in fill-paragraph-function locally. diff -r e00a48bb7ad4 -r 04591bafb562 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Wed Feb 01 22:33:11 1995 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Thu Feb 02 09:40:06 1995 +0000 @@ -88,6 +88,8 @@ (setq paragraph-separate paragraph-start) (make-local-variable 'paragraph-ignore-fill-prefix) (setq paragraph-ignore-fill-prefix t) + (make-local-variable 'fill-paragraph-function) + (setq fill-paragraph-function 'lisp-fill-paragraph) (make-local-variable 'indent-line-function) (setq indent-line-function 'lisp-indent-line) (make-local-variable 'indent-region-function) @@ -112,7 +114,6 @@ () (setq shared-lisp-mode-map (make-sparse-keymap)) (define-key shared-lisp-mode-map "\e\C-q" 'indent-sexp) - (define-key shared-lisp-mode-map "\M-q" 'lisp-fill-paragraph) (define-key shared-lisp-mode-map "\177" 'backward-delete-char-untabify) (define-key shared-lisp-mode-map "\t" 'lisp-indent-line))