* lisp/shell.el (shell-mode-map): Comint is the parent mode, so
there's no need to explicitly make it a parent map here (bug#25187).
"Command used by `shell-resync-dirs' to query the shell.")
(defvar shell-mode-map
- (let ((map (nconc (make-sparse-keymap) comint-mode-map)))
+ (let ((map (make-sparse-keymap)))
(define-key map "\C-c\C-f" 'shell-forward-command)
(define-key map "\C-c\C-b" 'shell-backward-command)
(define-key map "\t" 'completion-at-point)