From: Ludovic Courtès Date: Mon, 20 Jan 2020 09:29:52 +0000 (+0100) Subject: repl: Add missing bindings in #:autoload spec. X-Git-Tag: v3.0.1~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f1ed870eadd0c76fd6b8cb09b90df7d38d2feff;p=platform%2Fupstream%2Fguile.git repl: Add missing bindings in #:autoload spec. Fixes . Reported by Matt Wette . * module/system/repl/command.scm: Augment #:autoload set of bindings. --- diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm index acb18e0a0..ac1fa0933 100644 --- a/module/system/repl/command.scm +++ b/module/system/repl/command.scm @@ -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)