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)
This commit is contained in:
Eli Zaretskii 2026-02-21 16:46:44 +02:00
parent 7ec21af8f1
commit 6f29a0ca7b

View file

@ -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