From 4726e9401718e5836d72c0f159f0fed8c2d1c281 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Fri, 17 May 2019 10:00:01 -0300 Subject: [PATCH] Remove repeated function call in picture.el * lisp/textmodes/picture.el (picture-mode-map): Remove repeated define-key call. (Bug#35772) --- lisp/textmodes/picture.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index b520849..bc85372 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -625,7 +625,6 @@ 'picture-delete-char (defvar picture-mode-map (let ((map (make-keymap))) (define-key map [remap self-insert-command] 'picture-self-insert) - (define-key map [remap self-insert-command] 'picture-self-insert) (define-key map [remap completion-separator-self-insert-command] 'picture-self-insert) (define-key map [remap completion-separator-self-insert-autofilling] -- 2.7.4