diff options
author | Andy Wingo <wingo@pobox.com> | 2010-04-15 23:09:29 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-04-16 10:36:04 +0200 |
commit | e6709db63f854dbcf36a6536dcbb57c6c97571a6 (patch) | |
tree | 47b9c1102630ff02e2136cab45ff991fada59d4e /doc/ref/api-translation.texi | |
parent | 2d1ff3ba52dfc8ad9ab2a30a76b877024c9fc57a (diff) | |
download | guile-e6709db63f854dbcf36a6536dcbb57c6c97571a6.tar.gz |
flesh out docs on multiple languages a bit more
* doc/ref/api-languages.texi: Move here from api-translation. Still
stubbed in parts, but it's getting better.
* doc/ref/Makefile.am: Adapt to api-languages.texi name change.
* doc/ref/guile.texi: Likewise.
Diffstat (limited to 'doc/ref/api-translation.texi')
-rw-r--r-- | doc/ref/api-translation.texi | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/doc/ref/api-translation.texi b/doc/ref/api-translation.texi deleted file mode 100644 index 8782a6fbd..000000000 --- a/doc/ref/api-translation.texi +++ /dev/null @@ -1,54 +0,0 @@ -@c -*-texinfo-*- -@c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004 -@c Free Software Foundation, Inc. -@c See the file guile.texi for copying conditions. - -@page -@node Translation -@section Support for Translating Other Languages - -[Describe translation framework.] - -@menu -* Emacs Lisp Support:: Helper primitives for Emacs Lisp. -@end menu - - -@node Emacs Lisp Support -@subsection Emacs Lisp Support - -@deffn {Scheme Procedure} nil-car x -@deffnx {C Function} scm_nil_car (x) -Return the car of @var{x}, but convert it to LISP nil if it -is Scheme's end-of-list. -@end deffn - -@deffn {Scheme Procedure} nil-cdr x -@deffnx {C Function} scm_nil_cdr (x) -Return the cdr of @var{x}, but convert it to LISP nil if it -is Scheme's end-of-list. -@end deffn - -@deffn {Scheme Procedure} nil-cons x y -@deffnx {C Function} scm_nil_cons (x, y) -Create a new cons cell with @var{x} as the car and @var{y} as -the cdr, but convert @var{y} to Scheme's end-of-list if it is -a Lisp nil. -@end deffn - -@deffn {Scheme Procedure} nil-eq x y -Compare @var{x} and @var{y} and return Lisp's t if they are -@code{eq?}, return Lisp's nil otherwise. -@end deffn - -@deffn {Scheme Procedure} null x -@deffnx {C Function} scm_null (x) -Return Lisp's @code{t} if @var{x} is nil in the LISP sense, -return Lisp's nil otherwise. -@end deffn - - -@c Local Variables: -@c TeX-master: "guile.texi" -@c End: |