diff options
| author | David Aspinall | 2001-12-11 13:19:44 +0000 |
|---|---|---|
| committer | David Aspinall | 2001-12-11 13:19:44 +0000 |
| commit | bf56606d11744c6410a0f3004332acd2e52f7810 (patch) | |
| tree | 84b5e36c8590ff60abcbeeee51f1c9100a4e1413 | |
| parent | 6c60e195c68a30aab803d72fc216853583624bd3 (diff) | |
Fix test for GNU 21
| -rw-r--r-- | generic/proof-site.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/proof-site.el b/generic/proof-site.el index b5a44495..4eab2538 100644 --- a/generic/proof-site.el +++ b/generic/proof-site.el @@ -368,7 +368,7 @@ proof-assistant-table." (defvar proof-running-on-XEmacs (string-match "XEmacs" emacs-version) "Non-nil if Proof General is running on XEmacs.") (defvar proof-running-on-Emacs21 (and (not proof-running-on-XEmacs) - (>= 21 emacs-major-version)) + (>= emacs-major-version 21)) "Non-nil if Proof General is running on GNU Emacs 21 or later.") ;; rough test for XEmacs on win32, anyone know about GNU Emacs on win32? (defvar proof-running-on-win32 (fboundp 'win32-long-file-name) |
