diff options
Diffstat (limited to 'lisp/emulation/viper-mous.el')
-rw-r--r-- | lisp/emulation/viper-mous.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/viper-mous.el b/lisp/emulation/viper-mous.el index aaab02e5f6c..b9638175e02 100644 --- a/lisp/emulation/viper-mous.el +++ b/lisp/emulation/viper-mous.el @@ -36,8 +36,8 @@ (let ((load-path (cons (expand-file-name ".") load-path))) (or (featurep 'viper-util) (load "viper-util.el" nil nil 'nosuffix)) - (or (featurep 'viper) - (load "viper.el" nil nil 'nosuffix)) + (or (featurep 'viper-cmd) + (load "viper-cmd.el" nil nil 'nosuffix)) )) ;; end pacifier @@ -396,7 +396,7 @@ this command." (defun vip-mouse-catch-frame-switch (event arg) "Catch the event of switching frame. Usually is bound to a 'down-mouse' event to work properly. See sample -bindings in viper.el and in the Viper manual." +bindings in the Viper manual." (interactive "e\nP") (setq vip-frame-of-focus nil) ;; pass prefix arg along to vip-mouse-click-search/insert-word |