~ubuntu-branches/ubuntu/saucy/ng/saucy

« back to all changes in this revision

Viewing changes to shell.c

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2008-07-17 08:10:34 UTC
  • mfrom: (4.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080717081034-s7iitiihm9hl4jjg
Tags: 1.5~beta1-3
Bumped to Standards-Version: 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: shell.c,v 1.1.1.1 2000/06/27 01:47:56 amura Exp $ */
 
1
/* $Id: shell.c,v 1.2 2001/02/18 17:07:27 amura Exp $ */
2
2
/*
3
3
 *              Shell commands.
4
4
 * The file contains the command
8
8
 
9
9
/*
10
10
 * $Log: shell.c,v $
 
11
 * Revision 1.2  2001/02/18 17:07:27  amura
 
12
 * append AUTOSAVE feature (but NOW not work)
 
13
 *
11
14
 * Revision 1.1.1.1  2000/06/27 01:47:56  amura
12
15
 * import to CVS
13
16
 *
51
54
                bp->b_doto = wp->w_doto;
52
55
                curbp = obp;
53
56
                curwp = owp;
 
57
#ifdef  AUTOSAVE        /* 96.12.24 by M.Suzuki */
 
58
                bp->b_flag &= ~(BFCHG | BFACHG);
 
59
#else
54
60
                bp->b_flag &= ~BFCHG;
 
61
#endif  /* AUTOSAVE     */
55
62
        }
56
63
        unlink(result);
57
64
        return s;