diff options
author | Tom Tromey <tom@tromey.com> | 2019-06-27 16:05:25 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-07-17 12:19:03 -0600 |
commit | ae2b53806d3ce384e349c722b21a7ad246102d5b (patch) | |
tree | e905d1a686c7a2d7cd0e39a8614e2e7d45783ec1 /gdb | |
parent | 1ce3e8442e5bab6f700f5f011de56201f76b8461 (diff) | |
download | gdb-ae2b53806d3ce384e349c722b21a7ad246102d5b.zip gdb-ae2b53806d3ce384e349c722b21a7ad246102d5b.tar.gz gdb-ae2b53806d3ce384e349c722b21a7ad246102d5b.tar.bz2 |
Fix comment typos
This fixes a couple of comment typos that I noticed.
gdb/ChangeLog
2019-07-17 Tom Tromey <tom@tromey.com>
* tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
* tui/tui-win.c (tui_resize_all): Fix typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-data.c | 2 | ||||
-rw-r--r-- | gdb/tui/tui-win.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 64e3a1b..c731826 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-07-17 Tom Tromey <tom@tromey.com> + * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo. + * tui/tui-win.c (tui_resize_all): Fix typo. + +2019-07-17 Tom Tromey <tom@tromey.com> + * tui/tui-wingeneral.h (tui_refresh_all): Update. * tui/tui-wingeneral.c (make_all_visible): Use foreach. (tui_refresh_all): Remove "list" parameter. Use foreach. diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c index eacf174..70c14ef 100644 --- a/gdb/tui/tui-data.c +++ b/gdb/tui/tui-data.c @@ -120,7 +120,7 @@ tui_clear_source_windows () } -/* Clear the pertinant detail in the source windows. */ +/* Clear the pertinent detail in the source windows. */ void tui_clear_source_windows_detail () { diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c index f83281f..a7f87e1 100644 --- a/gdb/tui/tui-win.c +++ b/gdb/tui/tui-win.c @@ -534,7 +534,7 @@ tui_rehighlight_all (void) } /* Resize all the windows based on the terminal size. This function - gets called from within the readline sinwinch handler. */ + gets called from within the readline SIGWINCH handler. */ void tui_resize_all (void) { |