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

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

how to inhibit messages in message area


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

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.

(defun gi(ev) (interactive "e")
       (mouse-set-point ev)
       (beginning-of-line)
       (search-forward ":")
       (x-set-selection 'PRIMARY
      (buffer-substring-no-properties
            (point)
        (progn (end-of-line) (point) )
       )  )
)
(setq toSelMp (make-sparse-keymap))

(define-key toSelMp [mouse-3] 'gi)

(find-file (nth 3 command-line-args))
(auto-save-mode -1)

(goto-char 1)
(while  (not (looking-at ";;") )
    (put-text-property
        (point)
        (progn (end-of-line) (point))
        'local-map toSelMp
    )
    (forward-line 1)
)
(setq buffer-read-only t) (set-buffer-modified-p nil)

(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]