diff options
| author | Richard Brooksby | 2001-12-07 13:26:30 +0000 |
|---|---|---|
| committer | Richard Brooksby | 2001-12-07 13:26:30 +0000 |
| commit | c864931fe4271b6592ca4a76ce856938d263c74a (patch) | |
| tree | d7c3e93d1fa587ba662b2117bb3b753e6c652a81 /mps/code | |
| parent | c0bb4cd3cde4e17fd066c1257ffe344eebf0887e (diff) | |
| download | emacs-c864931fe4271b6592ca4a76ce856938d263c74a.tar.gz emacs-c864931fe4271b6592ca4a76ce856938d263c74a.zip | |
Changing "hopename" variable to "scmid" so that it's not specific to hope.
Copied from Perforce
Change: 24914
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/misc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/misc.h b/mps/code/misc.h index b9e7b40bc14..c8b4d579a14 100644 --- a/mps/code/misc.h +++ b/mps/code/misc.h | |||
| @@ -52,14 +52,14 @@ enum { | |||
| 52 | typedef const struct SrcIdStruct *SrcId; | 52 | typedef const struct SrcIdStruct *SrcId; |
| 53 | typedef const struct SrcIdStruct { | 53 | typedef const struct SrcIdStruct { |
| 54 | const char *file; | 54 | const char *file; |
| 55 | const char *hopename; | 55 | const char *scmid; |
| 56 | const char *build_date; | 56 | const char *build_date; |
| 57 | const char *build_time; | 57 | const char *build_time; |
| 58 | } SrcIdStruct; | 58 | } SrcIdStruct; |
| 59 | 59 | ||
| 60 | #define SRCID(id, hopename) \ | 60 | #define SRCID(id, scmid) \ |
| 61 | static SrcIdStruct FileSrcIdStruct = \ | 61 | static SrcIdStruct FileSrcIdStruct = \ |
| 62 | {__FILE__, (hopename), __DATE__, __TIME__}; \ | 62 | {__FILE__, (scmid), __DATE__, __TIME__}; \ |
| 63 | SrcId id ## SrcId = &FileSrcIdStruct | 63 | SrcId id ## SrcId = &FileSrcIdStruct |
| 64 | 64 | ||
| 65 | 65 | ||