aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPaul Eggert2019-11-04 23:17:06 -0800
committerPaul Eggert2019-11-04 23:39:55 -0800
commit799d738bc7404b5bda4fe3c544a4fc24e6580f46 (patch)
treeabd39a5ad8751314f31a4c34a362a2b2eb04a0fb /etc
parent5ab29400a4e9b29928aaf63d1f89a0b059491b29 (diff)
downloademacs-799d738bc7404b5bda4fe3c544a4fc24e6580f46.tar.gz
emacs-799d738bc7404b5bda4fe3c544a4fc24e6580f46.zip
Overflow errors are range errors
* etc/NEWS: Mention this. * doc/lispref/errors.texi (Standard Errors): Document overflow-error, which was formerly undocumented. It is a range error, not a domain error. * src/data.c (syms_of_data): overflow-error and (undocumented) underflow-error are subtypes range-error, not domain-error. This fixes bugs in timezone-time-from-absolute and in erc-ctcp-reply-PING.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e897fe06c99..7ff9df6e0fa 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2617,6 +2617,11 @@ like 'file-attributes' that compute file sizes and other attributes,
2617functions like 'process-id' that compute process IDs, and functions like 2617functions like 'process-id' that compute process IDs, and functions like
2618'user-uid' and 'group-gid' that compute user and group IDs. 2618'user-uid' and 'group-gid' that compute user and group IDs.
2619 2619
2620+++
2621** overflow-error is now documented as a subcategory of range-error.
2622Formerly it was undocumented, and was (incorrectly) a subcategory
2623of domain-error.
2624
2620** Time values 2625** Time values
2621 2626
2622+++ 2627+++