summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2009-07-02 10:43:32 +0000
committerWerner Koch <wk@gnupg.org>2009-07-02 10:43:32 +0000
commit70499fb90345a56f560d13e3f2a86a83e60edca6 (patch)
treeb0d8d68309a1b9c0be480ea5234763ba7ddee4ac /doc
parent428036a16f9f33d5aff675fe35e5bc1c07be6783 (diff)
downloadlibgcrypt-70499fb90345a56f560d13e3f2a86a83e60edca6.tar.gz
Fix bug#1079.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/gcrypt.texi12
2 files changed, 13 insertions, 4 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index a04cef62..864f2bcc 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-02 Daiki Ueno <ueno@unixuser.org>
+
+ * gcrypt.texi (Working with S-expressions): Describe format
+ character '%S'. Typo fixes. Fixes bug#1079.
+
2009-05-10 Werner Koch <wk@g10code.com>
* gcrypt.texi (Working with cipher handles): Clarified that
diff --git a/doc/gcrypt.texi b/doc/gcrypt.texi
index be06fa6d..ab18c87e 100644
--- a/doc/gcrypt.texi
+++ b/doc/gcrypt.texi
@@ -4038,8 +4038,13 @@ inserted into the resulting S-expression.
@item %b
The next argument is expected to be of type @code{int} directly
followed by an argument of type @code{char *}. This represents a
-buffer of given length to be inserted into the resulting regular
-expression.
+buffer of given length to be inserted into the resulting S-expression.
+@item %S
+The next argument is expected to be of type @code{gcry_sexp_t} and a
+copy of that S-expression is embedded in the resulting S-expression.
+The argument needs to be a regular S-expression, starting with a
+parenthesis.
+
@end table
@noindent
@@ -4111,8 +4116,7 @@ passed as @code{NULL}.
@noindent
-There are a couple of functions to parse S-expressions and retrieve
-elements:
+There are functions to parse S-expressions and retrieve elements:
@deftypefun gcry_sexp_t gcry_sexp_find_token (@w{const gcry_sexp_t @var{list}}, @w{const char *@var{token}}, @w{size_t @var{toklen}})