~ubuntu-branches/debian/sid/mksh/sid

« back to all changes in this revision

Viewing changes to main.c

  • Committer: Package Import Robot
  • Author(s): Thorsten Glaser
  • Date: 2014-10-23 09:18:38 UTC
  • Revision ID: package-import@ubuntu.com-20141023091838-gro4psbc5wzb0qdo
Tags: 50d-3
* QA upload.
* Update to CVS HEAD, the freeze is nearing, and this is better
  than the previous upload already anyway:
  - [tg] Add more tests detailing behaviour difference from GNU bash
  - [tg] Introduce a memory leak for x=<< fixing use of freed memory
    instead, bug tracked as LP#1380389 still live
  - [tg] Add x+=<< parallel to x=<<
  - [tg, ormaaj, jilles] POSIX “command” loses builtin special-ness
  - [tg] Begin fixing LP#1381965 and LP#1381993 (more field splitting)
* Urgency again high because of POSIX compliance bugfixes (last two)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include <locale.h>
35
35
#endif
36
36
 
37
 
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.284 2014/10/03 17:19:27 tg Exp $");
 
37
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.285 2014/10/12 21:58:52 tg Exp $");
38
38
 
39
39
extern char **environ;
40
40
 
1244
1244
         * non-interactive shells to exit.
1245
1245
         * XXX odd use of KEEPASN; also may not want LERROR here
1246
1246
         */
1247
 
        if (builtin_flag & SPEC_BI) {
 
1247
        if (builtin_spec) {
1248
1248
                builtin_argv0 = NULL;
1249
1249
                unwind(LERROR);
1250
1250
        }