diff --git a/app/fvwm/libs/ModParse.c b/app/fvwm/libs/ModParse.c index 9186edad..dcfad130 100644 --- a/app/fvwm/libs/ModParse.c +++ b/app/fvwm/libs/ModParse.c @@ -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++; diff --git a/app/fvwm/libs/Parse.c b/app/fvwm/libs/Parse.c index 633153b2..c97e83a9 100644 --- a/app/fvwm/libs/Parse.c +++ b/app/fvwm/libs/Parse.c @@ -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; diff --git a/app/fvwm/modules/FvwmButtons/FvwmButtons.1 b/app/fvwm/modules/FvwmButtons/FvwmButtons.1 index 18d13729..70365e1a 100644 --- a/app/fvwm/modules/FvwmButtons/FvwmButtons.1 +++ b/app/fvwm/modules/FvwmButtons/FvwmButtons.1 @@ -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."