gdb: rename cmd_list_element::cmd_pointer to target
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 17 May 2021 18:01:14 +0000 (14:01 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 17 May 2021 18:01:14 +0000 (14:01 -0400)
commit9985872497e2b8c86424fcb97cd9a065f406a5c5
treea293dbd7159ddf4295a39381da29a33ab9a5b8da
parent14b42fc4a0edc412e02a6c9cfe7eb48e67da3145
gdb: rename cmd_list_element::cmd_pointer to target

cmd_pointer is another field whose name I found really not clear.  Yes,
it's a pointer to a command, the type tells me that.  But what's the
relationship of that command to the current command?  This field
contains, for an alias, the command that it aliases.  So I think that
the name "alias_target" would be more appropriate.

Also, rename "old" parameters to "target" in the functions that add
aliases.

gdb/ChangeLog:

* cli/cli-decode.h (cmd_list_element) <cmd_pointer>: Rename
to...
<alias_target>: ... this.
(add_alias_cmd): Rename old to target.
(add_info_alias): Rename old_name to target_name.
(add_com_alias): Likewise.

Change-Id: I8db36c6dd799fae155f7acd3805f6d62d98befa9
gdb/ChangeLog
gdb/cli/cli-decode.c
gdb/cli/cli-decode.h
gdb/cli/cli-setshow.c
gdb/unittests/command-def-selftests.c
This page took 0.024256 seconds and 4 git commands to generate.