diff options
author | Tom de Vries <tdevries@suse.de> | 2024-10-08 08:24:13 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-10-08 08:24:13 +0200 |
commit | 0576fe8146527d871558d82d3e4e99d85f2115a7 (patch) | |
tree | 62f4cb2af514c69276e2da22ffb78ca34bade92a /gdb/cli | |
parent | 99fd53b19dddeb232e169cc5a3918a2adf7d3da2 (diff) | |
download | gdb-0576fe8146527d871558d82d3e4e99d85f2115a7.zip gdb-0576fe8146527d871558d82d3e4e99d85f2115a7.tar.gz gdb-0576fe8146527d871558d82d3e4e99d85f2115a7.tar.bz2 |
[gdb/contrib] Add more separators in spellcheck.sh
Add two more separators in spellcheck.sh: colon and comma.
Doing so triggers the "inbetween->between" rule, which gives an incorrect
result. Override this with "inbetween->between, in between, in-between" [1],
in a new file gdb/contrib/common-misspellings.txt.
Fix the following common misspellings:
...
everytime -> every time
sucess -> success
thru -> through
transfered -> transferred
inbetween -> between, in between, in-between
...
Verified with spellcheck.sh. Tested on x86_64-linux.
[1] https://www.grammarly.com/blog/commonly-confused-words/in-between-or-inbetween/
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/cli/cli-interp.c b/gdb/cli/cli-interp.c index fa5d70e..1817573 100644 --- a/gdb/cli/cli-interp.c +++ b/gdb/cli/cli-interp.c @@ -228,7 +228,7 @@ cli_interp::exec (const char *command_str) interpreter which has a new ui_file for gdb_stdout, use that one instead of the default. - It is important that it gets reset everytime, since the user + It is important that it gets reset every time, since the user could set gdb to use a different interpreter. */ ui_file *old_stream = m_cli_uiout->set_stream (gdb_stdout); SCOPE_EXIT { m_cli_uiout->set_stream (old_stream); }; |