repl: Add missing bindings in #:autoload spec.
authorLudovic Courtès <ludo@gnu.org>
Mon, 20 Jan 2020 09:29:52 +0000 (10:29 +0100)
committerLudovic Courtès <ludo@gnu.org>
Mon, 20 Jan 2020 09:29:52 +0000 (10:29 +0100)
Fixes <https://bugs.gnu.org/39196>.
Reported by Matt Wette <matt.wette@gmail.com>.

* module/system/repl/command.scm: Augment #:autoload set of bindings.

module/system/repl/command.scm

index acb18e0a095b48e3e067545dbd794b7c18606068..ac1fa093312eb07e7d96c8f222cb0c1af6dce7eb 100644 (file)
@@ -1,6 +1,6 @@
 ;;; Repl commands
 
-;; Copyright (C) 2001, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2009, 2010, 2011, 2012, 2013, 2020 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
@@ -30,7 +30,8 @@
   #:use-module (system vm program)
   #:use-module (system vm trap-state)
   #:use-module (system vm vm)
-  #:autoload (system base language) (lookup-language language-reader)
+  #:autoload (system base language) (lookup-language language-reader
+                                     language-title language-name)
   #:autoload (system vm trace) (call-with-trace)
   #:use-module (ice-9 format)
   #:use-module (ice-9 session)