qouted -> quoted
This commit is contained in:
parent
88965415ff
commit
df21ad3c47
3 changed files with 7 additions and 7 deletions
|
@ -167,7 +167,7 @@ char *GetNextArgument(char *indata,char **token)
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
*
|
*
|
||||||
* Gets the next "word" of input from char string indata.
|
* 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
|
* Return value is ptr to indata,updated to point to text after the word
|
||||||
* which is extracted.
|
* which is extracted.
|
||||||
* token is the extracted word, which is copied into a malloced
|
* token is the extracted word, which is copied into a malloced
|
||||||
|
@ -188,7 +188,7 @@ char *GetNextArgument(char *indata,char **token)
|
||||||
start = t;
|
start = t;
|
||||||
while(!isspace(*t)&&(*t != 0))
|
while(!isspace(*t)&&(*t != 0))
|
||||||
{
|
{
|
||||||
/* Check for qouted text */
|
/* Check for quoted text */
|
||||||
if(*t == '"')
|
if(*t == '"')
|
||||||
{
|
{
|
||||||
t++;
|
t++;
|
||||||
|
|
|
@ -227,7 +227,7 @@ void NukeToken(char **pstr)
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
*
|
*
|
||||||
* Gets the next "word" of input from string indata.
|
* 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
|
* Return value is ptr to indata,updated to point to text after the word
|
||||||
* which is extracted.
|
* which is extracted.
|
||||||
* token is the extracted word, which is copied into a malloced
|
* 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 &&
|
(dnum &&
|
||||||
strchr(delims, *t)) ) )
|
strchr(delims, *t)) ) )
|
||||||
{
|
{
|
||||||
/* Check for qouted text */
|
/* Check for quoted text */
|
||||||
if (IsQuote(*t))
|
if (IsQuote(*t))
|
||||||
{
|
{
|
||||||
char c = *t;
|
char c = *t;
|
||||||
|
@ -307,7 +307,7 @@ char *DoGetNextToken(char *indata, char **token, char *spaces, char *delims,
|
||||||
/* copy token */
|
/* copy token */
|
||||||
while(start < end)
|
while(start < end)
|
||||||
{
|
{
|
||||||
/* Check for qouted text */
|
/* Check for quoted text */
|
||||||
if(IsQuote(*start))
|
if(IsQuote(*start))
|
||||||
{
|
{
|
||||||
char c = *start;
|
char c = *start;
|
||||||
|
|
|
@ -304,9 +304,9 @@ its syntax is here:
|
||||||
|
|
||||||
When FvwmButtons finds such an Exec command, the button will remain
|
When FvwmButtons finds such an Exec command, the button will remain
|
||||||
pushed in until a window whose name or class matches the
|
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
|
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.
|
contains no characters, then the button will pop out immediately.
|
||||||
Note that users can continue pressing the button, and re-executing the
|
Note that users can continue pressing the button, and re-executing the
|
||||||
command, even when it looks "pressed in."
|
command, even when it looks "pressed in."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue