~ubuntu-branches/ubuntu/oneiric/clif/oneiric

« back to all changes in this revision

Viewing changes to ls.l

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2005-08-24 15:51:05 UTC
  • Revision ID: james.westby@ubuntu.com-20050824155105-0pidjap0dul4y56u
Tags: 0.93-8
* debian/control:
  + Set policy to 3.6.2.1.
* ls.l tables.h:
  + Fixed various FTBFS errors (Closes: #299667).

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#endif
32
32
#include "global.h"
33
33
#include "mystdio.h"
 
34
#include "type.h"
34
35
#include "tables.h"
35
36
#include "token.h"
36
37
#include "dbg-out.h"
518
519
  *yysptr++ = yytchar;}
519
520
#else
520
521
 
 
522
#define yy_set_interactive(is_interactive) \
 
523
        { \
 
524
        if ( ! YY_CURRENT_BUFFER ){ \
 
525
        yyensure_buffer_stack (); \
 
526
                YY_CURRENT_BUFFER_LVALUE =    \
 
527
            yy_create_buffer(yyin,YY_BUF_SIZE ); \
 
528
        } \
 
529
        YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
 
530
        }
 
531
 
521
532
void
522
533
switch_to_stdin ()
523
534
{