diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-02-10 00:10:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-10 00:10:10 +0100 |
commit | 1a3e316c32562aec2665a0233d46d5635f9c1245 (patch) | |
tree | fb83aeab4add09b26fde8b29b3831cd2a6497f87 /libguile/error.h | |
parent | 43cfae363493460bed62da24bcdc51fce7ba250a (diff) | |
download | guile-1a3e316c32562aec2665a0233d46d5635f9c1245.tar.gz |
Remove traces of 'scm_memory_error'.
'scm_memory_error' was deprecated in 2014 in commit
c2247b782a9234bb9aedee5204c30daf1d01a510 and removed in 2017 in commit
c248ea10beb2afa4c113dbc6dc707bed5dbfc92e. This is a followup.
* libguile/error.h (SCM_MEMORY_ERROR): Remove.
* doc/guile-api.alist: Remove 'scm_memory_error'.
* doc/ref/api-control.texi (Handling Errors): Likewise.
(Dynamic Wind): Use 'scm_misc_error' instead of 'scm_memory_error'.
Diffstat (limited to 'libguile/error.h')
-rw-r--r-- | libguile/error.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libguile/error.h b/libguile/error.h index cd134e650..7fb1ecf84 100644 --- a/libguile/error.h +++ b/libguile/error.h @@ -1,7 +1,7 @@ #ifndef SCM_ERROR_H #define SCM_ERROR_H -/* Copyright 1995-1998,2000-2002,2006,2008,2011,2014,2018 +/* Copyright 1995-1998,2000-2002,2006,2008,2011,2014,2018,2020 Free Software Foundation, Inc. This file is part of Guile. @@ -111,8 +111,6 @@ SCM_INTERNAL void scm_init_error (void); #define SCM_SYSERROR do { scm_syserror (FUNC_NAME); } while (0) -#define SCM_MEMORY_ERROR do { scm_memory_error (FUNC_NAME); } while (0) - #define SCM_SYSERROR_MSG(str, args, val) \ do { scm_syserror_msg (FUNC_NAME, (str), (args), (val)); } while (0) |