home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / code / microema.sit / resources / emacsversion.r < prev   
Encoding:
Text File  |  1989-06-09  |  1.0 KB  |  46 lines  |  [TEXT/Earl]

  1. /* Create the version string for Kermit with the last compi-    */
  2. /* lation time. Compile this resource definition with Rez.    */
  3. /* Created: 10/12/87 Matthias Aebi                */
  4. /* Modifications:                        */
  5. /*    Adopted for use with ╡Emacs by Earle Horton        */
  6.  
  7. INCLUDE "::╡emacs.rsrc";
  8.  
  9. type 'Earl' {
  10.     byte = 73;        /* the string length */
  11.     array CompileTime {
  12.         string;
  13.         byte;        /* month first digit */
  14.         byte;        /* month second digit */
  15.         byte = '/';
  16.         byte;        /* day first digit */
  17.         byte;        /* day second digit */
  18.         byte = '/';
  19.         byte;        /* year first digit */
  20.         byte;        /* year second digit */
  21.         byte = ' ';
  22.         byte;        /* hour first digit */
  23.         byte;        /* hour second digit */
  24.         byte = ':';
  25.         byte;        /* minute first digit */
  26.         byte;        /* minute second digit */
  27.         string;        /* more junk */
  28.     };
  29. };
  30.  
  31. resource 'Earl' (0) {
  32.     {    "╡Emacs Version 3.9e ╤ ",
  33.         ($$Month/10)+48,
  34.         ($$Month%10)+48,
  35.         ($$Day/10)+48,
  36.         ($$Day%10)+48,
  37.         ($$Year%100/10)+48,
  38.         ($$Year%10)+48,
  39.         ($$Hour/10)+48,
  40.         ($$Hour%10)+48,
  41.         ($$Minute/10)+48,
  42.         ($$Minute%10)+48,
  43.         "\n        Last edit by Earle R. Horton",
  44.     }
  45. };
  46.