.emacs中的set-frame-height没有任何效果

时间:2011-02-20 06:01:41

标签: debugging emacs dot-emacs

我最近从GNU Emacs 20.7.1更新到23.2(是的,我的变化有点慢。) 我的.emacs以

开头
 (set-frame-height (selected-frame) 60)  
 (set-frame-width (selected-frame) 90)  
 (set-frame-position (selected-frame) 50 20)

这适用于20.7.1,但不适用于23.2 我使用-debug-init运行并且我的.emacs文件没有错误。

如果我在缓冲区和eval-region中选择.emacs文件的前三行,则窗口移动到第3行的位置,宽度设置为90.如果我再次使用eval-region,则设置高度到60岁。

虽然我没有测试.emacs中的所有其他行,但似乎文件的余额在初始时正常评估。

(OS = Windows Vista)

1 个答案:

答案 0 :(得分:1)

怪异。看起来像个bug。

一起设置宽度和高度可以解决我的问题。

(set-frame-size (selected-frame) 90 60)