.emacs 中的 set-frame-height 没有任何效果
我最近从 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)
This Works with 20.7.1, but not not 23.2 我已经使用 -debug-init 运行,并且 .emacs 文件没有出现错误。
如果我在缓冲区和 eval-region 中选择 .emacs 文件的前三行,则窗口将移动到第 3 行中的位置,并且宽度设置为 90。如果我再次 eval-region,高度将设置为 60。
虽然我没有测试 .emacs 中的所有其他行,但文件的余额似乎在初始化时正常评估。
(操作系统 = Windows Vista)
I recently updated from GNU Emacs 20.7.1 to 23.2 (Yeah, I'm a little slow changing.)
My .emacs begins with
(set-frame-height (selected-frame) 60)
(set-frame-width (selected-frame) 90)
(set-frame-position (selected-frame) 50 20)
This works with 20.7.1, but not 23.2
I've run with -debug-init and get no errors for my .emacs file.
If I select the first three lines of the .emacs file in a buffer and eval-region, the window moves to the location in line 3 and width is set to 90. If I eval-region again, the height is set to 60.
While I haven't tested every other line in the .emacs, it appears that the balance of the file evaluates normally at init time.
(OS = Windows Vista)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诡异的。看起来像一个错误。
将宽度和高度一起设置可以解决我的问题。
(设置帧大小(选定帧)90 60)
Weird. Looks like a bug.
Setting width and height together resolves the problem for me.
(set-frame-size (selected-frame) 90 60)