git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@131 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
stasinos 2001-07-18 14:51:10 +00:00
parent 695a872254
commit 32a0e2c3c7
2 changed files with 3 additions and 3 deletions

View File

@ -3778,7 +3778,7 @@ defaults to 1).
@item '~Nr'
The next argument must be an integer, and @var{N} is interpreted as a
radix, such that @code{2 <= N <= 3} (the default is 8).
radix, such that @code{2 <= N <= 36} (the default is 8).
@example
?- format("~2r, 0x~16r, ~r",
@ -3791,7 +3791,7 @@ Note that the letters @code{a-z} denote digits larger than 9.
@item '~NR'
Similar to '~NR'. The next argument must be an integer, and @var{N} is
interpreted as a radix, such that @code{2 <= N <= 3} (the default is 8).
interpreted as a radix, such that @code{2 <= N <= 36} (the default is 8).
@example
?- format("~2r, 0x~16r, ~r",

View File

@ -432,7 +432,7 @@ static Term (YapIRead)() = YapRead;
#define YapRead(F) (*YapIRead)(F)
#endif
/* void YapWrite(Term,int (*)(void),int) */
/* void YapWrite(Term,void (*)(int),int) */
extern X_API void PROTO(YapWrite,(Term,void (*)(int),int));
#ifdef IndirectCalls
static void (YapIWrite)() = YapWrite;