Re: Emacs windows goes "under" the vertical taskbar when maximized

Raymond Zeitler <[email protected]>
Newsgroups gmane.emacs.windows
Message-ID <[email protected]>
Hi Joon:

I use this to set frame parameters:

(setq initial-frame-alist '((top . 0) (left . 0)
			    (width . 135) (height . 67)
			    (cursor-type . bar)
			    (font . "-outline-Bitstream Vera Sans Mono-normal-r-normal-normal-12-90-96-96-c-70-iso8859-1")))

Perhaps it will inspire a solution.

- Ray

-----Original Message-----


Date: Fri, 3 Jan 2014 11:37:19 +0900
From: Joon Ro <[email protected]>
To: "[email protected]" <[email protected]>
Subject: Re: [h-e-w] Emacs windows goes "under" the vertical taskbar
	when	maximized
Message-ID:
	<CABeq5B_aaCUuS9K+cm-9+K8WRTdn4tW9NYRZRw5Fjos5E-xQEg@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

-snip-

But then, I found the culprit. I have the following in my ``.emacs``:

```lisp
(add-hook 'after-make-frame-functions
  (if window-system
    (progn
        (cond ((eq system-type 'gnu/linux)
                 ;(set-face-attribute 'default nil :font "Inconsolata-g-10")
                 (setq initial-frame-alist '(
                   (font . "Monospace-11")
                 ))
                 (setq default-frame-alist '(
                   (font . "Monospace-11")
                 ))
                 (set-fontset-font "fontset-default" 'korean-ksc5601
"-unknown-NanumGothicCoding-normal-normal-normal-*-*-*-*-*-d-0-iso10646-1"))
              ((eq system-type 'windows-nt)
               (progn
                 (set-face-attribute 'default nil :font "Consolas 13")
                 ))
        )
        )))
```

And when I take this out, maximization works as expected. How should I
change this so I can have default font set without?

Best,
Joon
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.