diff options
| author | Michael Albinus | 2009-11-08 10:45:22 +0000 |
|---|---|---|
| committer | Michael Albinus | 2009-11-08 10:45:22 +0000 |
| commit | e824431077fcab5a2d577197c3758f91970acd94 (patch) | |
| tree | 799f1c40c5151cd21e403f68ac8b1f372b16335a /lisp | |
| parent | 191bb792fb4bb1fcff4c1b613e0dd9a36dc1ac6b (diff) | |
| download | emacs-e824431077fcab5a2d577197c3758f91970acd94.tar.gz emacs-e824431077fcab5a2d577197c3758f91970acd94.zip | |
* net/trampver.el: Update release number.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | lisp/net/trampver.el | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c150a2084d8..aa45dbc1c68 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2009-11-08 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-advice-make-auto-save-file-name) | ||
| 4 | (tramp-advice-file-expand-wildcards): Unload via | ||
| 5 | `ad-remove-advice'. | ||
| 6 | |||
| 7 | * net/trampver.el: Update release number. | ||
| 8 | |||
| 9 | 2009-11-08 Kevin Ryde <user42@zip.com.au> | ||
| 10 | |||
| 11 | * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on | ||
| 12 | `ad-do-it'. | ||
| 13 | |||
| 14 | 2009-11-08 Andr <m00naticus@gmail.com> (tiny change) | ||
| 15 | |||
| 16 | * net/tramp.el (tramp-handle-write-region): Copy but rename temp file, | ||
| 17 | in order to keep context in SELinux. | ||
| 18 | |||
| 1 | 2009-11-08 Chong Yidong <cyd@stupidchicken.com> | 19 | 2009-11-08 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 20 | ||
| 3 | * dired-aux.el (dired-query): Place cursor in echo area and allow | 21 | * dired-aux.el (dired-query): Place cursor in echo area and allow |
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el index 2a373a1a7d4..aa48e3004af 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.17" | 32 | (defconst tramp-version "2.1.18-pre" |
| 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-major-version 21) (< emacs-minor-version 4))) (format "Tramp 2.1.17 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.18-pre 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) |