From eab9317546b5d7d7e66668a7cf1e77a4a69d052f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulrich=20M=C3=BCller?= Date: Tue, 6 Aug 2024 06:18:53 +0200 Subject: [PATCH] * doc/lispref/strings.texi (Text Comparison): Document 'string>'. --- doc/lispref/strings.texi | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 06094e45aad..36974b9e4b5 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -655,10 +655,14 @@ Text Comparison @code{string-lessp} is another name for @code{string<}. @end defun -@defun string-greaterp string1 string2 +@defun string> string1 string2 This function returns the result of comparing @var{string1} and @var{string2} in the opposite order, i.e., it is equivalent to calling -@code{(string-lessp @var{string2} @var{string1})}. +@code{(string< @var{string2} @var{string1})}. +@end defun + +@defun string-greaterp string1 string2 +@code{string-greaterp} is another name for @code{string>}. @end defun @cindex locale-dependent string comparison -- 2.45.2