aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-07 23:29:35 +0000
committerRichard M. Stallman2002-07-07 23:29:35 +0000
commit44fa0ae8d4610e8acf4a91d80b2323ac5496c32b (patch)
treef2811b64524d2707d0ef3c1210aeb91eacf50e33
parent37281adbcf5133ba585144197a41326b5a818f60 (diff)
downloademacs-44fa0ae8d4610e8acf4a91d80b2323ac5496c32b.tar.gz
emacs-44fa0ae8d4610e8acf4a91d80b2323ac5496c32b.zip
Clarify gud-jump description.
-rw-r--r--man/building.texi17
1 files changed, 9 insertions, 8 deletions
diff --git a/man/building.texi b/man/building.texi
index f0f0b786d7b..e3dc047ded3 100644
--- a/man/building.texi
+++ b/man/building.texi
@@ -486,15 +486,16 @@ GDB versions 4.13 and later.
486Run the program until the selected stack frame returns (or until it 486Run the program until the selected stack frame returns (or until it
487stops for some other reason). 487stops for some other reason).
488 488
489@item C-c C-j 489@item C-x C-a C-j
490@kindex C-c C-j @r{(GUD)} 490@kindex C-x C-a C-j @r{(GUD)}
491@itemx C-x C-a C-j
492@findex gud-jump 491@findex gud-jump
493Only useful in a source buffer, (@code{gud-jump}) relocates the next 492Only useful in a source buffer, (@code{gud-jump}) transfers the
494instruction to the current line at point in a source buffer. If the 493program's execution point to the current line. In other words, the
495new execution line is in a different function from the previously one, 494next line that the program executes will be the one where you gave the
496you will be prompted for confirmation since the results may be 495command. If the new execution line is in a different function from
497bizarre. See the GDB manual entry regarding @code{jump} for details. 496the previously one, GDB prompts for confirmation since the results may
497be bizarre. See the GDB manual entry regarding @code{jump} for
498details.
498@end table 499@end table
499 500
500 These commands interpret a numeric argument as a repeat count, when 501 These commands interpret a numeric argument as a repeat count, when