[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-197-g912f5
From: |
Andy Wingo |
Subject: |
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-197-g912f5f3 |
Date: |
Fri, 15 Mar 2013 18:22:34 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=912f5f34458fd6998b129e65685adbaf44356860
The branch, stable-2.0 has been updated
via 912f5f34458fd6998b129e65685adbaf44356860 (commit)
from de2811cc41e86f8f558cfe99172a1987cbcad47a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 912f5f34458fd6998b129e65685adbaf44356860
Author: Andy Wingo <address@hidden>
Date: Fri Mar 15 19:22:18 2013 +0100
fix doc build
* doc/ref/api-data.texi (Bitwise Operations): Don't use @-commands in
@math. Fixes doc build.
* doc/ref/api-macros.texi (Syntax Rules): Fix example result.
-----------------------------------------------------------------------
Summary of changes:
doc/ref/api-data.texi | 4 ++--
doc/ref/api-macros.texi | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi
index 81c6d5b..17baed2 100644
--- a/doc/ref/api-data.texi
+++ b/doc/ref/api-data.texi
@@ -1688,7 +1688,7 @@ starts from 0 for the least significant bit.
@deffn {Scheme Procedure} ash n count
@deffnx {C Function} scm_ash (n, count)
-Return @math{floor(@var{n} * address@hidden)}.
+Return @math{floor(n * 2^count)}.
@var{n} and @var{count} must be exact integers.
With @var{n} viewed as an infinite-precision twos-complement
@@ -1707,7 +1707,7 @@ when @var{count} is negative. This is an ``arithmetic''
shift.
@deffn {Scheme Procedure} round-ash n count
@deffnx {C Function} scm_round_ash (n, count)
-Return @math{round(@var{n} * address@hidden)}.
+Return @math{round(n * 2^count)}.
@var{n} and @var{count} must be exact integers.
With @var{n} viewed as an infinite-precision twos-complement
diff --git a/doc/ref/api-macros.texi b/doc/ref/api-macros.texi
index dcbde9b..ea4e8d6 100644
--- a/doc/ref/api-macros.texi
+++ b/doc/ref/api-macros.texi
@@ -215,7 +215,7 @@ including ellipsizing and tail patterns.
((_ #((var val) ...) exp exp* ...)
(let ((var val) ...) exp exp* ...))))
(letv #((foo 'bar)) foo)
address@hidden foo
address@hidden bar
@end example
Literals are used to match specific datums in an expression, like the use of
hooks/post-receive
--
GNU Guile
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-197-g912f5f3,
Andy Wingo <=