]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/trampver.el: Update release number.
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 14 Jan 2008 19:42:14 +0000 (19:42 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 14 Jan 2008 19:42:14 +0000 (19:42 +0000)
doc/misc/tramp.texi
lisp/ChangeLog
lisp/net/trampver.el

index d1acafefa036da69af1ecb3e97f6479a5320bca2..87164bfce31c88b14b1caf543bc0c7f504dedc9c 100644 (file)
@@ -39,7 +39,7 @@
 
 @copying
 Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-2007 Free Software Foundation, Inc.
+2007, 2008 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
index 55679706effbf563878097946765a1133057e410..fc0b5e4d634e90d5cdfd1badd41d5755029a8a12 100644 (file)
@@ -1,3 +1,10 @@
+2008-01-14  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
+       instead of `tramp-file-name-real-host'.
+
+       * net/trampver.el: Update release number.
+
 2008-01-14  Alan Mackenzie  <acm@muc.de>
 
        * progmodes/cc-engine.el (c-guess-basic-syntax): prevent a macro
index 689987faff4967a8dd0e20e5278ae380570b135d..4a5525bd0faa9c0b6284ef1b0ba04c9eed503eaf 100644 (file)
@@ -2,7 +2,8 @@
 ;;; -*- mode: Emacs-Lisp; coding: utf-8; -*-
 ;;; lisp/trampver.el.  Generated from trampver.el.in by configure.
 
-;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 2003, 2004, 2005, 2006, 2007,
+;;   2008 Free Software Foundation, Inc.
 
 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
 ;; Keywords: comm, processes
 ;; "autoconf && ./configure" to change them.  (X)Emacs version check is defined
 ;; in macro AC_EMACS_INFO of aclocal.m4; should be changed only there.
 
-(defconst tramp-version "2.1.12"
+(defconst tramp-version "2.1.13-pre"
   "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 21)    (and (featurep 'xemacs)      (< emacs-minor-version 4)))    (format "Tramp 2.1.12 is not fit for %s"        (when (string-match "^.*$" (emacs-version))       (match-string 0 (emacs-version))))    "ok")))
+(let ((x (if (or (< emacs-major-version 21)    (and (featurep 'xemacs)      (< emacs-minor-version 4)))    (format "Tramp 2.1.13-pre is not fit for %s"            (when (string-match "^.*$" (emacs-version))       (match-string 0 (emacs-version))))    "ok")))
   (unless (string-match "\\`ok\\'" x) (error "%s" x)))
 
 (provide 'trampver)