Raymond Toy pushed to branch issue-391-load-world-can-set-lisp-impl-ver at cmucl / cmucl

Commits:

5 changed files:

Changes:

  • src/compiler/arm/parms.lisp
    ... ... @@ -343,11 +343,11 @@
    343 343
         :key-or-value
    
    344 344
     
    
    345 345
         lisp::*unidata-path*
    
    346
    -    lisp::*lisp-implementation-version*
    
    347 346
         
    
    348 347
         ;; Some spare static symbols.  Useful for adding another static
    
    349 348
         ;; symbol without having to do a cross-compile.  Just rename one
    
    350 349
         ;; of these to the desired name.
    
    350
    +    spare-9
    
    351 351
         spare-8
    
    352 352
         spare-7
    
    353 353
         spare-6
    

  • src/compiler/ppc/parms.lisp
    ... ... @@ -295,9 +295,9 @@
    295 295
         :key-and-value
    
    296 296
         :key-or-value
    
    297 297
         
    
    298
    -    lisp::*lisp-implementation-version*
    
    299 298
         ;; Spare symbols.  Rename these when you need to add some static
    
    300 299
         ;; symbols and don't want to do a cross-compile.
    
    300
    +    spare-9
    
    301 301
         spare-8
    
    302 302
         spare-7
    
    303 303
         spare-6
    

  • src/compiler/sparc/parms.lisp
    ... ... @@ -358,11 +358,11 @@
    358 358
         *fp-constant-0f0*
    
    359 359
     
    
    360 360
         lisp::*unidata-path*
    
    361
    -    lisp::*lisp-implementation-version*
    
    362 361
         
    
    363 362
         ;; Some spare static symbols.  Useful for adding another static
    
    364 363
         ;; symbol without having to do a cross-compile.  Just rename one
    
    365 364
         ;; of these to the desired name.
    
    365
    +    spare-9
    
    366 366
         spare-8
    
    367 367
         spare-7
    
    368 368
         spare-6
    

  • src/compiler/x86/parms.lisp
    ... ... @@ -380,9 +380,10 @@
    380 380
           :key-or-value
    
    381 381
     
    
    382 382
           lisp::*unidata-path*
    
    383
    -      lisp::*lisp-implementation-version*
    
    383
    +
    
    384 384
           ;; Spare symbols.  Rename these when you need to add some static
    
    385 385
           ;; symbols and don't want to do a cross-compile.
    
    386
    +      spare-9
    
    386 387
           spare-8
    
    387 388
           spare-7
    
    388 389
           spare-6
    

  • src/lisp/lisp.c
    ... ... @@ -961,12 +961,6 @@ main(int argc, const char *argv[], const char *envp[])
    961 961
         }
    
    962 962
     #endif
    
    963 963
         
    
    964
    -#if 0
    
    965
    -#ifdef LISP_IMPLEMENTATION_VERSION
    
    966
    -    SetSymbolValue(LISP_IMPLEMENTATION_VERSION, alloc_string(cmucl_version));
    
    967
    -#endif
    
    968
    -#endif    
    
    969
    -
    
    970 964
         /*
    
    971 965
          * Pick off sigint until the lisp system gets far enough along to
    
    972 966
          * install it's own.