Function: woman-dired-define-key-maybe

woman-dired-define-key-maybe is a byte-compiled function defined in woman.el.gz.

Signature

(woman-dired-define-key-maybe KEY)

Documentation

If KEY is undefined in Dired, bind it to command woman-dired-find-file.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defsubst woman-dired-define-key-maybe (key)
  "If KEY is undefined in Dired, bind it to command `woman-dired-find-file'."
  (if (or (eq (lookup-key dired-mode-map key) 'undefined)
	  (null (lookup-key dired-mode-map key)))
      (woman-dired-define-key key)))