diff options
-rw-r--r-- | guix/ui.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 3203423bd6..966f0611f6 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -35,7 +35,7 @@ ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. -(define-module (guix ui) +(define-module (guix ui) ;import in user interfaces only #:use-module (guix i18n) #:use-module (guix colors) #:use-module (guix diagnostics) @@ -150,6 +150,10 @@ ;;; ;;; User interface facilities for command-line tools. ;;; +;;; Note: This module is meant to be imported by user interfaces only and not +;;; be "regular" modules. It depends on lots of modules that may be +;;; relatively heavyweight dependencies for non-UI modules. +;;; ;;; Code: (define (print-unbound-variable-error port key args default-printer) |