mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-05 00:01:15 -03:00
Major restructuring of the buildsystem, meaning that the documentation doesn't needlessly rebuild itself, and the size of the fish binary drops slightly
darcs-hash:20060613134328-ac50b-05ae75eb5cc081b680f38e8866fac00a679cc266.gz
This commit is contained in:
8
parser.c
8
parser.c
@@ -31,7 +31,6 @@ The fish parser. Contains functions for parsing code.
|
||||
#include "wildcard.h"
|
||||
#include "function.h"
|
||||
#include "builtin.h"
|
||||
#include "builtin_help.h"
|
||||
#include "env.h"
|
||||
#include "expand.h"
|
||||
#include "reader.h"
|
||||
@@ -256,11 +255,14 @@ The fish parser. Contains functions for parsing code.
|
||||
Size of the error string buffer
|
||||
*/
|
||||
#define ERR_STR_SZ 1024
|
||||
|
||||
/** Last error code */
|
||||
int error_code;
|
||||
static int error_code;
|
||||
|
||||
event_block_t *global_event_block=0;
|
||||
|
||||
io_data_t *block_io;
|
||||
|
||||
/** Position of last error */
|
||||
|
||||
static int err_pos;
|
||||
@@ -288,8 +290,6 @@ static array_list_t *forbidden_function;
|
||||
*/
|
||||
static int job_start_pos;
|
||||
|
||||
io_data_t *block_io;
|
||||
|
||||
/**
|
||||
List of all profiling data
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user