From c2ed2e68586098b600ff10a85e882ceb9eeb0c32 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 1 Aug 2022 19:46:23 +0200 Subject: [PATCH] Don't bind non-existent command in picture-mode-map * lisp/textmodes/picture.el (picture-mode-map): Remove ineffectual binding of non-existent command. --- lisp/textmodes/picture.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 17d9483f68c..e8c1e6b14f2 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -641,7 +641,6 @@ Leaves the region surrounding the rectangle." (define-key map [remap move-end-of-line] 'picture-end-of-line) (define-key map [remap mouse-set-point] 'picture-mouse-set-point) (define-key map "\C-c\C-d" 'picture-delete-char) - (define-key map "\e\t" 'picture-toggle-tab-state) (define-key map "\t" 'picture-tab) (define-key map "\e\t" 'picture-tab-search) (define-key map "\C-c\t" 'picture-set-tab-stops) -- 2.39.5