1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 14:30:34 +02:00

deprecate (ice-9 mapping)

* module/ice-9/mapping.scm: Add deprecation warning.
This commit is contained in:
Andy Wingo 2013-02-24 15:11:14 +01:00
parent 1746b8ffdb
commit 72ad03fcbd

View file

@ -1,6 +1,6 @@
;;; installed-scm-file
;;;; Copyright (C) 1996, 2001, 2006 Free Software Foundation, Inc.
;;;; Copyright (C) 1996, 2001, 2006, 2013 Free Software Foundation, Inc.
;;;;
;;;; This library is free software; you can redistribute it and/or
;;;; modify it under the terms of the GNU Lesser General Public
@ -29,6 +29,9 @@
mapping-ref mapping-set! hash-table-mapping-hooks
make-hash-table-mapping hash-table-mapping))
(issue-deprecation-warning
"(ice-9 mapping) is deprecated. Use srfi-69 or rnrs hash tables instead.")
(define mapping-hooks-type (make-record-type 'mapping-hooks '(get-handle
create-handle
remove)))