Indentation, typo and formating fixes. Very minor patch.

darcs-hash:20070908222453-75c98-2236d962f0c9016820063e871fbbeaa42f36ef22.gz
This commit is contained in:
liljencrantz 2007-09-09 08:24:53 +10:00
parent ad02bb9b48
commit 151943f89e
4 changed files with 26 additions and 25 deletions

View File

@ -2526,9 +2526,9 @@ static int builtin_source( wchar_t ** argv )
if( res )
{
sb_printf( sb_err,
_( L"%ls: Error while reading file '%ls'\n" ),
argv[0],
argv[1] );
_( L"%ls: Error while reading file '%ls'\n" ),
argv[0],
argv[1]?argv[1]:L"<stdin>" );
}
/*

View File

@ -9,15 +9,11 @@ The emit builtin fires a generic fish event. Such events can be caught by specia
\subsection emit-example Example
The following code first defines an event handler for the generig
The following code first defines an event handler for the generic
event named 'test_event', and then emits an event of that type.
<pre>
function event_test --on-event test_event
<pre>function event_test --on-event test_event
echo event test!!!
end
emit test_event
</pre>
emit test_event</pre>

15
exec.c
View File

@ -668,13 +668,14 @@ static int set_child_group( job_t *j, process_t *p, int print_errors )
if( getpgid( p->pid) != j->pgid && print_errors )
{
debug( 1,
_( L"Could not send process %d, '%ls' in job %d, '%ls' from group %d to group %d" ),
p->pid,
p->argv[0],
j->job_id,
j->command,
getpgid( p->pid),
j->pgid );
_( L"Could not send process %d, '%ls' in job %d, '%ls' from group %d to group %d" ),
p->pid,
p->argv[0],
j->job_id,
j->command,
getpgid( p->pid),
j->pgid );
wperror( L"setpgid" );
res = -1;
}

20
main.c
View File

@ -368,8 +368,12 @@ int main( int argc, char **argv )
rel_filename = str2wcs( file );
abs_filename = wrealpath( rel_filename, 0 );
if( !abs_filename )
{
abs_filename = wcsdup(rel_filename);
}
reader_push_current_filename( intern( abs_filename ) );
free( rel_filename );
free( abs_filename );
@ -379,16 +383,16 @@ int main( int argc, char **argv )
if( res )
{
debug( 1,
_(L"Error while reading file %ls\n"),
reader_current_filename()?reader_current_filename(): _(L"Standard input") );
_(L"Error while reading file %ls\n"),
reader_current_filename()?reader_current_filename(): _(L"Standard input") );
}
reader_pop_current_filename();
}
}
}
proc_fire_event( L"PROCESS_EXIT", EVENT_EXIT, getpid(), res );
history_destroy();
proc_destroy();
builtin_destroy();
@ -397,12 +401,12 @@ int main( int argc, char **argv )
parser_destroy();
wutil_destroy();
event_destroy();
halloc_util_destroy();
env_destroy();
intern_free_all();
return res?STATUS_UNKNOWN_COMMAND:proc_get_last_status();
}