Function: idlwave-shell-define-key-both

idlwave-shell-define-key-both is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-define-key-both KEY HOOK)

Documentation

Define a key in both the shell and buffer mode maps.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-define-key-both (key hook)
  "Define a key in both the shell and buffer mode maps."
  (define-key idlwave-mode-map key hook)
  (define-key idlwave-shell-mode-map key hook))