]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove ert-equal-including-properties from manual
authorBasil L. Contovounesios <basil@contovou.net>
Sat, 20 Apr 2024 14:01:49 +0000 (16:01 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 29 Apr 2024 15:00:53 +0000 (17:00 +0200)
* doc/misc/ert.texi (Useful Techniques): Mention only
equal-including-properties in place of the now obsolete
ert-equal-including-properties.

(cherry picked from commit c929532b4694a1c5d0f61ae77f4e8664706a36a1)

doc/misc/ert.texi

index 8767de714966cda6a745f4d185fabb57fc8efa5c..cecde5f32328e7356fb491437d45074a0e66643c 100644 (file)
@@ -786,7 +786,6 @@ Here's a more complicated test:
 @end lisp
 
 @findex make-ert-test
-@findex ert-equal-including-properties
 This test creates a test object using @code{make-ert-test} whose body
 will immediately signal failure.  It then runs that test and asserts
 that it fails.  Then, it creates a temporary buffer and invokes
@@ -795,7 +794,7 @@ to the current buffer.  Finally, it extracts the first line from the
 buffer and asserts that it matches what we expect.  It uses
 @code{buffer-substring-no-properties} and @code{equal} to ignore text
 properties; for a test that takes properties into account,
-@code{buffer-substring} and @code{ert-equal-including-properties}
+@code{buffer-substring} and @code{equal-including-properties}
 could be used instead.
 
 The reason why this test only checks the first line of the backtrace