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

Mark some elisp runtime modules as non-declarative

* module/language/elisp/runtime/function-slot.scm (language):
* module/language/elisp/runtime/value-slot.scm (language):
Non-declarative.
This commit is contained in:
Andy Wingo 2021-04-04 21:59:29 +02:00
parent fafe845c11
commit 58ce5fac7d
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
;;; Guile Emacs Lisp
;;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
;;; Copyright (C) 2009, 2010, 2021 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
@ -60,4 +60,5 @@
quote
%funcall
%set-lexical-binding-mode)
#:declarative? #f
#:pure)

View file

@ -1,6 +1,6 @@
;;; Guile Emacs Lisp
;;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
;;; Copyright (C) 2009, 2010, 2021 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
@ -19,6 +19,7 @@
;;; Code:
(define-module (language elisp runtime value-slot)
#:declarative? #f
#:pure)
;;; This module contains the value-slots of elisp symbols.