diff options
Diffstat (limited to 'module/language/elisp/boot.el')
-rw-r--r-- | module/language/elisp/boot.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/language/elisp/boot.el b/module/language/elisp/boot.el index f55722a9a..608c7c960 100644 --- a/module/language/elisp/boot.el +++ b/module/language/elisp/boot.el @@ -1,6 +1,6 @@ ;;; Guile Emacs Lisp -*- lexical-binding: t -*- -;;; Copyright (C) 2011 Free Software Foundation, Inc. +;;; Copyright (C) 2011, 2025 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 License as @@ -505,7 +505,8 @@ (defun lax-plist-put (plist property value) (%plist-put plist property value #'equal)) -(defvar plist-function (funcall (@ (guile) make-object-property))) +(defvar plist-function + (funcall (@ (ice-9 object-properties) make-object-property))) (defun symbol-plist (symbol) (funcall plist-function symbol)) |