From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.bugs Subject: Re: set-frame-position fails Date: Sun, 19 Mar 2006 04:09:45 -0500 Message-ID: References: <20060315212509.GA6248@efault.net> <20060317143157.GA19845@inaccessnetworks.com> <20060318133321.GA28816@efault.net> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1142881009 25048 80.91.229.2 (20 Mar 2006 18:56:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 20 Mar 2006 18:56:49 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Mar 20 19:56:47 2006 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FLPYR-0001Vn-TR for geb-bug-gnu-emacs@m.gmane.org; Mon, 20 Mar 2006 19:56:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FLPYS-000403-07 for geb-bug-gnu-emacs@m.gmane.org; Mon, 20 Mar 2006 13:56:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FKtv0-0006cV-MM for bug-gnu-emacs@gnu.org; Sun, 19 Mar 2006 04:09:46 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FKtuz-0006cB-V5 for bug-gnu-emacs@gnu.org; Sun, 19 Mar 2006 04:09:46 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FKtuz-0006c6-OY for bug-gnu-emacs@gnu.org; Sun, 19 Mar 2006 04:09:45 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FKu0I-0003zP-38 for bug-gnu-emacs@gnu.org; Sun, 19 Mar 2006 04:15:14 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FKtuz-0003vt-0I; Sun, 19 Mar 2006 04:09:45 -0500 Original-To: Nick Patavalis In-reply-to: <20060318133321.GA28816@efault.net> (message from Nick Patavalis on Sat, 18 Mar 2006 15:33:22 +0200) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:14976 Archived-At: Even when I set the "user-position" frame parameter, I still cannot move the frame, and have it "stay" at the new position. All the following fail in the same manner: (modify-frame-parameters (selected-frame) '((top . 10) (left . 100) (user-position . t))) (modify-frame-parameters (selected-frame) '((top . 10) (left . 100) (user-position . nil))) (set-frame-position (selected-frame) 10 100) Shouldn't one of them work? Yes, something here must be a bug.