[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Defining functions within `condition-case'
From: |
Michael Heerdegen |
Subject: |
Re: Defining functions within `condition-case' |
Date: |
Fri, 27 Dec 2024 00:22:54 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Jean Louis <bugs@gnu.support> writes:
> Is there way to replace debug reporting function?
You will be using batch mode for your use case? Then first I'd look at
(info "(elisp) Batch Mode")
if you not have yet.
Errors typically make your program stop unless they are handled. If you
don't want to get error messages printed to the usual place, we get into
the realm of output streams I think. For this see
(info "(elisp) Read and Print")
and
(info "(elisp) Output Streams")
in particular.
HTH,
Michael.