From: Stefan Kangas Date: Mon, 1 Aug 2022 17:46:23 +0000 (+0200) Subject: Don't bind non-existent command in picture-mode-map X-Git-Tag: emacs-29.0.90~1447^2~563 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c2ed2e68586098b600ff10a85e882ceb9eeb0c32;p=emacs.git Don't bind non-existent command in picture-mode-map * lisp/textmodes/picture.el (picture-mode-map): Remove ineffectual binding of non-existent command. --- 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)