qouted -> quoted

This commit is contained in:
purplerain 2023-08-30 05:04:53 +00:00
parent 88965415ff
commit df21ad3c47
Signed by: purplerain
GPG Key ID: F42C07F07E2E35B7
3 changed files with 7 additions and 7 deletions

View File

@ -167,7 +167,7 @@ char *GetNextArgument(char *indata,char **token)
/****************************************************************************
*
* Gets the next "word" of input from char string indata.
* "word" is a string with no spaces, or a qouted string.
* "word" is a string with no spaces, or a quoted string.
* Return value is ptr to indata,updated to point to text after the word
* which is extracted.
* token is the extracted word, which is copied into a malloced
@ -188,7 +188,7 @@ char *GetNextArgument(char *indata,char **token)
start = t;
while(!isspace(*t)&&(*t != 0))
{
/* Check for qouted text */
/* Check for quoted text */
if(*t == '"')
{
t++;

View File

@ -227,7 +227,7 @@ void NukeToken(char **pstr)
/****************************************************************************
*
* Gets the next "word" of input from string indata.
* "word" is a string with no spaces, or a qouted string.
* "word" is a string with no spaces, or a quoted string.
* Return value is ptr to indata,updated to point to text after the word
* which is extracted.
* token is the extracted word, which is copied into a malloced
@ -273,7 +273,7 @@ char *DoGetNextToken(char *indata, char **token, char *spaces, char *delims,
(dnum &&
strchr(delims, *t)) ) )
{
/* Check for qouted text */
/* Check for quoted text */
if (IsQuote(*t))
{
char c = *t;
@ -307,7 +307,7 @@ char *DoGetNextToken(char *indata, char **token, char *spaces, char *delims,
/* copy token */
while(start < end)
{
/* Check for qouted text */
/* Check for quoted text */
if(IsQuote(*start))
{
char c = *start;

View File

@ -304,9 +304,9 @@ its syntax is here:
When FvwmButtons finds such an Exec command, the button will remain
pushed in until a window whose name or class matches the
qouted portion of the command is encountered. This is intended to
quoted portion of the command is encountered. This is intended to
provide visual feedback to the user that the action he has requested
will be performed. If the qouted portion
will be performed. If the quoted portion
contains no characters, then the button will pop out immediately.
Note that users can continue pressing the button, and re-executing the
command, even when it looks "pressed in."