comparison lisp/emulation/viper-ex.el @ 86982:48163f8e5648

(top-level): Don't load viper-util, viper-keym when compiling.
author Glenn Morris <rgm@gnu.org>
date Sun, 02 Dec 2007 21:02:58 +0000
parents a168399ff2dc
children 107ccd98fa12 53108e6cea98
comparison
equal deleted inserted replaced
86981:31417cdd2b64 86982:48163f8e5648
45 ;; loading happens only in non-interactive compilation 45 ;; loading happens only in non-interactive compilation
46 ;; in order to spare non-viperized emacs from being viperized 46 ;; in order to spare non-viperized emacs from being viperized
47 (if noninteractive 47 (if noninteractive
48 (eval-when-compile 48 (eval-when-compile
49 (let ((load-path (cons (expand-file-name ".") load-path))) 49 (let ((load-path (cons (expand-file-name ".") load-path)))
50 (or (featurep 'viper-util)
51 (load "viper-util.el" nil t 'nosuffix))
52 (or (featurep 'viper-keym)
53 (load "viper-keym.el" nil t 'nosuffix))
54 (or (featurep 'viper-cmd) 50 (or (featurep 'viper-cmd)
55 (load "viper-cmd.el" nil t 'nosuffix)) 51 (load "viper-cmd.el" nil t 'nosuffix))
56 ))) 52 )))
57 ;; end pacifier 53 ;; end pacifier
58 54