diff options
| author | Glenn Morris | 2011-02-09 21:07:32 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-09 21:07:32 -0800 |
| commit | 86361e1edcf4ae6a602a32ee32dba16a3470f407 (patch) | |
| tree | 22e398efb877ced58c62669f763d0644ec589103 | |
| parent | dc4c6a7add965cbe7d0b9a357f9403defa96c0da (diff) | |
| download | emacs-86361e1edcf4ae6a602a32ee32dba16a3470f407.tar.gz emacs-86361e1edcf4ae6a602a32ee32dba16a3470f407.zip | |
cl-seq.el doc fixes.
* lisp/emacs-lisp/cl-seq.el (union, nunion, intersection)
(nintersection, set-difference, nset-difference)
(set-exclusive-or, nset-exclusive-or): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-seq.el | 16 |
2 files changed, 12 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d460219db0..852a73735f6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-02-10 Glenn Morris <rgm@gnu.org> | 1 | 2011-02-10 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/cl-seq.el (union, nunion, intersection) | ||
| 4 | (nintersection, set-difference, nset-difference) | ||
| 5 | (set-exclusive-or, nset-exclusive-or): Doc fix. | ||
| 6 | |||
| 3 | * ediff-ptch.el (ediff-fixup-patch-map): Doc fix. | 7 | * ediff-ptch.el (ediff-fixup-patch-map): Doc fix. |
| 4 | 8 | ||
| 5 | 2011-02-08 Glenn Morris <rgm@gnu.org> | 9 | 2011-02-08 Glenn Morris <rgm@gnu.org> |
diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el index cb1730eff73..250110528d9 100644 --- a/lisp/emacs-lisp/cl-seq.el +++ b/lisp/emacs-lisp/cl-seq.el | |||
| @@ -772,7 +772,7 @@ Return the sublist of LIST whose car matches. | |||
| 772 | ;;;###autoload | 772 | ;;;###autoload |
| 773 | (defun union (cl-list1 cl-list2 &rest cl-keys) | 773 | (defun union (cl-list1 cl-list2 &rest cl-keys) |
| 774 | "Combine LIST1 and LIST2 using a set-union operation. | 774 | "Combine LIST1 and LIST2 using a set-union operation. |
| 775 | The result list contains all items that appear in either LIST1 or LIST2. | 775 | The resulting list contains all items that appear in either LIST1 or LIST2. |
| 776 | This is a non-destructive function; it makes a copy of the data if necessary | 776 | This is a non-destructive function; it makes a copy of the data if necessary |
| 777 | to avoid corrupting the original LIST1 and LIST2. | 777 | to avoid corrupting the original LIST1 and LIST2. |
| 778 | \nKeywords supported: :test :test-not :key | 778 | \nKeywords supported: :test :test-not :key |
| @@ -793,7 +793,7 @@ to avoid corrupting the original LIST1 and LIST2. | |||
| 793 | ;;;###autoload | 793 | ;;;###autoload |
| 794 | (defun nunion (cl-list1 cl-list2 &rest cl-keys) | 794 | (defun nunion (cl-list1 cl-list2 &rest cl-keys) |
| 795 | "Combine LIST1 and LIST2 using a set-union operation. | 795 | "Combine LIST1 and LIST2 using a set-union operation. |
| 796 | The result list contains all items that appear in either LIST1 or LIST2. | 796 | The resulting list contains all items that appear in either LIST1 or LIST2. |
| 797 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 797 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 798 | whenever possible. | 798 | whenever possible. |
| 799 | \nKeywords supported: :test :test-not :key | 799 | \nKeywords supported: :test :test-not :key |
| @@ -804,7 +804,7 @@ whenever possible. | |||
| 804 | ;;;###autoload | 804 | ;;;###autoload |
| 805 | (defun intersection (cl-list1 cl-list2 &rest cl-keys) | 805 | (defun intersection (cl-list1 cl-list2 &rest cl-keys) |
| 806 | "Combine LIST1 and LIST2 using a set-intersection operation. | 806 | "Combine LIST1 and LIST2 using a set-intersection operation. |
| 807 | The result list contains all items that appear in both LIST1 and LIST2. | 807 | The resulting list contains all items that appear in both LIST1 and LIST2. |
| 808 | This is a non-destructive function; it makes a copy of the data if necessary | 808 | This is a non-destructive function; it makes a copy of the data if necessary |
| 809 | to avoid corrupting the original LIST1 and LIST2. | 809 | to avoid corrupting the original LIST1 and LIST2. |
| 810 | \nKeywords supported: :test :test-not :key | 810 | \nKeywords supported: :test :test-not :key |
| @@ -827,7 +827,7 @@ to avoid corrupting the original LIST1 and LIST2. | |||
| 827 | ;;;###autoload | 827 | ;;;###autoload |
| 828 | (defun nintersection (cl-list1 cl-list2 &rest cl-keys) | 828 | (defun nintersection (cl-list1 cl-list2 &rest cl-keys) |
| 829 | "Combine LIST1 and LIST2 using a set-intersection operation. | 829 | "Combine LIST1 and LIST2 using a set-intersection operation. |
| 830 | The result list contains all items that appear in both LIST1 and LIST2. | 830 | The resulting list contains all items that appear in both LIST1 and LIST2. |
| 831 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 831 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 832 | whenever possible. | 832 | whenever possible. |
| 833 | \nKeywords supported: :test :test-not :key | 833 | \nKeywords supported: :test :test-not :key |
| @@ -837,7 +837,7 @@ whenever possible. | |||
| 837 | ;;;###autoload | 837 | ;;;###autoload |
| 838 | (defun set-difference (cl-list1 cl-list2 &rest cl-keys) | 838 | (defun set-difference (cl-list1 cl-list2 &rest cl-keys) |
| 839 | "Combine LIST1 and LIST2 using a set-difference operation. | 839 | "Combine LIST1 and LIST2 using a set-difference operation. |
| 840 | The result list contains all items that appear in LIST1 but not LIST2. | 840 | The resulting list contains all items that appear in LIST1 but not LIST2. |
| 841 | This is a non-destructive function; it makes a copy of the data if necessary | 841 | This is a non-destructive function; it makes a copy of the data if necessary |
| 842 | to avoid corrupting the original LIST1 and LIST2. | 842 | to avoid corrupting the original LIST1 and LIST2. |
| 843 | \nKeywords supported: :test :test-not :key | 843 | \nKeywords supported: :test :test-not :key |
| @@ -857,7 +857,7 @@ to avoid corrupting the original LIST1 and LIST2. | |||
| 857 | ;;;###autoload | 857 | ;;;###autoload |
| 858 | (defun nset-difference (cl-list1 cl-list2 &rest cl-keys) | 858 | (defun nset-difference (cl-list1 cl-list2 &rest cl-keys) |
| 859 | "Combine LIST1 and LIST2 using a set-difference operation. | 859 | "Combine LIST1 and LIST2 using a set-difference operation. |
| 860 | The result list contains all items that appear in LIST1 but not LIST2. | 860 | The resulting list contains all items that appear in LIST1 but not LIST2. |
| 861 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 861 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 862 | whenever possible. | 862 | whenever possible. |
| 863 | \nKeywords supported: :test :test-not :key | 863 | \nKeywords supported: :test :test-not :key |
| @@ -868,7 +868,7 @@ whenever possible. | |||
| 868 | ;;;###autoload | 868 | ;;;###autoload |
| 869 | (defun set-exclusive-or (cl-list1 cl-list2 &rest cl-keys) | 869 | (defun set-exclusive-or (cl-list1 cl-list2 &rest cl-keys) |
| 870 | "Combine LIST1 and LIST2 using a set-exclusive-or operation. | 870 | "Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 871 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 871 | The resulting list contains all items appearing in exactly one of LIST1, LIST2. |
| 872 | This is a non-destructive function; it makes a copy of the data if necessary | 872 | This is a non-destructive function; it makes a copy of the data if necessary |
| 873 | to avoid corrupting the original LIST1 and LIST2. | 873 | to avoid corrupting the original LIST1 and LIST2. |
| 874 | \nKeywords supported: :test :test-not :key | 874 | \nKeywords supported: :test :test-not :key |
| @@ -881,7 +881,7 @@ to avoid corrupting the original LIST1 and LIST2. | |||
| 881 | ;;;###autoload | 881 | ;;;###autoload |
| 882 | (defun nset-exclusive-or (cl-list1 cl-list2 &rest cl-keys) | 882 | (defun nset-exclusive-or (cl-list1 cl-list2 &rest cl-keys) |
| 883 | "Combine LIST1 and LIST2 using a set-exclusive-or operation. | 883 | "Combine LIST1 and LIST2 using a set-exclusive-or operation. |
| 884 | The result list contains all items that appear in exactly one of LIST1, LIST2. | 884 | The resulting list contains all items appearing in exactly one of LIST1, LIST2. |
| 885 | This is a destructive function; it reuses the storage of LIST1 and LIST2 | 885 | This is a destructive function; it reuses the storage of LIST1 and LIST2 |
| 886 | whenever possible. | 886 | whenever possible. |
| 887 | \nKeywords supported: :test :test-not :key | 887 | \nKeywords supported: :test :test-not :key |