Commit Graph

1862 Commits

Author SHA1 Message Date
Abdulaziz Ghuloum 4a813dd5f8 segfaulting state 2006-12-03 18:42:52 -05:00
Abdulaziz Ghuloum 261a5d4ff8 * If I add one data, the program crashes. This commit is to revert
to the last code that builds before I screw it up.
2006-12-03 15:32:40 -05:00
Abdulaziz Ghuloum bdcfd8beb0 * Added a T tag in the fasl file format denoting a thunk.
* T is followed by a code object.
2006-12-03 15:13:36 -05:00
Abdulaziz Ghuloum 6b2e48efb7 before adding make-once thunks 2006-12-03 14:36:45 -05:00
Abdulaziz Ghuloum 6c30b75e57 * Copy propagation for constants and primrefs works. 2006-12-03 13:45:51 -05:00
Abdulaziz Ghuloum 787264e8cf * Vars now have a ``referenced'' field to be used by the optimizer.
* Uncover-assigned is renamed to uncover-assigned/referenced.
2006-12-03 11:23:03 -05:00
Abdulaziz Ghuloum 0e07a37f60 added documentation to new-cafe 2006-12-03 09:17:28 -05:00
Abdulaziz Ghuloum 99757011a6 added a couple of docs 2006-12-03 09:05:24 -05:00
Abdulaziz Ghuloum df16339018 removed some junk from libchezio 2006-12-03 05:17:08 -05:00
Abdulaziz Ghuloum c33c80285e deleted some junk from compiler 2006-12-02 18:20:20 -05:00
Abdulaziz Ghuloum 9758e3702f removed some junk code 2006-12-02 16:11:43 -05:00
Abdulaziz Ghuloum d1cbb8ce2e Write displays "\r" properly. 2006-12-02 16:07:51 -05:00
Abdulaziz Ghuloum 90ef531920 fixed usage message 2006-12-02 16:04:18 -05:00
Abdulaziz Ghuloum 8642ac5305 * Write now displays "\n" properly. 2006-12-02 15:58:41 -05:00
Abdulaziz Ghuloum ee774b2262 added a vim option to handle syntax of ikarusdoc 2006-12-02 12:23:10 -05:00
Abdulaziz Ghuloum 8d64a3d4b3 added a multipart fields for matching keywords 2006-12-02 12:09:11 -05:00
Abdulaziz Ghuloum bd4553ef3a added documentation for substring 2006-12-02 11:34:47 -05:00
Abdulaziz Ghuloum 953031954e renamed again to ikarusdoc 2006-12-02 11:28:57 -05:00
Abdulaziz Ghuloum 6fa8753516 renamed:
lab/find.ss => lab/ikarusfind
2006-12-02 11:22:41 -05:00
Abdulaziz Ghuloum 2d2c2e4a4a New Find Utility 2006-12-02 11:05:44 -05:00
Abdulaziz Ghuloum aac9071f2a Load now takes an optional second argument, which must be a
procedure that would be applied to every expression in the file.
The default value for this procedure is eval.
2006-12-02 10:57:50 -05:00
Abdulaziz Ghuloum e32a8cc972 --script now passes the script name as a first argument to command-line-arguments 2006-12-02 10:29:25 -05:00
Abdulaziz Ghuloum 2fdaf456f8 * Added a comment-handler parameter that binds a procedure to be invoked
everytime a multiline comment is found.
2006-12-02 10:11:57 -05:00
Abdulaziz Ghuloum c8894f1e68 * Added a lab directory for things under development.
* Added a pretty-print.ss file containing excerpts from csug7.
2006-12-02 07:31:36 -05:00
Abdulaziz Ghuloum fa1141b57d renamed current-error-handler to error-handler 2006-12-02 06:26:05 -05:00
Abdulaziz Ghuloum cd8fea1a05 removed flush-output-port from makefile.ss 2006-12-02 05:59:09 -05:00
Abdulaziz Ghuloum 431ea890a3 * bug fix: Formatted output now flushes the output port.
* --script now takes a required script name as an argument.
2006-12-02 05:56:42 -05:00
Abdulaziz Ghuloum 4261e71b24 Fixed Makefile to use the newly acquired scripting capabilities. 2006-12-02 05:34:41 -05:00
Abdulaziz Ghuloum cfc1fcdb37 * Added a --script option to ikarus. If --script is passed as an
argument, then the greeting is suppressed and no cafe is entered.

