Symbol: ERRORS
bin/mined/mined.h
90
#define NO_LINE (ERRORS - 1) /* Must be < 0 */
bin/mined/mined.h
91
#define FINE (ERRORS + 1)
bin/mined/mined.h
92
#define NO_INPUT (ERRORS + 2)
bin/mined/mined1.c
1000
return ERRORS;
bin/mined/mined1.c
1091
return ERRORS;
bin/mined/mined1.c
1387
while ((len = get_line(fd, text_buffer)) != ERRORS) {
bin/mined/mined1.c
1438
return ERRORS;
bin/mined/mined1.c
1575
if (modified == TRUE && ask_save() == ERRORS)
bin/mined/mined1.c
1712
return ERRORS;
bin/mined/mined1.c
1856
return ERRORS;
bin/mined/mined1.c
1868
return ERRORS;
bin/mined/mined1.c
1932
return ERRORS;
bin/mined/mined1.c
481
if (modified == TRUE && ask_save() == ERRORS)
bin/mined/mined1.c
485
if (get_file("Visit file:", new_file) == ERRORS)
bin/mined/mined1.c
517
return ERRORS;
bin/mined/mined1.c
523
return ERRORS;
bin/mined/mined1.c
536
if (writeline(fd, line->text) == ERRORS) {
bin/mined/mined1.c
543
if (count > 0L && flush_buffer(fd) == ERRORS)
bin/mined/mined1.c
549
return ERRORS;
bin/mined/mined1.c
999
if (write_char(fd, *text++) == ERRORS)
bin/mined/mined2.c
1003
if (legal() == ERRORS) /* mark_text out of range */
bin/mined/mined2.c
1017
if (line == tail || legal() == ERRORS)
bin/mined/mined2.c
1035
return (*textp == '\0') ? ERRORS : FINE;
bin/mined/mined2.c
1056
if ((fd = scratch_file(WRITE)) == ERRORS)
bin/mined/mined2.c
1065
if (write_char(fd, *textp) == ERRORS) {
bin/mined/mined2.c
1078
if (flush_buffer(fd) == ERRORS) {
bin/mined/mined2.c
1118
int fd = ERRORS; /* Filedescriptor to buffer */
bin/mined/mined2.c
1133
return ERRORS;
bin/mined/mined2.c
1142
return ERRORS;
bin/mined/mined2.c
1204
if (get_string(message, exp_buf, FALSE) == ERRORS)
bin/mined/mined2.c
1271
if (get_string(mess_buf, replacement, FALSE) == ERRORS)
bin/mined/mined2.c
210
if (get_number("Please enter line number.", &number) == ERRORS)
bin/mined/mined2.c
230
if (forward_scroll() == ERRORS)
bin/mined/mined2.c
251
if (reverse_scroll() == ERRORS)
bin/mined/mined2.c
322
if (forward_scroll() != ERRORS)
bin/mined/mined2.c
336
return ERRORS;
bin/mined/mined2.c
354
return ERRORS; /* Top of file. Can't scroll */
bin/mined/mined2.c
552
if (insert(cur_line, cur_text, buffer) == ERRORS)
bin/mined/mined2.c
641
return ERRORS;
bin/mined/mined2.c
792
if ((fd = scratch_file(READ)) == ERRORS)
bin/mined/mined2.c
833
int ret = ERRORS;
bin/mined/mined2.c
836
if (get_line(fd, line_buffer) == ERRORS)
bin/mined/mined2.c
840
if (insert(line, cur_text, line_buffer) == ERRORS)
bin/mined/mined2.c
844
while ((ret = get_line(fd, line_buffer)) != ERRORS && ret != NO_LINE)
bin/mined/mined2.c
894
if ((yank_fd = scratch_file(READ)) == ERRORS) {
bin/mined/mined2.c
915
ret = ERRORS;
bin/mined/mined2.c
923
if (ret != ERRORS) /* Bad write */