Function: viper-modify-keymap

viper-modify-keymap is a byte-compiled function defined in viper-keym.el.gz.

Signature

(viper-modify-keymap MAP ALIST)

Documentation

Modifies MAP with bindings specified in the ALIST.

The ALIST has the form ((KEY . FUNCTION) (KEY . FUNCTION) ... ).

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-keym.el.gz
(defun viper-modify-keymap (map alist)
   "Modifies MAP with bindings specified in the ALIST.
The ALIST has the form ((KEY . FUNCTION) (KEY . FUNCTION) ... )."
   (mapcar (lambda (p) (define-key map (eval (car p) t) (cdr p)))
	   alist))