* Example 1 (non-script): script.ss contains
     #!/usr/bin/ikarus
     (display "Hello Script\n")
   
     $ ./script.ss
     Ikarus Scheme (Build 2006-12-02)
     Copyright (c) 2006 Abdulaziz Ghuloum
     
     Hello Script
     > 
  
* Example 2 (script): script.ss contains
     #!/usr/bin/ikarus --script
     (display "Hello Script\n")
   
     $ ./script.ss
     Hello Script
     $
2006-12-02 05:28:11 -05:00
Abdulaziz Ghuloum 23ff529aa2 * Load now skips the first line of a file if that line starts with
a shebang "#!".
2006-12-02 05:02:05 -05:00
Abdulaziz Ghuloum b09f5ba142 rebuilt 2006-12-01 11:18:23 -05:00
Abdulaziz Ghuloum d04eb83cf3 Added PATH search.
* If argv[0] contains a '/', then we look for argv[0]++".boot"
* Otherwise, search the path[i] for where argv[0] came from and
  append ".boot" to that.
2006-12-01 11:18:01 -05:00
Abdulaziz Ghuloum d0355ead97 Changes makefile.ss to reflect the new directory structure. 2006-12-01 10:41:13 -05:00
Abdulaziz Ghuloum 5bb14cad6e renamed:
runtime => bin
  src => lib
2006-12-01 10:40:21 -05:00
Abdulaziz Ghuloum 23dd55e7f6 removed Petite from the greeting 2006-12-01 10:20:50 -05:00
Abdulaziz Ghuloum 5e2e669683 manually fixed bzr-ignore file 2006-12-01 10:17:08 -05:00
Abdulaziz Ghuloum d24523376d * Ikarus can now be started like:
$ ikarus [-b boot-file-name] file ... [-- arg ...]
  
  files will be "load"ed sequentially after the greeting message is
  printes.  args are available from the command-line-arguments
  parameter.
2006-12-01 10:15:25 -05:00
Abdulaziz Ghuloum 0ff5b0cf75 * Added a $arg-list system primitive that accesses the pcb->arg_list
field.
* Added a command-line-arguments parameter to the core.
2006-12-01 10:02:05 -05:00
Abdulaziz Ghuloum 4b060b685f Added an arg_list field to the pcb which contains all command-line
arguments except -b (if it was there).
2006-12-01 09:52:12 -05:00
Abdulaziz Ghuloum f73a8c2333 added a bzr-ignore file 2006-12-01 09:24:10 -05:00
Abdulaziz Ghuloum ee0e6c91e7 Ikarus now recognizes a -b command-line argument for providing the
name of the boot file. If -b is missing, argv[0]++".boot" is used.
2006-12-01 09:23:37 -05:00
Abdulaziz Ghuloum c3401ef735 Bug fix: Equal handles numbers correctly now. 2006-11-30 18:28:44 -05:00
Abdulaziz Ghuloum 5cc06893ec The source now "works" on both OSX and Linux. 2006-11-30 18:20:45 -05:00
Abdulaziz Ghuloum 04238a8c38 re-ported to osx 2006-11-30 18:14:48 -05:00
Abdulaziz Ghuloum ce7b0d25cb ported back to linux 2006-11-30 18:12:01 -05:00
Abdulaziz Ghuloum c9516d07d6 removed the debugging message about gc stats at end of run 2006-11-29 18:45:13 -05:00
Abdulaziz Ghuloum 9eaaf3c438 added file-exists? and delete-file operations to libposix.ss and ikarus-runtime.c 2006-11-29 17:06:16 -05:00
Abdulaziz Ghuloum e97b39a39a implemented assoc 2006-11-28 06:54:07 -05:00
Abdulaziz Ghuloum f6a95c07d2 Removed all version names from files 2006-11-23 20:37:04 -05:00
Abdulaziz Ghuloum 10268dfc43 Fixed makefiles 2006-11-23 20:18:02 -05:00