Mercurial > emacs
changeset 111373:45e5b5974ddb
* net/trampver.el: Update release number.
This shall not be merged into the trunk.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Fri, 05 Nov 2010 21:52:50 +0100 |
parents | 0792cbcb42ed |
children | 81d85cc604d3 |
files | lisp/ChangeLog lisp/net/trampver.el |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Nov 05 14:28:19 2010 -0400 +++ b/lisp/ChangeLog Fri Nov 05 21:52:50 2010 +0100 @@ -1,3 +1,7 @@ +2010-11-05 Michael Albinus <michael.albinus@gmx.de> + + * net/trampver.el: Update release number. + 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
--- a/lisp/net/trampver.el Fri Nov 05 14:28:19 2010 -0400 +++ b/lisp/net/trampver.el Fri Nov 05 21:52:50 2010 +0100 @@ -30,14 +30,14 @@ ;; version check is defined in macro AC_EMACS_INFO of aclocal.m4; ;; should be changed only there. -(defconst tramp-version "2.1.20-pre" +(defconst tramp-version "2.1.20" "This version of Tramp.") (defconst tramp-bug-report-address "tramp-devel@gnu.org" "Email address to send bug reports to.") ;; Check for (X)Emacs version. -(let ((x (if (or (>= emacs-major-version 22) (and (featurep 'xemacs) (= emacs-major-version 21) (>= emacs-minor-version 4))) "ok" (format "Tramp 2.1.20-pre is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version))))))) +(let ((x (if (or (>= emacs-major-version 22) (and (featurep 'xemacs) (= emacs-major-version 21) (>= emacs-minor-version 4))) "ok" (format "Tramp 2.1.20 is not fit for %s" (when (string-match "^.*$" (emacs-version)) (match-string 0 (emacs-version))))))) (unless (string-match "\\`ok\\'" x) (error "%s" x))) (provide 'trampver)