I'm using the Edwin editor with MIT-scheme, and because the default font size is so small, I do M-x set-font
and then choose
-adobe-courier-bold-r-normal--24-240-75-75-m-150-iso8859-1
to make the font bigger. This works fine, but when I try to put
(set-font "-adobe-courier-bold-r-normal--24-240-75-75-m-150-iso8859-1")
in my ~/.edwin
, it complains about Unbound variable: set-font
.
In emacs, interactive functions from M-x
can usually be straightforwardly called programmatically in Elisp, but apparently not so here. I tried reading more about how to customize Edwin by looking at the manual with `info mit-scheme-user', but the Edwin chapter specifically says
This manual does not discuss customization of Edwin.
How do I call set-font
programmatically?