From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: (featurep 'multi-tty) => t on Windows Date: Wed, 3 Dec 2008 13:54:05 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1228308862 14629 80.91.229.12 (3 Dec 2008 12:54:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 3 Dec 2008 12:54:22 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 03 13:55:26 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 1L7rGH-0005kK-Dz for ged-emacs-devel@m.gmane.org; Wed, 03 Dec 2008 13:55:25 +0100 Original-Received: from localhost ([127.0.0.1]:47724 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L7rF6-0003Vt-DP for ged-emacs-devel@m.gmane.org; Wed, 03 Dec 2008 07:54:12 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L7rF1-0003VW-Fk for emacs-devel@gnu.org; Wed, 03 Dec 2008 07:54:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L7rF1-0003VF-1b for emacs-devel@gnu.org; Wed, 03 Dec 2008 07:54:07 -0500 Original-Received: from [199.232.76.173] (port=39946 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L7rF0-0003VB-Tm for emacs-devel@gnu.org; Wed, 03 Dec 2008 07:54:06 -0500 Original-Received: from yx-out-1718.google.com ([74.125.44.153]:17399) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L7rF0-0006Ej-Gy for emacs-devel@gnu.org; Wed, 03 Dec 2008 07:54:06 -0500 Original-Received: by yx-out-1718.google.com with SMTP id 34so3257317yxf.66 for ; Wed, 03 Dec 2008 04:54:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=FrfuVP1A69Uo/gjHGp0aLrdEzJY92lZh9DkdVun2144=; b=ELGY9ln29t/ecEoK5fnVtVF+nT6JxYnc1FHfvAr4LCgjAWsU50fehfPr+y7roXgP6Y p/9UqEhr5uIEsvxERiABS46DSfLofbYiYlnQE+uL09Oh9d+YHLtQQVsDTfNuYk+72YtX AZh3LJW0QiqWxj3Jf1ciYJ5UzXLVBW8phVFIg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=kXmwlkerUnpP0afuQmoIL3GLkc1WRTZ7xz+kImZGxET+WQf2RfM564qLYcV/ed9m4x sfF8adbqeG04xFc1R6o+OPdx1B/uIBr9Kn43EnWeuqnjAtiehYLG+xbqTQFAHT32kV68 LLOdqv0PxYckWbZc+aKhOcD6bVNABykJpFY3A= Original-Received: by 10.100.212.5 with SMTP id k5mr7586242ang.48.1228308845949; Wed, 03 Dec 2008 04:54:05 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Wed, 3 Dec 2008 04:54:05 -0800 (PST) Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:106515 Archived-At: >From etc/NEWS: *** Emacs now supports using both X displays and ttys in one session. With an Emacs server active (M-x server-start), `emacsclient -t' creates a tty frame connected to the running emacs server. You can use any number of different ttys. `emacsclient -c' creates a new X11 frame on the current $DISPLAY (or a tty frame if $DISPLAY is not set). You can test for the presence of this feature in your Lisp code by testing for the `multi-tty' feature. Currently, (featurep 'multi-tty) returns t in the Windows (NT_GUI) port. Should it? Juanma