mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-18 20:52:46 +08:00
Spelling fixes
darcs-hash:20051008093310-ac50b-077bd66d4b2c3f98de421e04b125f0d89e9d503a.gz
This commit is contained in:
parent
f23fa4827a
commit
93eed7bc35
|
@ -1962,7 +1962,7 @@ static int builtin_source( wchar_t ** argv )
|
|||
/**
|
||||
Make the specified job the first job of the job list. Moving jobs
|
||||
around in the list makes the list reflect the order in which the
|
||||
jobs where used.
|
||||
jobs were used.
|
||||
*/
|
||||
static void make_first( job_t *j )
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
\subsection count-description Description
|
||||
|
||||
<tt>count</tt> returns the number of arguments that where passed to
|
||||
<tt>count</tt> returns the number of arguments that were passed to
|
||||
it. This is usually used to find out how many elements an environment
|
||||
variable array contains, but this is not the only potential usage for
|
||||
the count command.
|
||||
|
|
|
@ -10,7 +10,7 @@ The <tt>set</tt> builtin causes fish to assign the variable <tt>VARIABLE_NAME</t
|
|||
- <tt>-g</tt> or <tt>--global</tt> causes the specified environment variable to be made global. If this option is not supplied, the specified variable will dissapear when the current block ends
|
||||
- <tt>-l</tt> or <tt>--local</tt> forces the specified environment variable to be made local to the current block, even if the variable already exists and is non-local
|
||||
- <tt>-n</tt> or <tt>--names</tt> List only the names of all defined variables
|
||||
- <tt>-q</tt> or <tt>--query</tt> test if the specified variable names are defined. Does not output anything, but the builtins exit status is the number of variables specified that where not defined.
|
||||
- <tt>-q</tt> or <tt>--query</tt> test if the specified variable names are defined. Does not output anything, but the builtins exit status is the number of variables specified that were not defined.
|
||||
- <tt>-u</tt> or <tt>--unexport</tt> causes the specified environment not to be exported to child processes
|
||||
- <tt>-U</tt> or <tt>--universal</tt> causes the specified environment variable to be made universal. If this option is supplied, the variable will be shared between all the current users fish instances on the current computer, and will be preserved across restarts of the shell.
|
||||
- <tt>-x</tt> or <tt>--export</tt> causes the specified environment variable to be exported to child processes
|
||||
|
|
2
input.c
2
input.c
|
@ -201,7 +201,7 @@ static int inputrc_skip_block_count=0;
|
|||
static int inputrc_block_count=0;
|
||||
|
||||
/**
|
||||
True if syntax errors where found in the inputrc file
|
||||
True if syntax errors were found in the inputrc file
|
||||
*/
|
||||
static int inputrc_error = 0;
|
||||
|
||||
|
|
2
parser.c
2
parser.c
|
@ -75,7 +75,7 @@ The fish parser. Contains functions for parsing code.
|
|||
/**
|
||||
Error message used when the end of a block can't be located
|
||||
*/
|
||||
#define BLOCK_END_ERR_MSG L"Could not locate end of block. The 'end' command is missing, misspelled or a preceeding ';' is missing."
|
||||
#define BLOCK_END_ERR_MSG L"Could not locate end of block. The 'end' command is missing, misspelled or a preceding ';' is missing."
|
||||
|
||||
/**
|
||||
Error message on reaching maximum number of block calls
|
||||
|
|
2
proc.c
2
proc.c
|
@ -735,7 +735,7 @@ void proc_update_jiffies()
|
|||
Check if there are buffers associated with the job, and select on
|
||||
them for a while if available.
|
||||
|
||||
\return 1 if buffers where avaialble, zero otherwise
|
||||
\return 1 if buffers were avaialble, zero otherwise
|
||||
*/
|
||||
static int select_try( job_t *j )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user