about summary refs log tree commit diff
path: root/src/guile/skribilo/utils/syntax.scm
diff options
context:
space:
mode:
Diffstat (limited to 'src/guile/skribilo/utils/syntax.scm')
-rw-r--r--src/guile/skribilo/utils/syntax.scm14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/guile/skribilo/utils/syntax.scm b/src/guile/skribilo/utils/syntax.scm
index 7e32c2e..9477095 100644
--- a/src/guile/skribilo/utils/syntax.scm
+++ b/src/guile/skribilo/utils/syntax.scm
@@ -1,7 +1,7 @@
 ;;; syntax.scm  --  Syntactic candy for Skribilo modules. -*- coding: utf-8 -*-
 ;;;
 ;;; Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011,
-;;;   2012  Ludovic Courtès <ludo@gnu.org>
+;;;   2012, 2016 Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;;
 ;;; This file is part of Skribilo.
@@ -23,11 +23,13 @@
   :use-module (system reader library)
   :use-module (system reader compat) ;; make sure `current-reader' exists
   :use-module (system reader confinement)
-  :export (%skribilo-module-reader skribilo-module-syntax
-                                   set-correct-file-encoding!
-                                   default-to-utf-8
-                                   _ N_
-                                   unwind-protect))
+  :export (%skribilo-module-reader
+           skribilo-module-syntax
+           set-correct-file-encoding!
+           default-to-utf-8
+           %skribilo-text-domain
+           _ N_
+           unwind-protect))
 
 ;;; Author:  Ludovic Courtès
 ;;;