* target.h (target_fetch_registers): Fix comment.

This commit is contained in:
Mark Kettenis 2001-02-16 11:25:15 +00:00
parent 0f6e1ba6ee
commit 17dee195e8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-02-16 Mark Kettenis <kettenis@gnu.org>
* target.h (target_fetch_registers): Fix comment.
2001-02-15 Andrew Cagney <ac131313@redhat.com>
* f-exp.y: Include <ctype.h>.

View File

@ -599,7 +599,7 @@ extern void target_detach (char *, int);
#define target_post_wait(pid, status) \
(*current_target.to_post_wait) (pid, status)
/* Fetch register REGNO, or all regs if regno == -1. No result. */
/* Fetch at least register REGNO, or all regs if regno == -1. No result. */
#define target_fetch_registers(regno) \
(*current_target.to_fetch_registers) (regno)