1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

* strports.c (st_end_input): Inserted parenthesis to get operator

grouping correct.

* fports.c, list.c, numbers.c, ports.c, stime.c, symbols.c,
filesys.c, posix.c: Converted docstrings to ANSI C format and
escaped " occurring inside string literals.
This commit is contained in:
Mikael Djurfeldt 2000-01-18 14:13:31 +00:00
parent d9b6c17032
commit a3c8b9fce9
7 changed files with 64 additions and 69 deletions

View file

@ -687,10 +687,10 @@ SCM_DEFINE (scm_ash, "ash", 2, 0, 0,
"Example:\n"
"@lisp\n"
"(number->string (ash #b1 3) 2)\n"
" @result{} "1000"
(number->string (ash #b1010 -1) 2)
@result{} "101"
@end lisp")
" @result{} \"1000\""
"(number->string (ash #b1010 -1) 2)"
" @result{} \"101\""
"@end lisp")
#define FUNC_NAME s_scm_ash
{
/* GJB:FIXME:: what is going on here? */