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

发布于 2024-10-18 03:48:25 字数 494 浏览 3 评论 0原文

我最近从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断肠人 2024-10-25 03:48:25

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

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

(设置帧大小(选定帧)90 60)

Weird. Looks like a bug.

Setting width and height together resolves the problem for me.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文