mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
ui: Clarify that the module is meant for UIs only.
* guix/ui.scm: Add comment. Suggested-by: Tomas Volf <~@wolfsden.cz> Change-Id: I203b2e2bfe1b6f94b96054fe61069f20b580fcd6
This commit is contained in:
parent
94656e2eb0
commit
49ece68b0b
1 changed files with 5 additions and 1 deletions
|
@ -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 @@ (define-module (guix ui)
|
|||
;;;
|
||||
;;; 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)
|
||||
|
|
Loading…
Reference in a new issue