aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar Łukasz Niemier <lukasz@niemier.pl>2012-11-18 11:23:22 +0100
committerGravatar Łukasz Niemier <lukasz@niemier.pl>2012-11-18 11:23:22 +0100
commit47df1ae40adecd0a02fc7dd06ab0745cb18c3fe0 (patch)
tree13bf3e8fdcae60fdfb5fa5e26c95818dc7a49790 /builtin.h
parentb79854ad1aa814d9d35d76a1929b4726fa4bffa5 (diff)
Remove trailing whitespaces and change tabs to spaces
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/builtin.h b/builtin.h
index e4683f00..cb648338 100644
--- a/builtin.h
+++ b/builtin.h
@@ -1,5 +1,5 @@
/** \file builtin.h
- Prototypes for functions for executing builtin functions.
+ Prototypes for functions for executing builtin functions.
*/
#ifndef FISH_BUILTIN_H
@@ -15,9 +15,9 @@ class parser_t;
enum
{
- COMMAND_NOT_BUILTIN,
- BUILTIN_REGULAR,
- BUILTIN_FUNCTION
+ COMMAND_NOT_BUILTIN,
+ BUILTIN_REGULAR,
+ BUILTIN_FUNCTION
}
;
@@ -49,7 +49,7 @@ enum
/**
Error message for unknown switch
*/
-#define BUILTIN_ERR_UNKNOWN _( L"%ls: Unknown option '%ls'\n" )
+#define BUILTIN_ERR_UNKNOWN _( L"%ls: Unknown option '%ls'\n" )
/**
Error message for invalid character in variable name
@@ -67,7 +67,7 @@ enum
#define BUILTIN_FOR_ERR_IN _( L"%ls: Second argument must be 'in'\n" )
/**
- Error message for insufficient number of arguments
+ Error message for insufficient number of arguments
*/
#define BUILTIN_FOR_ERR_COUNT _( L"%ls: Expected at least two arguments, got %d\n")
@@ -113,7 +113,7 @@ extern int builtin_err_redirect;
/**
- Initialize builtin data.
+ Initialize builtin data.
*/
void builtin_init();
@@ -128,12 +128,12 @@ void builtin_destroy();
int builtin_exists( const wcstring &cmd );
/**
- Execute a builtin command
+ Execute a builtin command
\param parser The parser being used
- \param argv Array containing the command and parameters
+ \param argv Array containing the command and parameters
of the builtin. The list is terminated by a
- null pointer. This syntax resembles the syntax
+ null pointer. This syntax resembles the syntax
for exec.
\param io the io redirections to perform on this builtin.