aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Yavner2003-11-30 07:33:32 +0000
committerJonathan Yavner2003-11-30 07:33:32 +0000
commit9f8a930d980e626fdd627694143b11f29ecd4f24 (patch)
tree993e52d11bee5573241191cf26a64d8bda1f4964
parent01a9e5933da0f45101161d0572ad77bd6da66cbc (diff)
downloademacs-9f8a930d980e626fdd627694143b11f29ecd4f24.tar.gz
emacs-9f8a930d980e626fdd627694143b11f29ecd4f24.zip
testcover.el: Changes to 1value and noreturn
-rw-r--r--etc/NEWS7
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f256bd507c1..db255e880a4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2012,8 +2012,11 @@ such as `error'. The brown splotches are skipped for forms that are expected
2012to always evaluate to the same value, such as (setq x 14). 2012to always evaluate to the same value, such as (setq x 14).
2013 2013
2014*** For difficult cases, you can add do-nothing macros to your code to help 2014*** For difficult cases, you can add do-nothing macros to your code to help
2015out the test coverage tool. The macro 1value suppresses a brown splotch for 2015out the test coverage tool. The macro `noreturn' suppresses a red splotch.
2016its argument. The macro noreturn suppresses a red splotch. 2016It is an error if the argument to `noreturn' does return. The macro 1value
2017suppresses a brown splotch for its argument. This macro is a no-op except
2018during test-coverage -- then it signals an error if the argument actually
2019returns differing values.
2017 2020
2018+++ 2021+++
2019** New function unsafep returns nil if the given Lisp form can't possibly 2022** New function unsafep returns nil if the given Lisp form can't possibly