Open DamienCassou opened 4 years ago
Hi,
"Batch mode" means to run Emacs with --batch
, which is described in its man page. It exits Emacs after running the functions and expressions given as arguments.
"Interactive" means the opposite: Emacs is launched normally, so the user can interact with it. This is helpful for testing a package manually in a clean configuration. (FYI, the Emacs frame's title bar is set to something useful, like makem.sh: sbuffer.el (sandbox: .sandbox/26.3)
).
It's hard to convey all of this in a concise usage message. :)
You could say that the concepts are the same as those described in Emacs manual and that --batch
requires passing additional arguments after --
whereas interactive mode opens a frame.
I'll consider that, but I want to keep the --usage
information as concise as possible. The user can always experiment to discover what the knobs do. :) Thanks.
Hi,
I found this part of
--help
a bit confusing:Does "interactive" mean that an Emacs window is opened? Is it killed at the end? In batch mode, is Emacs killed automatically at the end or does it stay open?