mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-24 14:01:15 -03:00
Various changes to reduce fish's compiled code size
OS X release build executable size dropped from 672k to 511k
This commit is contained in:
3
proc.cpp
3
proc.cpp
@@ -72,7 +72,6 @@ Some of the code in this file is based on code from the Glibc manual.
|
||||
#include "signal.h"
|
||||
#include "event.h"
|
||||
|
||||
#include <deque>
|
||||
#include "output.h"
|
||||
|
||||
/**
|
||||
@@ -153,7 +152,7 @@ static event_t event(0);
|
||||
/**
|
||||
A stack containing the values of is_interactive. Used by proc_push_interactive and proc_pop_interactive.
|
||||
*/
|
||||
static std::deque<int> interactive_stack;
|
||||
static std::vector<int> interactive_stack;
|
||||
|
||||
void proc_init()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user