]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't bind non-existent command in picture-mode-map
authorStefan Kangas <stefan@marxist.se>
Mon, 1 Aug 2022 17:46:23 +0000 (19:46 +0200)
committerStefan Kangas <stefan@marxist.se>
Mon, 1 Aug 2022 17:46:23 +0000 (19:46 +0200)
* lisp/textmodes/picture.el (picture-mode-map): Remove ineffectual
binding of non-existent command.

lisp/textmodes/picture.el

index 17d9483f68c170d89d67857a83117fc28397fd65..e8c1e6b14f2792ffb276acf401b9846a7b0adf0b 100644 (file)
@@ -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)