Revision 23660,
1.4 KB
checked in by broder, 15 years ago
(diff) |
In delete:
* Apply patches from jik:
- Change the ENOMATCH error constant to DELETE_ENOMATCH to avoid
conflicting with a system error constant of the same name
|
Rev | Line | |
---|
[2182] | 1 | # Copyright 1988 Massachusetts Institute of Technology. |
---|
| 2 | # |
---|
| 3 | # For copying and distribution information, see the file |
---|
[4505] | 4 | # "mit-copying.h". |
---|
[2182] | 5 | # |
---|
[12350] | 6 | # $Id: delete_errs.et,v 1.5 1999-01-22 23:08:54 ghudson Exp $ |
---|
[2182] | 7 | # |
---|
| 8 | |
---|
| 9 | et del |
---|
| 10 | |
---|
| 11 | ec REGEXP_MISSING_QUOTED_CHAR, |
---|
| 12 | "missing quoted character after backslash" |
---|
| 13 | ec REGEXP_MISSING_BRACE, |
---|
| 14 | "missing ]" |
---|
| 15 | ec REGEXP_EMPTY_BRACES, |
---|
| 16 | "illegal empty braces" |
---|
| 17 | ec DIR_NOT_DIRECTORY, |
---|
| 18 | "internal error: directory operation on non-directory" |
---|
| 19 | ec DIR_IMPOSSIBLE_ERROR, |
---|
| 20 | "interal error: something that shouldn't happen just did" |
---|
| 21 | ec COL_COLUMNS_TOO_THIN, |
---|
| 22 | "possible internal error: listing columns too thin" |
---|
| 23 | ec DELETE_IS_DOTFILE, |
---|
| 24 | "can't delete `.' or `..'" |
---|
| 25 | ec DELETE_CANT_DEL_DIR, |
---|
| 26 | "can't delete (not file)" |
---|
| 27 | ec DELETE_DIR_NOT_EMPTY, |
---|
| 28 | "can't delete (directory not empty)" |
---|
| 29 | ec DELETE_CANT_DEL_FILE, |
---|
| 30 | "can't delete (not directory)" |
---|
| 31 | ec DELETE_NOT_DELETED, |
---|
| 32 | "" |
---|
| 33 | ec UNDEL_NOT_UNDELETED, |
---|
| 34 | "" |
---|
| 35 | ec NO_HOME_DIR, |
---|
| 36 | "can't find home directory" |
---|
| 37 | ec INTERNAL_ERROR, |
---|
| 38 | "strange internal error" |
---|
[23660] | 39 | ec DELETE_ENOMATCH, |
---|
[2182] | 40 | "no match" |
---|
| 41 | ec EXPUNGE_NOT_EXPUNGED, |
---|
| 42 | "" |
---|
[2518] | 43 | ec PURGE_TOO_MANY_ARGS, |
---|
| 44 | "command takes no arguments" |
---|
[2222] | 45 | ec PAT_NO_FILES_REQUESTED, |
---|
| 46 | "internal error: no files requested in call to find_matches or do_match" |
---|
| 47 | ec PAT_IS_MOUNT, |
---|
| 48 | "ignored (is mount point)" |
---|
| 49 | ec STACK_BAD_OP, |
---|
| 50 | "internal error: call to dostack with undefined stack operation" |
---|
| 51 | ec STACK_EMPTY, |
---|
| 52 | "internal error: attempt to pop from empty stack" |
---|
[2182] | 53 | |
---|
| 54 | end |
---|
[2222] | 55 | |
---|
Note: See
TracBrowser
for help on using the repository browser.