index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
bin
/
sh
/
eval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
sh: Reindent evaltree().
jilles
2010-10-31
1
-76
/
+76
*
sh: Use iteration instead of recursion to evaluate semicolon lists.
jilles
2010-10-31
1
-5
/
+10
*
sh: Tweak some string constants to reduce code size.
jilles
2010-10-29
1
-1
/
+1
*
In the spirit of r90111, depend on c89 and remove the "STATIC" macro
obrien
2010-10-13
1
-18
/
+18
*
Consistently use "STATIC" for all functions in order to be able to set
obrien
2010-10-13
1
-2
/
+2
*
sh: Fix exit status if return is used within a loop condition.
jilles
2010-09-11
1
-0
/
+2
*
sh: Get rid of some magic numbers.
jilles
2010-09-04
1
-2
/
+2
*
sh: Add a forgotten const.
jilles
2010-08-13
1
-1
/
+1
*
sh: Return 0 from eval if no command was given.
jilles
2010-08-03
1
-1
/
+7
*
sh: Recognize "--" in . and exec.
jilles
2010-05-28
1
-0
/
+6
*
sh: Have only one copy of _PATH_STDPATH in the binary.
jilles
2010-05-08
1
-3
/
+2
*
sh: Apply locale vars on builtins, recognize LC_MESSAGES as a locale var.
jilles
2010-05-05
1
-0
/
+4
*
sh: Do not abort on a redirection error on a compound command.
jilles
2010-03-14
1
-4
/
+42
*
sh: Do not abort on a redirection error if there is no command word.
jilles
2010-03-13
1
-1
/
+7
*
sh: Make sure to popredir() even if a function caused an error.
jilles
2010-03-06
1
-1
/
+3
*
sh: Make sure to popredir() even if a special builtin caused an error.
jilles
2010-03-06
1
-2
/
+3
*
sh: Improve the command builtin:
jilles
2010-03-06
1
-32
/
+63
*
sh: Send the "not found" message for builtin <cmd> to redirected fd 2.
jilles
2010-01-03
1
-5
/
+11
*
sh: Fix some bugs with backquoted builtins:
jilles
2010-01-01
1
-11
/
+12
*
sh: Allow command -pv and command -pV (lookup using _PATH_STDPATH).
jilles
2009-12-31
1
-1
/
+1
*
sh: Ensure funcnest is decremented if there was an error in the function.
jilles
2009-12-30
1
-2
/
+3
*
sh: Various warning fixes (from WARNS=6 NO_WERROR=1):
jilles
2009-12-27
1
-4
/
+3
*
Fix some cases where file descriptors from redirections leak to programs.
jilles
2009-11-29
1
-1
/
+0
*
Fix various things about SIGINT handling:
jilles
2009-11-22
1
-1
/
+1
*
sh: Ensure the same command input file is on top after executing a builtin.
jilles
2009-11-22
1
-0
/
+3
*
sh: Send the "xyz: not found" message to redirected fd 2.
jilles
2009-10-06
1
-7
/
+2
*
sh: Fix crash with empty functions (f() { }) introduced in r196483
jilles
2009-08-28
1
-2
/
+2
*
sh: Fix crash when undefining or redefining a currently executing function.
jilles
2009-08-23
1
-2
/
+5
*
Quote -x tracing output so it is unambiguous.
jilles
2009-06-23
1
-2
/
+17
*
Do not fork for a subshell if it is the last thing this shell is doing
jilles
2009-06-23
1
-2
/
+2
*
sh: Improve handling of setjmp/longjmp volatile:
jilles
2009-06-23
1
-15
/
+7
*
Avoid leaving unnecessary waiting shells in many forms of sh -c COMMAND.
jilles
2009-06-13
1
-8
/
+11
*
Don't skip forking for an external command if any traps are active.
jilles
2009-06-13
1
-1
/
+1
*
correctly test for __GNUC__ macro (non-GCC compilers do not have it defined a...
rse
2009-06-01
1
-1
/
+1
*
Fix the eval command in combination with set -e. Before this change the shell
stefanf
2009-05-31
1
-3
/
+5
*
Don't let trailing empty lines overwrite the result of the last command with 0.
stefanf
2009-04-04
1
-1
/
+2
*
Fix $? at the first command of a function. The previous exit status was saved
stefanf
2008-11-23
1
-0
/
+1
*
Pass the correct flags to expandarg() for NFROMFD and NTOFD. This fixes a
stefanf
2008-07-30
1
-1
/
+1
*
The exit status of a case statement where none of the patterns is matched
stefanf
2007-10-04
1
-0
/
+1
*
Merge NetBSD's revision 1.86: Don't crash on "<cmd> | { }".
stefanf
2006-06-15
1
-1
/
+1
*
Implement the PS4 variable which is defined by the POSIX User Portability
stefanf
2006-06-15
1
-3
/
+8
*
Implement some of the differences between special built-ins and other builtins
stefanf
2006-04-09
1
-13
/
+9
*
Remove some white space at EOL.
schweikh
2006-02-04
1
-3
/
+3
*
Add the times builtin. It reports the user and system time for the shell
stefanf
2005-12-04
1
-0
/
+26
*
Add the POSIX options -v and -V to the 'command' builtin. Both describe the
stefanf
2005-10-28
1
-1
/
+13
*
Pass the EV_TESTED flag to evalloop() and evalfor(). This fixes unwanted
stefanf
2005-09-10
1
-8
/
+8
*
Pass the EV_TESTED flag to the left operand of NSEMI nodes. This fixes
stefanf
2005-09-10
1
-1
/
+1
*
Exit the shell if a pipeline that is not preceded by ! fails and set -e is
stefanf
2005-09-10
1
-3
/
+7
*
Print pointers with %p rather than casting them to long.
stefanf
2005-09-05
1
-3
/
+3
*
Remove clause 3 from the UCB licenses.
markm
2004-04-06
1
-4
/
+0
[next]