diff options
| author | Richard M. Stallman | 1995-06-14 12:05:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-14 12:05:23 +0000 |
| commit | b35732e1e2d1f32c4e4bd3940ca07c1dc641d50f (patch) | |
| tree | 9b08d0b09e503a492c976045b2f7ee3ff69e6be1 /lisp/emulation | |
| parent | a15a76f76690fb3c9176c106419c62770b866ffc (diff) | |
| download | emacs-b35732e1e2d1f32c4e4bd3940ca07c1dc641d50f.tar.gz emacs-b35732e1e2d1f32c4e4bd3940ca07c1dc641d50f.zip | |
Delete the Emacs version error check.
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/viper-util.el | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el index 36d7d54c996..31233a6f0da 100644 --- a/lisp/emulation/viper-util.el +++ b/lisp/emulation/viper-util.el | |||
| @@ -219,30 +219,6 @@ | |||
| 219 | (error "%S: Invalid op in vip-check-version" op)))) | 219 | (error "%S: Invalid op in vip-check-version" op)))) |
| 220 | (cond ((memq op '(= > >=)) nil) | 220 | (cond ((memq op '(= > >=)) nil) |
| 221 | ((memq op '(< <=)) t)))) | 221 | ((memq op '(< <=)) t)))) |
| 222 | |||
| 223 | ;; warn if it is a wrong emacs | ||
| 224 | (if (or (vip-check-version '< 19 29 'emacs) | ||
| 225 | (vip-check-version '< 19 12 'xemacs)) | ||
| 226 | (progn | ||
| 227 | (with-output-to-temp-buffer " *vip-info*" | ||
| 228 | (switch-to-buffer " *vip-info*") | ||
| 229 | (insert | ||
| 230 | (format " | ||
| 231 | |||
| 232 | This version of Viper requires | ||
| 233 | |||
| 234 | \t Emacs 19.29 and higher | ||
| 235 | \t OR | ||
| 236 | \t XEmacs 19.12 and higher | ||
| 237 | |||
| 238 | It is unlikely to work under Emacs version %s | ||
| 239 | that you are using... | ||
| 240 | |||
| 241 | Type any key to continue..." emacs-version)) | ||
| 242 | (beep 1) | ||
| 243 | (beep 1) | ||
| 244 | (vip-read-event)) | ||
| 245 | (kill-buffer " *vip-info*"))) | ||
| 246 | 222 | ||
| 247 | 223 | ||
| 248 | (defun vip-get-visible-buffer-window (wind) | 224 | (defun vip-get-visible-buffer-window (wind) |