mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-25 06:17:34 +00:00
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:
parent
7ec21af8f1
commit
6f29a0ca7b
1 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue