From: Stefan Kangas <stefankangas@gmail.com>
To: Toomas Rosin <toomas@rosin.ee>, martin rudalics <rudalics@gmx.at>
Cc: Eli Zaretskii <eliz@gnu.org>, 74866@debbugs.gnu.org
Subject: bug#74866: 29.4; fit-frame-to-window + no vertical scroll bar + ch
Date: Tue, 17 Dec 2024 13:07:10 +0000 [thread overview]
Message-ID: <CADwFkm=-HhE-N0sk9HnocSBOM-pMzes8mU9+sn_Lrf24eV1LXA@mail.gmail.com> (raw)
In-Reply-To: <20241214210901.14730@toomas>
Toomas Rosin <toomas@rosin.ee> writes:
> Thank you, this got the damn thing working for me. As the lines about
> vertical scroll bars and font size were from my init.el, I was loath to
> clutter my function with them and hoped to get away with only adding the
> `vertical-scroll-bars' item to the `frame-attributes' arg of
> `make-frame'. And indeed, this worked. So the final form of my MWM
> looks like this:
>
> ;;; init.el:
> (setq-default vertical-scroll-bar nil)
> (set-face-attribute 'default nil :height 75)
>
> ;;; main code:
> (defun fit (lin col)
> "Fit some text (LIN lines and COL columns) into a newly created frame."
> (interactive)
> (let ((buf (get-buffer-create "*foo*"))
> (frm (make-frame
> `((z-group . above)
> (vertical-scroll-bars . ,vertical-scroll-bar)))))
> (with-current-buffer buf
> (erase-buffer)
> (setq mode-line-format '(""))
> (dotimes (_ lin) (insert (format "%s\n" (make-string col ?x))))
> (goto-char (point-min)))
> (with-selected-frame frm
> (switch-to-buffer buf)
> (fit-frame-to-buffer))))
>
> Cheers, T.
So is there a bug here?
next prev parent reply other threads:[~2024-12-17 13:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-14 12:57 bug#74866: 29.4; fit-frame-to-window + no vertical scroll bar + changed face height = mess toomas
2024-12-14 13:26 ` Eli Zaretskii
2024-12-14 17:16 ` martin rudalics via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-12-14 19:09 ` bug#74866: 29.4; fit-frame-to-window + no vertical scroll bar + ch Toomas Rosin
2024-12-17 13:07 ` Stefan Kangas [this message]
2024-12-17 13:15 ` Toomas Rosin
2024-12-18 10:05 ` martin rudalics via Bug reports for GNU Emacs, the Swiss army knife of text editors
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CADwFkm=-HhE-N0sk9HnocSBOM-pMzes8mU9+sn_Lrf24eV1LXA@mail.gmail.com' \
--to=stefankangas@gmail.com \
--cc=74866@debbugs.gnu.org \
--cc=eliz@gnu.org \
--cc=rudalics@gmx.at \
--cc=toomas@rosin.ee \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.