diff options
author | sewardj <unknown> | 2000-03-10 19:50:45 +0000 |
---|---|---|
committer | sewardj <unknown> | 2000-03-10 19:50:45 +0000 |
commit | 0d2aee5f471ac81b51aaf73791586428b7020274 (patch) | |
tree | e6b640f4751a58dcd28594dc682a9d851fc0beec /ghc/interpreter/command.h | |
parent | 37fe8f8c1223269045f011f67bfc906c8fda9ef9 (diff) | |
download | haskell-0d2aee5f471ac81b51aaf73791586428b7020274.tar.gz |
[project @ 2000-03-10 19:50:44 by sewardj]
Major cleanup of header files. Merge the 5 deleted files into connect.h.
Organise connect.h to gather declarations into roughtly related
categories.
Diffstat (limited to 'ghc/interpreter/command.h')
-rw-r--r-- | ghc/interpreter/command.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/ghc/interpreter/command.h b/ghc/interpreter/command.h deleted file mode 100644 index f2f30fbaa8..0000000000 --- a/ghc/interpreter/command.h +++ /dev/null @@ -1,49 +0,0 @@ -/* -------------------------------------------------------------------------- - * Interpreter command structure - * - * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the - * Yale Haskell Group, and the Oregon Graduate Institute of Science and - * Technology, 1994-1999, All rights reserved. It is distributed as - * free software under the license in the file "License", which is - * included in the distribution. - * - * $RCSfile: command.h,v $ - * $Revision: 1.6 $ - * $Date: 1999/10/15 22:35:05 $ - * ------------------------------------------------------------------------*/ - -typedef Int Command; - -struct cmd { - String cmdString; - Command cmdCode; -}; - -extern Command readCommand Args((struct cmd *, Char, Char)); - -#define EDIT 0 -#define FIND 1 -#define LOAD 2 -#define ALSO 3 -#define PROJECT 4 -#define RELOAD 5 -#define EVAL 6 -#define TYPEOF 7 -#define HELP 8 -#define NAMES 9 -#define BADCMD 10 -#define SET 11 -#define QUIT 12 -#define SYSTEM 13 -#define CHGDIR 14 -#define INFO 15 -#define COLLECT 16 -#define SETMODULE 17 -#define DUMP 18 -#define STATS 19 -#define BROWSE 20 -#define XPLAIN 21 -#define PNTVER 22 -#define NOCMD 23 - -/*-------------------------------------------------------------------------*/ |