-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src/cmd/ksh93/sh/array.c: nv_putsub(): - Remove some dead code. The expression 'n=ap->maxi-ap->maxi' subtracts ap->maxi from itself, so it always yields zero, so that memset() call is never executed. This nonsense was added in 93p+ 2004-08-11. src/cmd/INIT/mkdeps.sh: - Fix name of error_out() function. Good thing it virtually never gets called... (re: 71c4095) src/cmd/INIT/include/link_ar.mam: - Avoid noisy log: disable xtrace while figuring out which obsolete *.o files to delete from the library archive. (re: 57f51b6) src/cmd/ksh93/tests/{arith,comvario,math,subshell}.sh: - More whitespace indentation fixes.
- Loading branch information
Showing
7 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ note() | |
printf "$0: %s\\n" "$@" >&2 | ||
} | ||
|
||
err_out() | ||
error_out() | ||
{ | ||
note "$@" | ||
exit 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters