tpeplt <tpeplt@gmail.com> writes:
1. You can save some steps in your debugging process, above, by using
the Emacs options ‘-Q’ (or ‘--quick’) or ‘-q’ (or ‘--no-init-file’).
These options tell Emacs not to load your Emacs initialization file
(‘.emacs’). (These options are described in the man page for Emacs.)
On my system, the ‘lucidasanstypewriter’ font is installed, but the
‘10x20’ font is not.
$ emacs -fn lucidasanstypewriter-24 &
works as expected.
Correction: I left out the ‘-q’ option in the command, above. It should
read:
$ emacs -q -fn lucidasanstypewriter-24 &
to avoid loading the ‘.emacs’ file.