help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how to inhibit messages in message area: SOLVED


From: Friedrich Laher
Subject: Re: how to inhibit messages in message area: SOLVED
Date: Thu, 13 Oct 2005 19:13:55 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1

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))

reply via email to

[Prev in Thread] Current Thread [Next in Thread]