~ubuntu-branches/ubuntu/trusty/expect/trusty

« back to all changes in this revision

Viewing changes to exp_command.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2006-10-01 22:23:00 UTC
  • mfrom: (2.1.7 edgy)
  • Revision ID: james.westby@ubuntu.com-20061001222300-08nd1wqc92mxggdq
Tags: 5.43.0-8
* Added patch from Niko Tyni <ntyni@iki.fi> to fix static library name on
  alpha, mips and mipsel (Closes: #390366).
* Added *.so symlink (Closes: #390365).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
EXTERN char *           exp_get_var _ANSI_ARGS_((Tcl_Interp *,char *));
31
31
 
32
32
EXTERN int exp_default_match_max;
33
 
EXTERN int exp_default_match_max_changed;
34
33
EXTERN int exp_default_parity;
35
34
EXTERN int exp_default_rm_nulls;
36
35
EXTERN int exp_default_close_on_eof;
37
36
 
38
 
EXTERN Tcl_CmdInfo exp_close_info;
39
 
EXTERN Tcl_CmdInfo exp_return_info;
40
 
 
41
37
EXTERN int              exp_one_arg_braced _ANSI_ARGS_((Tcl_Obj *));
42
38
EXTERN int              exp_eval_with_one_arg _ANSI_ARGS_((ClientData,
43
39
                                Tcl_Interp *, struct Tcl_Obj * CONST objv[]));
107
103
    int msize;          /* # of bytes that buffer can hold (max) */
108
104
    int umsize;         /* # of bytes (min) that is guaranteed to match */
109
105
                        /* this comes from match_max command */
110
 
    int umsize_changed; /* is umsize changed by user?  */
111
106
    int printed;        /* # of bytes written to stdout (if logging on) */
112
107
                        /* but not actually returned via a match yet */
113
108
    int echoed;         /* additional # of bytes (beyond "printed" above) */