diff options
author | Ludovic Court`es | 2006-12-12 17:03:02 +0000 |
---|---|---|
committer | Ludovic Court`es | 2006-12-12 17:03:02 +0000 |
commit | 929102c733f183c1819974323ad513b32261b81c (patch) | |
tree | 76567e08799d8f6510dbbc7a9fa7c5c4e5434af9 | |
parent | 47cc9ea4f2e74d6f81ad1c967d599d5d57da4289 (diff) | |
download | skribilo-929102c733f183c1819974323ad513b32261b81c.tar.gz skribilo-929102c733f183c1819974323ad513b32261b81c.tar.lz skribilo-929102c733f183c1819974323ad513b32261b81c.zip |
lout engine: Fixed automatic `url-ref' breaking wrt. spacing.
* src/guile/skribilo/engine/lout.scm: Use `(srfi srfi-14)'.
(lout-split-external-link): Use `char-set-contains?' when looking for
whitespace.
(lout-make-url-breakable): Do not remove newlines.
git-archimport-id: skribilo@sv.gnu.org--2006/skribilo--devo--1.2--patch-37
-rw-r--r-- | src/guile/skribilo/engine/lout.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/guile/skribilo/engine/lout.scm b/src/guile/skribilo/engine/lout.scm index b10c4a2..43aa356 100644 --- a/src/guile/skribilo/engine/lout.scm +++ b/src/guile/skribilo/engine/lout.scm @@ -25,6 +25,7 @@ (define-skribe-module (skribilo engine lout) :use-module (srfi srfi-13) + :use-module (srfi srfi-14) :autoload (ice-9 popen) (open-output-pipe) :autoload (ice-9 rdelim) (read-line)) @@ -471,9 +472,9 @@ (let ((split (let loop ((where 10)) (if (= 0 where) 10 - (if (char=? (string-ref text - (- where 1)) - #\space) + (if (char-set-contains? + char-set:whitespace + (string-ref text (- where 1))) (loop (- where 1)) where))))) `(,(ref :url url :text (substring text 0 split)) @@ -2539,7 +2540,7 @@ (#\_ "_&0ik{}") (#\@ "\"@\"&0ik{}") ,@lout-verbatim-encoding - (#\newline "")))) + (#\newline " ")))) ;*---------------------------------------------------------------------*/ ;* url-ref ... */ |