diff options
Diffstat (limited to 'module/system/base/lalr.scm')
-rw-r--r-- | module/system/base/lalr.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/system/base/lalr.scm b/module/system/base/lalr.scm index 49e7e8d46..55e5e6c87 100644 --- a/module/system/base/lalr.scm +++ b/module/system/base/lalr.scm @@ -1,6 +1,6 @@ ;;; -*- mode: scheme; coding: utf-8; -*- ;;; -;;; Copyright (C) 2010 Free Software Foundation, Inc. +;;; Copyright (C) 2010, 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 published by @@ -21,6 +21,7 @@ ;; compiler) complains about `lexical-token' being unbound when expanding ;; `(define-record-type lexical-token ...)' if we omit it. #:use-module (srfi srfi-9) + #:use-module (ice-9 source-properties) #:export (lalr-parser print-states |