summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2019-05-17 10:00:01 -0300
committerNoam Postavsky <npostavs@gmail.com>2019-05-20 14:22:58 -0400
commiteadf044e0663703af61967c1ff890043f46c9a15 (patch)
tree77229b0a90f9de9d3ad96883a19083f57678166b
parent1228a90c69b51c6e9084385552ff991e6915b175 (diff)
downloademacs-eadf044e0663703af61967c1ff890043f46c9a15.tar.gz
Remove repeated function call in picture.el
* lisp/textmodes/picture.el (picture-mode-map): Remove repeated define-key call. (Bug#35772)
-rw-r--r--lisp/textmodes/picture.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el
index f0e30135f16..aed531e7694 100644
--- a/lisp/textmodes/picture.el
+++ b/lisp/textmodes/picture.el
@@ -623,7 +623,6 @@ Leaves the region surrounding the rectangle."
(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]