diff options
Diffstat (limited to 'gdb/doc/guile.texi')
-rw-r--r-- | gdb/doc/guile.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi index ceb98dc..56d817e 100644 --- a/gdb/doc/guile.texi +++ b/gdb/doc/guile.texi @@ -278,6 +278,15 @@ history contains the result of evaluating an expression from Guile's command line. @end deffn +@deffn {Scheme Procedure} history-append! value +Append @var{value}, an instance of @code{<gdb:value>}, to @value{GDBN}'s +value history. Return its index in the history. + +Putting into history values returned by Guile extensions will allow +the user convenient access to those values via CLI history +facilities. +@end deffn + @deffn {Scheme Procedure} parse-and-eval expression Parse @var{expression} as an expression in the current language, evaluate it, and return the result as a @code{<gdb:value>}. |