GNU bug report logs - #14504
lisp-mode-shared-map does not derive from prog-mode-map

Previous Next

Package: emacs;

Reported by: Sebastian Wiesner <lunaryorn <at> gmail.com>

Date: Wed, 29 May 2013 15:12:01 UTC

Severity: normal

Done: Stefan Monnier <monnier <at> IRO.UMontreal.CA>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#14504: closed (lisp-mode-shared-map does not derive from
 prog-mode-map)
Date: Wed, 29 May 2013 19:35:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Wed, 29 May 2013 15:33:30 -0400
with message-id <jwvmwrdu1de.fsf-monnier+emacs <at> gnu.org>
and subject line Re: bug#14504: lisp-mode-shared-map does not derive from prog-mode-map
has caused the debbugs.gnu.org bug report #14504,
regarding lisp-mode-shared-map does not derive from prog-mode-map
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
14504: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14504
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Sebastian Wiesner <lunaryorn <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: lisp-mode-shared-map does not derive from prog-mode-map
Date: Wed, 29 May 2013 15:27:09 +0200
[Message part 3 (text/plain, inline)]
The parent keymap of "emacs-lisp-mode-map", "lisp-mode-shared-map" does
not inherit from "prog-mode-map", which has the odd effect, that though
"emacs-lisp-mode" derives from "prog-mode", "emacs-lisp-mode-map" does
not.

Hence, key bindings in "prog-mode-map" have no effect in
"emacs-lisp-mode-map", see http://stackoverflow.com/q/16801689/355252
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
From: Stefan Monnier <monnier <at> IRO.UMontreal.CA>
To: Sebastian Wiesner <lunaryorn <at> gmail.com>
Cc: 14504-done <at> debbugs.gnu.org
Subject: Re: bug#14504: lisp-mode-shared-map does not derive from prog-mode-map
Date: Wed, 29 May 2013 15:33:30 -0400
> The parent keymap of "emacs-lisp-mode-map", "lisp-mode-shared-map" does
> not inherit from "prog-mode-map", which has the odd effect, that though
> "emacs-lisp-mode" derives from "prog-mode", "emacs-lisp-mode-map" does
> not.

Thank you for the report.  I installed the patch below which should fix
this oversight.


        Stefan


=== modified file 'lisp/emacs-lisp/lisp-mode.el'
--- lisp/emacs-lisp/lisp-mode.el        2013-05-06 20:23:40 +0000
+++ lisp/emacs-lisp/lisp-mode.el        2013-05-29 17:56:08 +0000
@@ -266,6 +266,7 @@
 
 (defvar lisp-mode-shared-map
   (let ((map (make-sparse-keymap)))
+    (set-keymap-parent map prog-mode-map)
     (define-key map "\e\C-q" 'indent-sexp)
     (define-key map "\177" 'backward-delete-char-untabify)
     ;; This gets in the way when viewing a Lisp file in view-mode.  As



This bug report was last modified 12 years and 56 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.