From 108710992d07bc17d7fa2751ad3ef3efaeb856b9 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 4 Jun 2026 09:25:21 +0300 Subject: [PATCH] ; * doc/misc/ert.texi (erts files): Improve example (bug#81154). --- doc/misc/ert.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/misc/ert.texi b/doc/misc/ert.texi index 458cccf3063..b08c62c06b6 100644 --- a/doc/misc/ert.texi +++ b/doc/misc/ert.texi @@ -933,8 +933,8 @@ that start with a space are part of the value). @example Name: foo -Code: (indent-region - (point-min) (point-max)) +Code: (lambda () + (indent-region (point-min) (point-max))) @end example @table @samp