From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Friedrich Laher Newsgroups: gmane.emacs.help Subject: Re: how to inhibit messages in message area: SOLVED Date: Thu, 13 Oct 2005 19:13:55 +0200 Message-ID: <434E95D3.2070902@schmieder-laher.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1279780132==" X-Trace: sea.gmane.org 1129223940 1750 80.91.229.2 (13 Oct 2005 17:19:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 13 Oct 2005 17:19:00 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 13 19:18:57 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EQ6gp-0005Os-Uj for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Oct 2005 19:16:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EQ6gp-0002zo-A3 for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Oct 2005 13:16:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EQ6gS-0002y6-Oc for help-gnu-emacs@gnu.org; Thu, 13 Oct 2005 13:16:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EQ6gR-0002xh-32 for help-gnu-emacs@gnu.org; Thu, 13 Oct 2005 13:16:00 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EQ6gQ-0002xe-TX for help-gnu-emacs@gnu.org; Thu, 13 Oct 2005 13:15:58 -0400 Original-Received: from [212.227.126.187] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EQ6gQ-0005iU-Kp for help-gnu-emacs@gnu.org; Thu, 13 Oct 2005 13:15:58 -0400 Original-Received: from p54A1A5DD.dip0.t-ipconnect.de [84.161.165.221] (helo=schmieder-laher.de) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0ML29c-1EQ6gP0xmV-00005d; Thu, 13 Oct 2005 19:15:57 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 X-Accept-Language: en-us, en Original-To: help-gnu-emacs@gnu.org X-Provags-ID: kundenserver.de abuse@kundenserver.de login:d0a55953dfb65f372f82ef4b3cf5b37b X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:30208 Archived-At: This is a multi-part message in MIME format. --===============1279780132== Content-Type: multipart/alternative; boundary="------------080409060409000504020003" This is a multi-part message in MIME format. --------------080409060409000504020003 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I SOLVED IT : just redefinfe function message as empty - that is (defun message() ) ----------------------------------- is there no way to inhibit, espescialle the message Loading mwheel...done to popup an allready iconified frame ? the following code works fine, and one sees the initial frame disapearing but only for a short time and then it reapears. : : : (find-file (nth 3 command-line-args)) (auto-save-mode -1) : : (setq of (next-frame) ) (setq nf (make-frame '( (minibuffer . nil) (height . 13) (width . 59) ) ) ) (select-frame nf) (set-frame-font "-Adobe-Courier-Medium-R-Normal--24-240-75-75-M-150-ISO8859-9" ) (split-window-horizontally) (follow-mode t) (scroll-bar-mode -1)(tool-bar-mode -1)(menu-bar-mode -1) (goto-char 1) (select-frame of) (iconify-or-deiconify-frame) (select-frame nf) the same happens if "iconify" is replaced by (modify-frame-parameters of '((visibility . nil)) --------------080409060409000504020003 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit I SOLVED IT : just redefinfe function message as empty - that is (defun message() )
-----------------------------------
is there no way to inhibit,
espescialle the message

Loading mwheel...done

to popup an allready iconified  frame  ?

the following code works fine, and one sees the initial frame disapearing
but only for a short time and then it reapears.
:
:
:

(find-file (nth 3 command-line-args))
(auto-save-mode -1)
:
:
(setq of (next-frame) )

(setq nf (make-frame '( (minibuffer . nil)
                        (height     . 13)
                        (width      . 59)
)        )            )
(select-frame nf)
(set-frame-font
"-Adobe-Courier-Medium-R-Normal--24-240-75-75-M-150-ISO8859-9"
)
(split-window-horizontally)
(follow-mode t)
(scroll-bar-mode -1)(tool-bar-mode -1)(menu-bar-mode -1)
(goto-char 1)
(select-frame of)
(iconify-or-deiconify-frame)
(select-frame nf)


the same happens if "iconify" is replaced by (modify-frame-parameters of '((visibility . nil))
--------------080409060409000504020003-- --===============1279780132== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnu-emacs --===============1279780132==--