Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions edlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@

DAS_ARRAY_T *buffer = 0;

/* External variables */
extern int exiting;

/* functions */

#ifndef __STDC__
Expand Down Expand Up @@ -403,6 +406,8 @@ read_line (char *prompt)
}
while (c != EOF && c != '\n');
#endif /* SHIFT_JIS */
if (c == EOF)
exiting = 1;
return DScstr (ds);
}

Expand Down