mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
programming language SML. fxp can validate both XML 1.0 and XML 1.1 documents. It has a programming interface allowing for production of XML applications based on fxp. It is installed with four example applications. WWW: http://www2.informatik.tu-muenchen.de/~berlea/Fxp PR: ports/116572 Submitted by: Timothy Bourke <timbob at bigpond.com>
12 lines
501 B
Standard ML
12 lines
501 B
Standard ML
diff -Naur src/Apps/Copy/copyEncode.sml.orig src/Apps/Copy/copyEncode.sml
|
|
--- src/Apps/Copy/copyEncode.sml.orig 2003-10-09 09:48:00.000000000 -0500
|
|
+++ src/Apps/Copy/copyEncode.sml 2003-10-17 14:30:01.000000000 -0500
|
|
@@ -126,7 +126,7 @@
|
|
| _ => if c<>q andalso validChar(f,c) then putChar(f,c) else putCharRef(f,c)
|
|
|
|
val f1 = putChar(f,q)
|
|
- val f2 = Vector.foldli putOne f1 (cv,0,NONE)
|
|
+ val f2 = Vector.foldli putOne f1 cv
|
|
val f3 = putChar(f2,q)
|
|
in f3
|
|
end
|