diff options
| author | Robert J. Chassell | 2001-12-17 19:03:15 +0000 |
|---|---|---|
| committer | Robert J. Chassell | 2001-12-17 19:03:15 +0000 |
| commit | 1dcb89ad003a1fb631101e28c65aaffdc6d65b8a (patch) | |
| tree | 92ed2e4f62f519b0ed608a8d9edc5db7468875b7 | |
| parent | 41a31e595abb845947801c806fc1b4aa191b367f (diff) | |
| download | emacs-1dcb89ad003a1fb631101e28c65aaffdc6d65b8a.tar.gz emacs-1dcb89ad003a1fb631101e28c65aaffdc6d65b8a.zip | |
Define `empty string' a second time, in a slightly more visible location.
| -rw-r--r-- | lispintro/emacs-lisp-intro.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 8807f5439e8..d24ce67239c 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi | |||
| @@ -21,8 +21,8 @@ | |||
| 21 | 21 | ||
| 22 | @comment %**end of header | 22 | @comment %**end of header |
| 23 | 23 | ||
| 24 | @set edition-number 2.03 | 24 | @set edition-number 2.04 |
| 25 | @set update-date 2001 Dec 7 | 25 | @set update-date 2001 Dec 17 |
| 26 | 26 | ||
| 27 | @ignore | 27 | @ignore |
| 28 | ## Summary of shell commands to create various output formats: | 28 | ## Summary of shell commands to create various output formats: |
| @@ -4517,6 +4517,9 @@ The arguments to @code{string-lessp} must be strings or symbols; the | |||
| 4517 | ordering is lexicographic, so case is significant. The print names of | 4517 | ordering is lexicographic, so case is significant. The print names of |
| 4518 | symbols are used instead of the symbols themselves. | 4518 | symbols are used instead of the symbols themselves. |
| 4519 | 4519 | ||
| 4520 | An empty string, @samp{""}, a string with no characters in it, is | ||
| 4521 | smaller than any string of characters. | ||
| 4522 | |||
| 4520 | @code{string-equal} provides the corresponding test for equality. Its | 4523 | @code{string-equal} provides the corresponding test for equality. Its |
| 4521 | shorter, alternative name is @code{string=}. There are no string test | 4524 | shorter, alternative name is @code{string=}. There are no string test |
| 4522 | functions that correspond to @var{>}, @code{>=}, or @code{<=}. | 4525 | functions that correspond to @var{>}, @code{>=}, or @code{<=}. |