aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorMichael Albinus2009-06-22 21:09:25 +0000
committerMichael Albinus2009-06-22 21:09:25 +0000
commite3610693bc678479a056dcbcc4afcc20902a57df (patch)
tree8d6166399ef250ac77d98c0998d4db90078cc7a9 /lisp/net
parentfffba733ad57fc244414b9cbd0a240dd65f188b9 (diff)
downloademacs-e3610693bc678479a056dcbcc4afcc20902a57df.tar.gz
emacs-e3610693bc678479a056dcbcc4afcc20902a57df.zip
* net/trampver.el: Update release number. Make version check fit
for SXEmacs 22.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/trampver.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index f10f760cac7..dc19550b93e 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -29,14 +29,14 @@
29;; "autoconf && ./configure" to change them. (X)Emacs version check is defined 29;; "autoconf && ./configure" to change them. (X)Emacs version check is defined
30;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there. 30;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there.
31 31
32(defconst tramp-version "2.1.15" 32(defconst tramp-version "2.1.16"
33 "This version of Tramp.") 33 "This version of Tramp.")
34 34
35(defconst tramp-bug-report-address "tramp-devel@gnu.org" 35(defconst tramp-bug-report-address "tramp-devel@gnu.org"
36 "Email address to send bug reports to.") 36 "Email address to send bug reports to.")
37 37
38;; Check for (X)Emacs version. 38;; Check for (X)Emacs version.
39(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (< emacs-minor-version 4))) (format "Tramp 2.1.15 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok"))) 39(let ((x (if (or (< emacs-major-version 21) (and (featurep 'xemacs) (= emacs-major-version 21) (< emacs-minor-version 4))) (format "Tramp 2.1.16 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version)))) "ok")))
40 (unless (string-match "\\`ok\\'" x) (error "%s" x))) 40 (unless (string-match "\\`ok\\'" x) (error "%s" x)))
41 41
42(provide 'trampver) 42(provide 'trampver)