diff options
Diffstat (limited to 'module/language/elisp/lexer.scm')
-rw-r--r-- | module/language/elisp/lexer.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/language/elisp/lexer.scm b/module/language/elisp/lexer.scm index 5a0e6b3ff..f77f0c1c2 100644 --- a/module/language/elisp/lexer.scm +++ b/module/language/elisp/lexer.scm @@ -1,6 +1,6 @@ ;;; Guile Emacs Lisp -;;; Copyright (C) 2009, 2010, 2013 Free Software Foundation, Inc. +;;; Copyright (C) 2009, 2010, 2013, 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 @@ -20,6 +20,7 @@ (define-module (language elisp lexer) #:use-module (ice-9 regex) + #:use-module (ice-9 source-properties) #:export (get-lexer get-lexer/1)) ;;; This is the lexical analyzer for the elisp reader. It is |