summaryrefslogtreecommitdiff
path: root/libguile/backtrace.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2006-08-28 22:17:26 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2006-08-28 22:17:26 +0000
commitb5944f66723daaad141f440176b03c8987b6857c (patch)
treed9760d05a6347e300d93b82bdfbfc38f88768c4e /libguile/backtrace.c
parentfc3d5c436f0c4600025681a2ea68b1f71c01a15f (diff)
(scm_display_backtrace_with_highlights): Minor
improvements to docstring. (scm_backtrace_with_highlights): Analogous improvements.
Diffstat (limited to 'libguile/backtrace.c')
-rw-r--r--libguile/backtrace.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libguile/backtrace.c b/libguile/backtrace.c
index edeefb831..38d7a8382 100644
--- a/libguile/backtrace.c
+++ b/libguile/backtrace.c
@@ -730,14 +730,14 @@ display_backtrace_body (struct display_backtrace_args *a)
SCM_DEFINE (scm_display_backtrace_with_highlights, "display-backtrace", 2, 3, 0,
(SCM stack, SCM port, SCM first, SCM depth, SCM highlights),
- "Display a backtrace to the output port @var{port}. @var{stack}\n"
+ "Display a backtrace to the output port @var{port}. @var{stack}\n"
"is the stack to take the backtrace from, @var{first} specifies\n"
- "where in the stack to start and @var{depth} how much frames\n"
- "to display. Both @var{first} and @var{depth} can be @code{#f},\n"
+ "where in the stack to start and @var{depth} how many frames\n"
+ "to display. @var{first} and @var{depth} can be @code{#f},\n"
"which means that default values will be used.\n"
- "When @var{highlights} is given,\n"
- "it should be a list and all members of it are highligthed in\n"
- "the backtrace.")
+ "If @var{highlights} is given it should be a list; the elements\n"
+ "of this list will be highlighted wherever they appear in the\n"
+ "backtrace.")
#define FUNC_NAME s_scm_display_backtrace_with_highlights
{
struct display_backtrace_args a;
@@ -771,9 +771,9 @@ SCM_VARIABLE (scm_has_shown_backtrace_hint_p_var, "has-shown-backtrace-hint?");
SCM_DEFINE (scm_backtrace_with_highlights, "backtrace", 0, 1, 0,
(SCM highlights),
"Display a backtrace of the stack saved by the last error\n"
- "to the current output port. When @var{highlights} is given,\n"
- "it should be a list and all members of it are highligthed in\n"
- "the backtrace.")
+ "to the current output port. If @var{highlights} is given\n"
+ "it should be a list; the elements of this list will be\n"
+ "highlighted wherever they appear in the backtrace.")
#define FUNC_NAME s_scm_backtrace_with_highlights
{
SCM port = scm_current_output_port ();