简体   繁体   中英

OS X Yosemite - no styles at emacs welcome screen

I have been installed emacs 25.1 on OS X Yosemite.

brew cask install emacs

Welcome screen looks like:

在此处输入图片说明

But must be similar to

在此处输入图片说明

So no styles, no pictures.

What am I missing?

UPDATE:

brew install emacs --with-cocoa

Gives the same result.

This behaviour appears to be triggered by the size of the start up screen.

Making the initial start up screen bigger triggers the "fancy splash screen" for me:

emacs -geometry 80x48

Or instead add something to the .emacs file...

;; initial window
(setq initial-frame-alist
 '((width . 202) ; character
  (height . 60) ; lines
 ))

;; default/subsequent window
(setq default-frame-alist
 '((width . 202) ; character
  (height . 60) ; lines
))

(See https://www.emacswiki.org/emacs/FrameSize for more details.)

Alternatively, adjust the function which decides what kind of start up screen to display as described here: https://emacs.stackexchange.com/questions/20976/x11-why-is-the-emacs-logo-image-missing-on-the-welcome-screen

尝试brew install emacs --with-cocoabrew info emacs以获得更多选项),或点击默认生成Cocoa版本的其他公式,例如emacs-plus

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM