diff options
author | Glenn Morris <rgm@gnu.org> | 2007-11-27 09:06:32 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-11-27 09:06:32 +0000 |
commit | fd298e0242d3ea2cd531e67f494303d1e84be67e (patch) | |
tree | 3fa847166016f5a08c8f306561165ab9242955f5 /lisp/emulation/viper-ex.el | |
parent | 1007a0a74e381a04a9e11c4ee24d2cb8a5db889a (diff) | |
download | emacs-fd298e0242d3ea2cd531e67f494303d1e84be67e.tar.gz |
Load viper*.el files silently.
Diffstat (limited to 'lisp/emulation/viper-ex.el')
-rw-r--r-- | lisp/emulation/viper-ex.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el index caeecd12c8a..6ea3802b62d 100644 --- a/lisp/emulation/viper-ex.el +++ b/lisp/emulation/viper-ex.el @@ -48,11 +48,11 @@ (eval-when-compile (let ((load-path (cons (expand-file-name ".") load-path))) (or (featurep 'viper-util) - (load "viper-util.el" nil nil 'nosuffix)) + (load "viper-util.el" nil t 'nosuffix)) (or (featurep 'viper-keym) - (load "viper-keym.el" nil nil 'nosuffix)) + (load "viper-keym.el" nil t 'nosuffix)) (or (featurep 'viper-cmd) - (load "viper-cmd.el" nil nil 'nosuffix)) + (load "viper-cmd.el" nil t 'nosuffix)) ))) ;; end pacifier |