annotate tests/blog.ur @ 1909:659d1f4e95bf

make dist: Use fewer wildcards The remaining ones only work by accident: http://www.gnu.org/software/automake/manual/html_node/Wildcards.html and they have some practical problems too (we don?t really want to distribute include/urweb/config.h or src/config.sml), but this is enough for now to pass ?make distcheck? as long as we don?t run it from a separate build directory. Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 6 +++--- src/c/Makefile.am | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-)
author Anders Kaseorg <andersk@mit.edu>
date Fri, 22 Nov 2013 09:36:14 -0500
parents 787d4931fb07
children
rev   line source
adamc@453 1 fun main wrap =
adamc@453 2 let
adamc@453 3 fun edit id =
adamc@453 4 let
adamc@453 5 val r = 0
adamc@453 6 fun save () = <xml/>
adamc@453 7 in
adamc@453 8 wrap (save ())
adamc@453 9 end
adamc@453 10 in
adamc@453 11 edit 0
adamc@453 12 end
adamc@453 13
adamc@453 14 fun wrap (inside : xbody) = return <xml/>
adamc@453 15
adamc@453 16 val main () = main wrap