Changes by: ( at unknown.email)
Date: 2005-09-01 02:00:21 -0700 (Thu, 01 Sep 2005)
Revision: 1457
Log message:
This commit was manufactured by cvs2svn to create branch
'omake_0_9_7_pre6'.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-01 02:00:21 -0700 (Thu, 01 Sep 2005)
Revision: 1458
Log message:
Merged the omake_0_9_7_pre5 with the trunk and created a new omake_0_9_7_pre6
branch off the trunk.
*** THERE WERE A NUMBER OF PROBLEMS ***
1) In the bootstrap process, omake-boot would complain about not being able to
find Pervasives.om. I worked around this by adding OMAKELIB=`pwd`/lib
to the top-level Makefile. This works fine, but the instructions suggest
calling omake-boot manually, which would not work.
2) lib/parse/C/Lex.om causes a "output_value: functional value" problem. I
worked around this by commenting out the ".SUBDIRS: $(subdirs CP, contrib)"
line in the top-level OMakefile.
3) I am getting
*** omake error:
File lib/build/LaTeX.om: line 169, characters 41-48
unbound variable: link[argv:13]
I failed to figure out how to fix it.
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-01 11:09:06 -0700 (Thu, 01 Sep 2005)
Revision: 1459
Log message:
Solved two marshaling problems.
The Mount.t record had functions in it; moved them from venv_inner
to venv_globals.
The primitive functions are also represented by functions. They could
also be moved to a table in venv_globals, but that would be slow.
Instead, they are function options, and the option is cleared before
marshaling. In the case where a primitive is unmarshaled, the function
option is restored when it is used.
There was a bug--these lazy primitives need to be remembered in the
list of primitives so they can be cleared when re-marshaled.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-01 12:58:03 -0700 (Thu, 01 Sep 2005)
Revision: 1460
Log message:
- Xin, we are no longer using "operator" = "bterm" approach (in fact, we are
no longer using explicit bterms at all - bterms are just an external concent).
- Added a configure test for htmldoc.
Changes | Path |
+1 -0 | libmojave/cutil/lm_terminfo.c |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-06 16:24:06 -0700 (Tue, 06 Sep 2005)
Revision: 1470
Log message:
OMakefiles for omake 0.9.7
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-08 00:14:32 -0700 (Thu, 08 Sep 2005)
Revision: 1484
Log message:
Leaving a comment in the part of Lm_lexer that is partly responsible
for the regex .* resulting in a shortest match, not a longest match
like it should.
Changes | Path |
+5 -1 | libmojave/util/lm_lexer.ml |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-09 12:05:36 -0700 (Fri, 09 Sep 2005)
Revision: 1491
Log message:
The regex search should scan something more than <bof> before giving
up on the search (bug #511).
Changes | Path |
+27 -11 | libmojave/util/lm_lexer.ml |
+2 -2 | omake/tests/regex/Test4 |
Changes by: ( at unknown.email)
Date: 2005-09-09 21:10:01 -0700 (Fri, 09 Sep 2005)
Revision: 1499
Log message:
This commit was manufactured by cvs2svn to create branch
'omake_0_9_7_pre7'.
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-11 10:20:18 -0700 (Sun, 11 Sep 2005)
Revision: 1500
Log message:
Latest merge against the trunk.
Changes by: prl (prl at unknown.email)
Date: 2005-09-13 01:19:23 -0700 (Tue, 13 Sep 2005)
Revision: 1960
Log message:
Merged changes from the omake trunk.
Changes | Path |
+47 -0 | libmojave/stdlib/lm_string_util.ml |
+1 -0 | libmojave/stdlib/lm_string_util.mli |
+6 -0 | libmojave/unix/lm_unix_util.ml |
+5 -0 | libmojave/unix/lm_unix_util.mli |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-13 12:32:45 -0700 (Tue, 13 Sep 2005)
Revision: 1970
Log message:
Merged changes from the trunk through revision 1968.
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-13 12:36:15 -0700 (Tue, 13 Sep 2005)
Revision: 1972
Log message:
Document the "svn switch" command needed for copying files into
libmojave, because I will forget.
Changes | Path |
Added | libmojave-branches/omake_0_9_7_pre7/README |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-13 12:38:47 -0700 (Tue, 13 Sep 2005)
Revision: 1973
Log message:
Added a comment on urgency of committing.
Changes | Path |
+2 -0 | libmojave-branches/omake_0_9_7_pre7/README |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-13 15:38:39 -0700 (Tue, 13 Sep 2005)
Revision: 1977
Log message:
The '~' symbol is an "escapable" one.
Changes | Path |
+3 -3 | libmojave/util/lm_glob.ml |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-13 15:46:32 -0700 (Tue, 13 Sep 2005)
Revision: 1979
Log message:
Lm_glob used to consider any string with a ~ inside a glob string, resulting
in:
% echo foo~bar
*** omake error:
File -: line 1, characters 0-12
Failure: foo~bar: bad match
Changing to only pay attention to ~ in the beginning of a string.
Changes | Path |
+3 -1 | libmojave/util/lm_glob.ml |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-14 19:24:11 -0700 (Wed, 14 Sep 2005)
Revision: 2010
Log message:
Companion libmojave branch.
Changes | Path |
Copied | libmojave-branches/omake-0.9.6.x |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-14 19:41:22 -0700 (Wed, 14 Sep 2005)
Revision: 2013
Log message:
Companion libmojave tag.
Changes | Path |
Copied | libmojave-tags/omake-release-0.9.6.5-2 |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-14 20:59:24 -0700 (Wed, 14 Sep 2005)
Revision: 2018
Log message:
Trunk merge (Revisions 1458:2015).
Changes | Path |
+6 -4 | libmojave-branches/omake_0_9_7_pre7/util/lm_glob.ml |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-18 19:48:38 -0700 (Sun, 18 Sep 2005)
Revision: 2030
Log message:
Removing .svnignore (and testing the new access method for external users).
Changes | Path |
Deleted | libmojave/.cvsignore |
Deleted | libmojave/cutil/.cvsignore |
Deleted | libmojave/stdlib/.cvsignore |
Deleted | libmojave/system/.cvsignore |
Deleted | libmojave/unix/.cvsignore |
Deleted | libmojave/util/.cvsignore |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-09-29 04:13:07 -0700 (Thu, 29 Sep 2005)
Revision: 7797
Log message:
Couple of minor changes related to switching to subversion.
Changes | Path |
+1 -1 | libmojave-branches/omake-0.9.6.x/stdlib/lm_filename_util.ml |
+1 -0 | libmojave-branches/omake-0.9.6.x/util/lm_glob.ml |