From 6f29a0ca7b179f2fa909bd27de69aa113ceab01e Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 21 Feb 2026 16:46:44 +0200 Subject: [PATCH] Adapt ELisp Intro manual to recent changes in Emacs * doc/lispintro/emacs-lisp-intro.texi (Effect of installation): Fix example. (Bug#80442) (Review): Adapt to recent Emacs. (Bug#80447) --- doc/lispintro/emacs-lisp-intro.texi | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 80d1ae3ca5d..750c8dd2766 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -3193,7 +3193,7 @@ function, @code{multiply-by-seven}. When you do this, a @smallexample @group -multiply-by-seven is a Lisp function. +multiply-by-seven is an interpreted-function. (multiply-by-seven NUMBER) @@ -4559,8 +4559,10 @@ An empty string, @samp{""}, a string with no characters in it, is smaller than any string of characters. @code{string-equal} provides the corresponding test for equality. Its -shorter, alternative name is @code{string=}. There are no string test -functions that correspond to @var{>}, @code{>=}, or @code{<=}. +shorter, alternative name is @code{string=}. Recent versions of Emacs +added @code{string-greaterp} with @code{string>} as its shorter +alternative. There are no string test functions that correspond to +@code{>=} or @code{<=}. @item message Print a message in the echo area. The first argument is a string that