diff options
author | Ludovic Court`es | 2007-06-05 17:09:02 +0000 |
---|---|---|
committer | Ludovic Court`es | 2007-06-05 17:09:02 +0000 |
commit | e4254efc09b6b6fd4ead00459bf859047740a026 (patch) | |
tree | 8f2326056c9caba34064e63163c0914e243557a0 /src/guile/skribilo/engine | |
parent | 9d495ede131306babc5bb14cc6b9d303bd9e5417 (diff) | |
parent | 9457610daa0ad13623c95d7ac5a6e54d188aa4e6 (diff) | |
download | skribilo-e4254efc09b6b6fd4ead00459bf859047740a026.tar.gz skribilo-e4254efc09b6b6fd4ead00459bf859047740a026.tar.lz skribilo-e4254efc09b6b6fd4ead00459bf859047740a026.zip |
Started cleaning up packages using Guile-Lint.
Most of the changes involve:
* using a native module rather than `define-skribe-module'.
* using `:'-style keywords instead of DSSSL keywords so that Guile-Lint
can handle them.
* fixing unbound variables and the likes.
git-archimport-id: skribilo@sv.gnu.org--2006/skribilo--devo--1.2--patch-98
Diffstat (limited to 'src/guile/skribilo/engine')
-rw-r--r-- | src/guile/skribilo/engine/latex.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/latex.scm b/src/guile/skribilo/engine/latex.scm index 2d5e4b6..e69769b 100644 --- a/src/guile/skribilo/engine/latex.scm +++ b/src/guile/skribilo/engine/latex.scm @@ -442,7 +442,7 @@ ;*---------------------------------------------------------------------*/ ;* skribe-get-latex-color ... */ ;*---------------------------------------------------------------------*/ -(define (skribe-get-latex-color spec) +(define-public (skribe-get-latex-color spec) (let ((c (and (hashtable? *skribe-latex-color-table*) (hashtable-get *skribe-latex-color-table* spec)))) (if (not (string? c)) |