Function: blackbox-redefine-key

blackbox-redefine-key is a byte-compiled function defined in blackbox.el.gz.

This function is obsolete since 29.1; use define-key instead.

Signature

(blackbox-redefine-key MAP OLDFUN NEWFUN)

Documentation

Redefine keys that run the function OLDFUN to run NEWFUN instead.

Source Code

;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defun blackbox-redefine-key (map oldfun newfun)
  "Redefine keys that run the function OLDFUN to run NEWFUN instead."
  (declare (obsolete define-key "29.1"))
  (define-key map (vector 'remap oldfun) newfun))