~ubuntu-branches/ubuntu/intrepid/dash/intrepid-updates

« back to all changes in this revision

Viewing changes to src/input.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-07-18 15:38:47 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20070718153847-z900khc1ukawd3r7
Tags: upstream-0.5.4
ImportĀ upstreamĀ versionĀ 0.5.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
void popallfiles(void);
65
65
void closescript(void);
66
66
 
67
 
#define pgetc_macro()   (--parsenleft >= 0? *parsenextc++ : preadbuffer())
 
67
#define pgetc_macro() \
 
68
        (--parsenleft >= 0 ? (signed char)*parsenextc++ : preadbuffer())