From f52d79500b2c78ad888691684de7e40cb7483df8 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 1 Dec 2017 21:56:31 +0200 Subject: [PATCH] Fix a typo in ELisp manual * doc/lispref/sequences.texi (Sequence Functions): Fix the example of using 'seq-uniq'. (Bug#29524) --- doc/lispref/sequences.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 5ae1567c128..4fba880803e 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi @@ -853,7 +853,7 @@ it is a function of two arguments to use instead of the default @code{equal}. @end group @group (seq-uniq '(1 2 2.0 1.0) #'=) -@result{} [3 4] +@result{} [1 2] @end group @end example @end defun -- 2.39.2