diff options
author | Hui Zhu <teawater@gmail.com> | 2010-06-24 06:12:15 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2010-06-24 06:12:15 +0000 |
commit | f1421989e756090c82431b85a3766b892361182e (patch) | |
tree | d0116061cc89ff965e6f8fb3bd6a48acc99614a2 /gdb/doc | |
parent | fee37fbc3aba9d2d623f8bf310f42d335adc0fda (diff) | |
download | gdb-f1421989e756090c82431b85a3766b892361182e.zip gdb-f1421989e756090c82431b85a3766b892361182e.tar.gz gdb-f1421989e756090c82431b85a3766b892361182e.tar.bz2 |
Add command "eval".
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 5b59f20..90d767a 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2010-06-24 Hui Zhu <teawater@gmail.com> + + * gdb.texinfo: (Commands for Controlled Output): Add + documentation for command "eval". + 2010-06-21 Stan Shebs <stan@codesourcery.com> * gdb.texinfo: Add explicit @node and @appendix for GFDL. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 463030f..cbd636f 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -20073,6 +20073,11 @@ Here's an example of printing DFP types using the above conversion letters: printf "D32: %Hf - D64: %Df - D128: %DDf\n",1.2345df,1.2E10dd,1.2E1dl @end smallexample +@kindex eval +@item eval @var{template}, @var{expressions}@dots{} +Convert the values of one or more @var{expressions} under the control of +the string @var{template} to a command line, and call it. + @end table @node Python |