2

我最近从 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 中的每一行,但文件的余额似乎在初始化时正常评估。

(操作系统 = Windows Vista)

4

1 回答 1

3

诡异的。看起来像一个错误。

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

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

于 2011-02-20T19:47:58.457 回答