From owner-freebsd-hackers@FreeBSD.ORG Fri Mar 24 11:43:16 2006 Return-Path: X-Original-To: freebsd-hackers@freebsd.org Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3FE116A424 for ; Fri, 24 Mar 2006 11:43:16 +0000 (UTC) (envelope-from joerg@britannica.bec.de) Received: from hydra.bec.de (www.ostsee-abc.de [62.206.222.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23B5843D5F for ; Fri, 24 Mar 2006 11:43:10 +0000 (GMT) (envelope-from joerg@britannica.bec.de) Received: from britannica.bec.de (unknown [139.30.252.72]) by hydra.bec.de (Postfix) with ESMTP id 4836135707 for ; Fri, 24 Mar 2006 12:43:09 +0100 (CET) Received: by britannica.bec.de (Postfix, from userid 1000) id 8A4456D10D; Fri, 24 Mar 2006 12:42:59 +0100 (CET) Date: Fri, 24 Mar 2006 12:42:59 +0100 From: joerg@britannica.bec.de To: freebsd-hackers@freebsd.org Message-ID: <20060324114259.GA5887@britannica.bec.de> Mail-Followup-To: freebsd-hackers@freebsd.org References: <20060324095220.49985.qmail@web31808.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060324095220.49985.qmail@web31808.mail.mud.yahoo.com> User-Agent: Mutt/1.5.11 Subject: Re: copy paste in freebsd X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Mar 2006 11:43:17 -0000 On Fri, Mar 24, 2006 at 01:52:20AM -0800, Divya B wrote: > Hi all, > > Here is the problem i am facing with freebsd. > > 1. copy some text from a file or any window > 2. close the file or window > 3. try pasting it in another place. > > Paste is not happening. Is freebsd lagging in this? Or have I missed something? X11 by design uses lazy C&P, e.g. the first application says "I have something for the clipboard" and second application requests it, when needed. This means no copying happens at all, when nothing is requested. It obviously fails, when the first application dies in the mean time. This is a design choice. Joerg