diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-25 20:57:20 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-25 20:57:20 +0000 |
commit | 2747222fba5572934fcf137401b44580d9e5d649 (patch) | |
tree | cd4af313f253888c360c12b9036d1631d77c8a36 | |
parent | 3d91500bb4baf88a1a79f09d08beacee69f0c11a (diff) | |
download | ports-2747222fba5572934fcf137401b44580d9e5d649.tar.gz ports-2747222fba5572934fcf137401b44580d9e5d649.zip |
Notes
-rw-r--r-- | lang/guile/files/patch-doc__goops__goops.texi | 11 | ||||
-rw-r--r-- | lang/guile/files/patch-doc__r5rs__r5rs.texi | 12 | ||||
-rw-r--r-- | lang/guile/files/patch-doc__ref__fdl.texi | 11 | ||||
-rw-r--r-- | lang/guile/files/patch-doc__ref__gh.texi | 11 | ||||
-rw-r--r-- | lang/guile/files/patch-doc__tutorial__guile-tut.texi | 39 |
5 files changed, 84 insertions, 0 deletions
diff --git a/lang/guile/files/patch-doc__goops__goops.texi b/lang/guile/files/patch-doc__goops__goops.texi new file mode 100644 index 000000000000..b056263c08a1 --- /dev/null +++ b/lang/guile/files/patch-doc__goops__goops.texi @@ -0,0 +1,11 @@ +--- ./doc/goops/goops.texi.orig 2010-12-13 18:24:39.000000000 +0100 ++++ ./doc/goops/goops.texi 2014-06-25 22:51:56.949463365 +0200 +@@ -131,7 +131,7 @@ + @end menu + + @node Running GOOPS, Methods, Getting Started, Getting Started +-@subsection Running GOOPS ++@section Running GOOPS + + @enumerate + @item diff --git a/lang/guile/files/patch-doc__r5rs__r5rs.texi b/lang/guile/files/patch-doc__r5rs__r5rs.texi new file mode 100644 index 000000000000..6f02188c460f --- /dev/null +++ b/lang/guile/files/patch-doc__r5rs__r5rs.texi @@ -0,0 +1,12 @@ +--- ./doc/r5rs/r5rs.texi.orig 2010-12-08 10:06:50.000000000 +0100 ++++ ./doc/r5rs/r5rs.texi 2014-06-25 22:52:36.456460772 +0200 +@@ -116,9 +116,6 @@ + + + +-@unnumbered Summary +- +- + The report gives a defining description of the programming language + Scheme. Scheme is a statically scoped and properly tail-recursive + dialect of the Lisp programming language invented by Guy Lewis diff --git a/lang/guile/files/patch-doc__ref__fdl.texi b/lang/guile/files/patch-doc__ref__fdl.texi new file mode 100644 index 000000000000..bc3e9e643d97 --- /dev/null +++ b/lang/guile/files/patch-doc__ref__fdl.texi @@ -0,0 +1,11 @@ +--- ./doc/ref/fdl.texi.orig 2010-12-13 18:24:39.000000000 +0100 ++++ ./doc/ref/fdl.texi 2014-06-25 22:53:08.813111590 +0200 +@@ -408,7 +408,7 @@ + @end enumerate + + @page +-@appendixsubsec ADDENDUM: How to use this License for your documents ++@appendixsec ADDENDUM: How to use this License for your documents + + To use this License in a document you have written, include a copy of + the License in the document and put the following copyright and diff --git a/lang/guile/files/patch-doc__ref__gh.texi b/lang/guile/files/patch-doc__ref__gh.texi new file mode 100644 index 000000000000..fa7c17e9a270 --- /dev/null +++ b/lang/guile/files/patch-doc__ref__gh.texi @@ -0,0 +1,11 @@ +--- ./doc/ref/gh.texi.orig 2010-12-13 18:24:39.000000000 +0100 ++++ ./doc/ref/gh.texi 2014-06-25 22:53:50.371137099 +0200 +@@ -995,8 +995,6 @@ + + @deftypefun SCM gh_car (SCM @var{obj}) + @deftypefunx SCM gh_cdr (SCM @var{obj}) +-@dots{} +- + @deftypefunx SCM gh_c[ad][ad][ad][ad]r (SCM @var{obj}) + These correspond to the Scheme @code{(caadar ls)} procedures etc @dots{} + @end deftypefun diff --git a/lang/guile/files/patch-doc__tutorial__guile-tut.texi b/lang/guile/files/patch-doc__tutorial__guile-tut.texi new file mode 100644 index 000000000000..dfbaada1b3a0 --- /dev/null +++ b/lang/guile/files/patch-doc__tutorial__guile-tut.texi @@ -0,0 +1,39 @@ +--- ./doc/tutorial/guile-tut.texi.orig 2010-12-13 18:24:39.000000000 +0100 ++++ ./doc/tutorial/guile-tut.texi 2014-06-25 22:55:00.775514198 +0200 +@@ -446,7 +446,7 @@ + Schemer} from that list.} + + +-@subsection Hello World ++@section Hello World + @cindex hello world + + Our first program is the typical Scheme "hello world" program. Put the +@@ -535,12 +535,12 @@ + guile> @kbd{(if (memq 4 ls) + (display "hey, it's true!\n") + (display "dude, it's false\n"))} +- @print{hey, it's true!} ++ @print{} hey, it's true! + @result{} + guile> @kbd{(if (memq 12 ls) + (display "hey, it's true!\n") + (display "dude, it's false\n"))} +- @print{dude, it's false} ++ @print{} dude, it's false + @result{} + guile> @kbd{(memq 4 (reverse ls))} + @result{} (4 3 2 1) +@@ -656,9 +656,9 @@ + (represent-matrix m + (lambda (x) (begin (display x) (display " "))) + (lambda (l) (begin (display "\n")))) +-@print{7 2 1 3 2 8 5 3 6} +-@print{4 1 1 1 3 8 9 8 1} +-@print{5 5 4 8 1 8 2 2 4} ++@print{} 7 2 1 3 2 8 5 3 6 ++@print{} 4 1 1 1 3 8 9 8 1 ++@print{} 5 5 4 8 1 8 2 2 4 + @end smalllisp + + @cindex objects |