diff options
| author | Richard M. Stallman | 2005-07-16 17:39:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-07-16 17:39:49 +0000 |
| commit | b674ceaf816bcea7e9676e97dc4faf0714329aea (patch) | |
| tree | eed08340908aaa890c7f787fe503d5a98ade9b90 | |
| parent | 5834812aad6d086241b9bdbfc3032189596dc472 (diff) | |
| download | emacs-b674ceaf816bcea7e9676e97dc4faf0714329aea.tar.gz emacs-b674ceaf816bcea7e9676e97dc4faf0714329aea.zip | |
(viper-activate-input-method): Avoid warning.
| -rw-r--r-- | lisp/emulation/viper-init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el index 8d9aed94770..f898c15c158 100644 --- a/lisp/emulation/viper-init.el +++ b/lisp/emulation/viper-init.el | |||
| @@ -362,8 +362,8 @@ Use `M-x viper-set-expert-level' to change this.") | |||
| 362 | (defun viper-activate-input-method () | 362 | (defun viper-activate-input-method () |
| 363 | (cond ((and viper-emacs-p (fboundp 'activate-input-method)) | 363 | (cond ((and viper-emacs-p (fboundp 'activate-input-method)) |
| 364 | (activate-input-method default-input-method)) | 364 | (activate-input-method default-input-method)) |
| 365 | ((and viper-xemacs-p (fboundp 'quail-mode)) | 365 | ((featurep 'xemacs) |
| 366 | (quail-mode 1)))) | 366 | (if (fboundp 'quail-mode) (quail-mode 1))))) |
| 367 | 367 | ||
| 368 | ;; Set quail-mode to ARG | 368 | ;; Set quail-mode to ARG |
| 369 | (defun viper-set-input-method (arg) | 369 | (defun viper-set-input-method (arg) |