home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.bin / lisp / liszt / lversion.l < prev    next >
Encoding:
Text File  |  1987-12-15  |  599 b   |  21 lines

  1. ;; lversion.l
  2. ;;                -[Tue Nov 22 08:56:16 1983 by jkf]-
  3. ;;
  4. ;; this defines this symbols:
  5. ;;   this-liszt-version-built: ctime string which tells when this liszt
  6. ;;    was built.
  7. ;;   compiler-name: the banner printed out when liszt starts up
  8.  
  9. ;; this file is not sccsed because it only contains version number
  10. ;; information.
  11.  
  12. (setq this-liszt-version-built (status ctime))
  13.  
  14. (setq compiler-name
  15.    (concat "Liszt "
  16.        #.(cond ((status feature for-vax) "vax")
  17.               ((status feature for-tahoe) "CCI tahoe")
  18.            ((status feature for-68k) "68000")
  19.            (t "(unknown machine)"))
  20.        " version 8.39a"))
  21.