From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: code listp to determine wich os I'm running on Date: Sat, 01 Feb 2014 00:01:14 +0100 Message-ID: <87ppn792o5.fsf@thinkpad-t61.fritz.box> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1391209296 10369 80.91.229.3 (31 Jan 2014 23:01:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 31 Jan 2014 23:01:36 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Stefan Monnier Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Feb 01 00:01:43 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W9N5h-0004jR-Lz for geh-help-gnu-emacs@m.gmane.org; Sat, 01 Feb 2014 00:01:41 +0100 Original-Received: from localhost ([::1]:58756 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W9N5h-0006Ps-CT for geh-help-gnu-emacs@m.gmane.org; Fri, 31 Jan 2014 18:01:41 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34662) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W9N5T-0006Pe-Eh for help-gnu-emacs@gnu.org; Fri, 31 Jan 2014 18:01:32 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W9N5O-0006Ta-61 for help-gnu-emacs@gnu.org; Fri, 31 Jan 2014 18:01:27 -0500 Original-Received: from out4-smtp.messagingengine.com ([66.111.4.28]:54865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W9N5O-0006TW-2G for help-gnu-emacs@gnu.org; Fri, 31 Jan 2014 18:01:22 -0500 Original-Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id D0534207B3 for ; Fri, 31 Jan 2014 18:01:21 -0500 (EST) Original-Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Fri, 31 Jan 2014 18:01:21 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:cc:subject:references:date :in-reply-to:message-id:mime-version:content-type; s=smtpout; bh=cNOYaz2bMsiPAaAeU3nQ7LH4Hjs=; b=iJafRQ2pT7B4mczZ17TYn0FwEFo6 6HnszhO52GF7sXjqGNOzlL486bUd/RYJVW7GV32vllzsD3NZIaEQh2Xvj9AvNrwF ZjoRDs69/0GlazF42Kz7xTLshIS1zDHb11N2vXFXPPGI73vYlyh3PvOUp48rg+VN k3f4krcmvhPqwnw= X-Sasl-enc: VkKJNdXBC9OKnF/fBTraZbcckJ9krpLceaUncIMKL9vh 1391209281 Original-Received: from thinkpad-t61.fritz.box (unknown [95.88.145.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 43EDFC007AA; Fri, 31 Jan 2014 18:01:21 -0500 (EST) In-Reply-To: (Stefan Monnier's message of "Fri, 31 Jan 2014 08:28:36 -0500") User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.111.4.28 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:95856 Archived-At: Stefan Monnier writes: >> (message system-type) > > This should signal an error, since system-type is not a string and is > hence inappropriate for the first arg of message. > So, if you don't see any error message in your *Messages*, that means > this bit of code was not executed. And what you actually wanted do use is (message "Look mom, I'm running on %s!" system-type) Bye, Tassilo