From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ulrich Mueller Newsgroups: gmane.emacs.devel Subject: Recent change in tramp.el makes byte-compilation fail Date: Tue, 9 Dec 2008 17:46:02 +0100 Message-ID: <18750.41162.837399.416146@a1i15.kph.uni-mainz.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1228841205 9185 80.91.229.12 (9 Dec 2008 16:46:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Dec 2008 16:46:45 +0000 (UTC) Cc: Stelian Ionescu , emacs@gentoo.org, emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 09 17:47:48 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LA5kH-0007qs-Np for ged-emacs-devel@m.gmane.org; Tue, 09 Dec 2008 17:47:37 +0100 Original-Received: from localhost ([127.0.0.1]:41854 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LA5j6-0000xX-OI for ged-emacs-devel@m.gmane.org; Tue, 09 Dec 2008 11:46:24 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LA5j1-0000wT-41 for emacs-devel@gnu.org; Tue, 09 Dec 2008 11:46:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LA5iz-0000uy-Ly for emacs-devel@gnu.org; Tue, 09 Dec 2008 11:46:18 -0500 Original-Received: from [199.232.76.173] (port=43077 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LA5iz-0000un-FQ for emacs-devel@gnu.org; Tue, 09 Dec 2008 11:46:17 -0500 Original-Received: from a1iwww1.kph.uni-mainz.de ([134.93.134.1]:60568) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LA5iy-0007Io-Tz for emacs-devel@gnu.org; Tue, 09 Dec 2008 11:46:17 -0500 Original-Received: from a1i15.kph.uni-mainz.de (a1i15.kph.uni-mainz.de [134.93.134.92]) by a1iwww1.kph.uni-mainz.de (8.14.0/8.13.4) with ESMTP id mB9Gk4EA029560; Tue, 9 Dec 2008 17:46:04 +0100 Original-Received: from a1i15.kph.uni-mainz.de (localhost [127.0.0.1]) by a1i15.kph.uni-mainz.de (8.14.2/8.13.4) with ESMTP id mB9Gk4jq025959; Tue, 9 Dec 2008 17:46:04 +0100 Original-Received: (from ulm@localhost) by a1i15.kph.uni-mainz.de (8.14.2/8.14.2/Submit) id mB9Gk4kn025953; Tue, 9 Dec 2008 17:46:04 +0100 X-Mailer: VM 8.0.9 under Emacs 22.3.1 (i686-pc-linux-gnu) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:106717 Archived-At: Hi Michael, looks like the following change: 2008-12-04 Michael Albinus * net/tramp.el (top): Write a message, when loading Tramp. makes byte-compilation of files that require tramp fail. To reproduce: $ cat test.el (require 'tramp) $ emacs -batch -q --no-site-file -f batch-byte-compile test.el Loading tramp... In toplevel form: test.el:1:1:Error: Wrong type argument: stringp, nil $ Ulrich