emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lispref/lists.texi,v


From: Nick Roberts
Subject: [Emacs-diffs] Changes to emacs/lispref/lists.texi,v
Date: Sun, 22 Oct 2006 22:51:11 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Nick Roberts <nickrob>  06/10/22 22:51:10

Index: lists.texi
===================================================================
RCS file: /sources/emacs/emacs/lispref/lists.texi,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -b -r1.64 -r1.65
--- lists.texi  10 Oct 2006 16:11:57 -0000      1.64
+++ lists.texi  22 Oct 2006 22:51:10 -0000      1.65
@@ -1396,7 +1396,7 @@
 @end defun
 
 @defun memql object list
-The function @code{member} tests to see whether @var{object} is a member
+The function @code{memql} tests to see whether @var{object} is a member
 of @var{list}, comparing members with @var{object} using @code{eql},
 so floating point elements are compared by value.
 If @var{object} is a member, @code{memql} returns a list starting with
@@ -1406,11 +1406,11 @@
 
 @example
 @group
-(memql 1.2 '(1.1 1.2 1.3)  ; @address@hidden and @code{1.2} are @code{eql}.}
+(memql 1.2 '(1.1 1.2 1.3))  ; @address@hidden and @code{1.2} are @code{eql}.}
      @result{} (1.2 1.3)
 @end group
 @group
-(memq 1.2 '(1.1 1.2 1.3)  ; @address@hidden and @code{1.2} are not @code{eq}.}
+(memq 1.2 '(1.1 1.2 1.3))  ; @address@hidden and @code{1.2} are not @code{eq}.}
      @result{} nil
 @end group
 @end example




reply via email to

[Prev in Thread] Current Thread [Next in Thread]