]> granicus.if.org Git - python/log
python
27 years agoOops -- overuse of dabbrev-expand introduced a strange bug, where
Guido van Rossum [Tue, 3 Mar 1998 22:33:27 +0000 (22:33 +0000)]
Oops -- overuse of dabbrev-expand introduced a strange bug, where
instead of 'locals' I was passing 'lock_import' to import_module_ex().

27 years agoPerish Evil Revelry and Lamentation.
Fred Drake [Tue, 3 Mar 1998 22:27:28 +0000 (22:27 +0000)]
Perish Evil Revelry and Lamentation.

27 years agoAdd a single Python-wide (!) lock on import. Only one thread at a
Guido van Rossum [Tue, 3 Mar 1998 22:26:50 +0000 (22:26 +0000)]
Add a single Python-wide (!) lock on import.  Only one thread at a
time can be in PyImport_ImportModuleEx().  Recursive calls from the
same thread are okay.

Potential problems:

- The lock should really be part of the interpreter state rather than
global, but that would require modifying more files, and I first want
to figure out whether this works at all.

- One could argue that the lock should be per module -- however that
would be complicated to implement.  We would have to have a linked
list of locks per module name, *or* invent a new object type to
represent a lock, so we can store the locks in the module or in a
separate dictionary.  Both seem unwarranted.  The one situation where
this can cause problems is when loading a module takes a long time,
e.g. when the module's initialization code interacts with the user --
during that time, no other threads can run.  I say, "too bad."

27 years agoRaise ValueError: "unconvertible time" when ctime() returns NULL,
Guido van Rossum [Tue, 3 Mar 1998 22:19:10 +0000 (22:19 +0000)]
Raise ValueError: "unconvertible time" when ctime() returns NULL,
instead of dumping core.

27 years agoDoc strings added by Mitch Chapman.
Guido van Rossum [Tue, 3 Mar 1998 22:10:18 +0000 (22:10 +0000)]
Doc strings added by Mitch Chapman.

27 years agoDoc strings added by Mitch Chapman.
Guido van Rossum [Tue, 3 Mar 1998 22:03:26 +0000 (22:03 +0000)]
Doc strings added by Mitch Chapman.

27 years agoObsolete.
Fred Drake [Tue, 3 Mar 1998 22:03:08 +0000 (22:03 +0000)]
Obsolete.

27 years agoDoc strings added by Mitch Chapman.
Guido van Rossum [Tue, 3 Mar 1998 22:02:24 +0000 (22:02 +0000)]
Doc strings added by Mitch Chapman.
Also got rid of some inconsistent change log comments near the top.

27 years agoConvert LaTeX support to create a new class of documents. HTML generation
Fred Drake [Tue, 3 Mar 1998 22:02:19 +0000 (22:02 +0000)]
Convert LaTeX support to create a new class of documents.  HTML generation
now requires LaTeX2HTML 98.1p1 or newer (& and is still in progress).

This means that doing things to change the formatting of the manuals (at the
"normal user" level, like A4 paper), can happen in just one place, rather
than in each document file.

27 years agoLogical markup.
Fred Drake [Tue, 3 Mar 1998 21:56:15 +0000 (21:56 +0000)]
Logical markup.

27 years agoInstead of 'import mac', use 'import os' -- this way, the path syntax
Guido van Rossum [Tue, 3 Mar 1998 21:49:01 +0000 (21:49 +0000)]
Instead of 'import mac', use 'import os' -- this way, the path syntax
manipulation routines can be used on non-Mac platforms (e.g. to
manipulate pathnames in a Mac specific archive).

27 years agoMisc changes for AIX: install the python.exp file, and properly use $(srcdir).
Guido van Rossum [Tue, 3 Mar 1998 21:47:00 +0000 (21:47 +0000)]
Misc changes for AIX: install the python.exp file, and properly use $(srcdir).

27 years agoOverhaul.
Fred Drake [Tue, 3 Mar 1998 21:41:22 +0000 (21:41 +0000)]
Overhaul.

27 years agoFix typo.
Fred Drake [Tue, 3 Mar 1998 19:37:38 +0000 (19:37 +0000)]
Fix typo.

27 years agoNit for \refexmodindex{} (reference to extension module).
Fred Drake [Tue, 3 Mar 1998 18:52:55 +0000 (18:52 +0000)]
Nit for \refexmodindex{} (reference to extension module).

27 years agoSimplify the parameters passed to node2label.pl.
Fred Drake [Tue, 3 Mar 1998 18:05:13 +0000 (18:05 +0000)]
Simplify the parameters passed to node2label.pl.

27 years agoMarked reference to the Python Library Reference with \emph{}.
Fred Drake [Tue, 3 Mar 1998 17:52:07 +0000 (17:52 +0000)]
Marked reference to the Python Library Reference with \emph{}.

Changed sample module creation of an exception to use PyErr_NewException().

Logical markup.

27 years agoScript to create a source distribution. See comments at top.
Fred Drake [Tue, 3 Mar 1998 17:22:44 +0000 (17:22 +0000)]
Script to create a source distribution.  See comments at top.

27 years agoIgnore tarballs.
Fred Drake [Tue, 3 Mar 1998 17:14:23 +0000 (17:14 +0000)]
Ignore tarballs.

27 years agoLooks like mention of http://quest.jpl.nasa.gov/zlib/ got added but
Ken Manheimer [Tue, 3 Mar 1998 16:42:53 +0000 (16:42 +0000)]
Looks like mention of http://quest.jpl.nasa.gov/zlib/ got added but
not checked in, so i'm doing it.

27 years agoInitialize adlist variable in getrouteaddr(), so an illegal address
Guido van Rossum [Tue, 3 Mar 1998 16:17:52 +0000 (16:17 +0000)]
Initialize adlist variable in getrouteaddr(), so an illegal address
doesn't cause a traceback.

27 years agoAdded msvcrt.
Guido van Rossum [Tue, 3 Mar 1998 02:00:14 +0000 (02:00 +0000)]
Added msvcrt.

27 years ago__file__ now sometimes refers to the .pyc file
Jack Jansen [Mon, 2 Mar 1998 16:57:01 +0000 (16:57 +0000)]
__file__ now sometimes refers to the .pyc file

27 years agoAdded WEGetTabSize and WESetTabSize, at Just's request
Jack Jansen [Mon, 2 Mar 1998 16:56:18 +0000 (16:56 +0000)]
Added WEGetTabSize and WESetTabSize, at Just's request

27 years ago&replace_verbatim,
Fred Drake [Mon, 2 Mar 1998 16:43:59 +0000 (16:43 +0000)]
&replace_verbatim,
&replace_verbatim_hook:  Clean up a little, avoid long lines.

27 years agoTypo (coestring -> codestring) discovered by Mark Hammond.
Guido van Rossum [Mon, 2 Mar 1998 02:40:39 +0000 (02:40 +0000)]
Typo (coestring -> codestring) discovered by Mark Hammond.

27 years agoFix the handling of errors in Py_FlushLine() in a few places.
Guido van Rossum [Sat, 28 Feb 1998 04:31:39 +0000 (04:31 +0000)]
Fix the handling of errors in Py_FlushLine() in a few places.
(Basically, the error is cleared...  Like almost everywhere else...)

27 years agoMake the title page include all the interesting information.
Fred Drake [Fri, 27 Feb 1998 22:13:13 +0000 (22:13 +0000)]
Make the title page include all the interesting information.

27 years ago&do_cmd_deprecated: New function.
Fred Drake [Fri, 27 Feb 1998 16:56:55 +0000 (16:56 +0000)]
&do_cmd_deprecated:  New function.

Attempt to get \setindexsubitem{} handled at the right time under LaTeX2HTML
98.1; should still be fine under 97.1*.

27 years agoUpdate.
Fred Drake [Fri, 27 Feb 1998 16:21:58 +0000 (16:21 +0000)]
Update.

27 years agoDeprecate the read() and write() methods.
Fred Drake [Fri, 27 Feb 1998 16:21:31 +0000 (16:21 +0000)]
Deprecate the read() and write() methods.

Don't refer to them from the fromfile() and tofile() methods.

27 years agoAdded semi-structured support for feature deprecation.
Fred Drake [Fri, 27 Feb 1998 16:20:30 +0000 (16:20 +0000)]
Added semi-structured support for feature deprecation.

27 years agoPut all the indexsubitem stuff together.
Fred Drake [Fri, 27 Feb 1998 15:28:45 +0000 (15:28 +0000)]
Put all the indexsubitem stuff together.

Support modified verbatim for both LaTeX2HTML 96.1* and 98.1.

Make table column headers bold.

27 years agoMake table column headings bold.
Fred Drake [Fri, 27 Feb 1998 15:20:20 +0000 (15:20 +0000)]
Make table column headings bold.

27 years agoUpdates by AMK.
Fred Drake [Fri, 27 Feb 1998 15:19:42 +0000 (15:19 +0000)]
Updates by AMK.

Markup corrected, logical markup.

27 years agoWhen "declaring" a module using \*modindex{}, and * doesn't start with "ref",
Fred Drake [Fri, 27 Feb 1998 14:54:06 +0000 (14:54 +0000)]
When "declaring" a module using \*modindex{}, and * doesn't start with "ref",
set up the indexsubitem to "(in module #1)" automatically.  This reduces the
amount of markup needed in the module docs and, more importantly, makes it
o.k. to leave out in simple sections.  \setindexsubitem{} can still be used
to change or reset it.

27 years agoSjoerd writes: When a multipart message is incomplete, mimify crashes.
Guido van Rossum [Fri, 27 Feb 1998 14:40:38 +0000 (14:40 +0000)]
Sjoerd writes: When a multipart message is incomplete, mimify crashes.

27 years agoLogical markup.
Fred Drake [Fri, 27 Feb 1998 05:23:37 +0000 (05:23 +0000)]
Logical markup.

27 years agoNit to prevent empty node in formatted version.
Fred Drake [Fri, 27 Feb 1998 05:21:36 +0000 (05:21 +0000)]
Nit to prevent empty node in formatted version.

27 years agoReformulate how the info stuff is ignored.
Fred Drake [Fri, 27 Feb 1998 05:20:59 +0000 (05:20 +0000)]
Reformulate how the info stuff is ignored.

27 years agoUse a Python script to create "empty" indexes. This solves Guido's
Fred Drake [Fri, 27 Feb 1998 05:18:28 +0000 (05:18 +0000)]
Use a Python script to create "empty" indexes.  This solves Guido's
corrupted file problem and avoids the shell escape interpretation
portability problem.  ;-(  See comments at top of newind.py for an
explanation.

27 years agoUpdate....
Fred Drake [Fri, 27 Feb 1998 02:23:15 +0000 (02:23 +0000)]
Update....

27 years agoAdded \label{}s for logical addressing.
Fred Drake [Thu, 26 Feb 1998 22:01:23 +0000 (22:01 +0000)]
Added \label{}s for logical addressing.

27 years agoAdded \label{}s for logical addressing.
Fred Drake [Thu, 26 Feb 1998 21:47:54 +0000 (21:47 +0000)]
Added \label{}s for logical addressing.

27 years agoAdjusted to work with the newer version of LaTeX2HTML as well.
Fred Drake [Thu, 26 Feb 1998 18:49:58 +0000 (18:49 +0000)]
Adjusted to work with the newer version of LaTeX2HTML as well.

27 years agoMarked references to the other manuals as \emph{} in the abstract.
Fred Drake [Thu, 26 Feb 1998 18:49:12 +0000 (18:49 +0000)]
Marked references to the other manuals as \emph{} in the abstract.

Added \label{}s for logical addressing.

27 years agoNew version of tb_lineno(), this time *not* using try-except, to avoid
Guido van Rossum [Thu, 26 Feb 1998 17:25:02 +0000 (17:25 +0000)]
New version of tb_lineno(), this time *not* using try-except, to avoid
disturbing the current exception, and returning tb.tb_lineno, which is
the line number of thr traceback, rather than the current line number.
By Jim Hugunin.

27 years agoFix up description of 'S' format; as Dave Ascher pointed out, it
Guido van Rossum [Thu, 26 Feb 1998 17:07:11 +0000 (17:07 +0000)]
Fix up description of 'S' format; as Dave Ascher pointed out, it
was ungrammatical to the point of saying the opposite of what it
should say.

27 years agoDo a little bit more work on a table-driven basis. A little cleanup.
Fred Drake [Thu, 26 Feb 1998 05:52:37 +0000 (05:52 +0000)]
Do a little bit more work on a table-driven basis.  A little cleanup.

Seems to work at the moment.

27 years agoAdd support for some of the newer commands, a little cleanup.
Fred Drake [Thu, 26 Feb 1998 05:49:37 +0000 (05:49 +0000)]
Add support for some of the newer commands, a little cleanup.

27 years agoA working version of the 'args' command (it prints the current values
Guido van Rossum [Wed, 25 Feb 1998 20:50:32 +0000 (20:50 +0000)]
A working version of the 'args' command (it prints the current values
of the variables known to hold arguments, but that's as close as I can
get, and generally it's close enough).

27 years agoAdd test for core dump -- make sure it doesn't come back!
Guido van Rossum [Wed, 25 Feb 1998 17:51:50 +0000 (17:51 +0000)]
Add test for core dump -- make sure it doesn't come back!

27 years ago&do_cmd_bcode, &do_cmd_ecode: Removed; no longer used.
Fred Drake [Wed, 25 Feb 1998 17:50:07 +0000 (17:50 +0000)]
&do_cmd_bcode, &do_cmd_ecode:  Removed; no longer used.

&do_cmd_url:  Make sure the tilde gets treated right for the browsers.

&replace_verbatim:  Be sure we always have a leading vertical space.

27 years agoAdd back some safeguards on the index elements that were lost in the
Guido van Rossum [Wed, 25 Feb 1998 17:50:03 +0000 (17:50 +0000)]
Add back some safeguards on the index elements that were lost in the
last patch.  Dave Ascher found a case that dumps core without these:

def myComparison(x,y):
    return cmp(x%3,y%7)

z = range(12)
z.sort(myComparison)

27 years ago(py-execute-region): Simplified calculation of temporary file name.
Barry Warsaw [Wed, 25 Feb 1998 16:45:43 +0000 (16:45 +0000)]
(py-execute-region): Simplified calculation of temporary file name.
When running synchronously in a subproc buffer, be sure to
pop-to-buffer so the output is visible.

27 years ago(py-temp-directory): Minor docstring nit.
Barry Warsaw [Wed, 25 Feb 1998 16:33:56 +0000 (16:33 +0000)]
(py-temp-directory): Minor docstring nit.

27 years agoTweak the tb_lineno() function to be compatible with JPython, which
Guido van Rossum [Wed, 25 Feb 1998 16:33:39 +0000 (16:33 +0000)]
Tweak the tb_lineno() function to be compatible with JPython, which
has no line number table etc.

27 years ago(py-master-file): Fixed some typos in the docstring.
Barry Warsaw [Wed, 25 Feb 1998 15:57:47 +0000 (15:57 +0000)]
(py-master-file): Fixed some typos in the docstring.

27 years agoMake sure the ']' in the content of the \item[] isn't used as the ending ']'.
Fred Drake [Wed, 25 Feb 1998 15:48:16 +0000 (15:48 +0000)]
Make sure the ']' in the content of the \item[] isn't used as the ending ']'.

27 years agoSupport for sound input added. The interface is even worse than the
Jack Jansen [Wed, 25 Feb 1998 15:47:51 +0000 (15:47 +0000)]
Support for sound input added. The interface is even worse than the
sound-output interface, so this needs a Python wrapper shortly.

27 years agoRegenerated because of confusion with Style/StyleParameter and
Jack Jansen [Wed, 25 Feb 1998 15:46:50 +0000 (15:46 +0000)]
Regenerated because of confusion with Style/StyleParameter and
Char/CharParameter

27 years agoRegerated: Style and StyleParameter are different beasts
Jack Jansen [Wed, 25 Feb 1998 15:45:21 +0000 (15:45 +0000)]
Regerated: Style and StyleParameter are different beasts

27 years agoOops, this wasn't checked in yet: part of the AE structure for the new
Jack Jansen [Wed, 25 Feb 1998 15:44:38 +0000 (15:44 +0000)]
Oops, this wasn't checked in yet: part of the AE structure for the new
universal headers.

27 years agoModule to use Mac serial port as a communication link
Jack Jansen [Wed, 25 Feb 1998 15:43:57 +0000 (15:43 +0000)]
Module to use Mac serial port as a communication link

27 years agoHelper routines to create standalone Python applications.
Jack Jansen [Wed, 25 Feb 1998 15:42:48 +0000 (15:42 +0000)]
Helper routines to create standalone Python applications.

27 years agoHack to get at string buffer address changed
Jack Jansen [Wed, 25 Feb 1998 15:42:03 +0000 (15:42 +0000)]
Hack to get at string buffer address changed

27 years agoHelper file for version-checking
Jack Jansen [Wed, 25 Feb 1998 15:41:24 +0000 (15:41 +0000)]
Helper file for version-checking

27 years agoAdded (minimal) documentation on how to build standalone applications
Jack Jansen [Wed, 25 Feb 1998 15:40:35 +0000 (15:40 +0000)]
Added (minimal) documentation on how to build standalone applications
with Python.

Updated various things (versions of libraries used, urls).

27 years agoPyFile_FromFile() description: make sure the closing brace for the arguments
Fred Drake [Wed, 25 Feb 1998 15:40:22 +0000 (15:40 +0000)]
PyFile_FromFile() description:  make sure the closing brace for the arguments
comes after the arguments are complete.

27 years agoDerive the name of the modules .ind from the jobname.
Fred Drake [Wed, 25 Feb 1998 15:31:20 +0000 (15:31 +0000)]
Derive the name of the modules .ind from the jobname.

27 years agoChange quoting of the "echo" commands yet again.... why can't shells agree?
Fred Drake [Wed, 25 Feb 1998 15:30:47 +0000 (15:30 +0000)]
Change quoting of the "echo" commands yet again.... why can't shells agree?

Derive the name of the modules .idx from the jobname.

27 years agoMake this work better with a4 paper.
Fred Drake [Wed, 25 Feb 1998 15:29:43 +0000 (15:29 +0000)]
Make this work better with a4 paper.

Make the table of contents "hot" for PDF output.  No additional packages are
needed.

Move code for \b@code, \e@code into the macros for the verbatim environment
directly since they're not used elsewhere.

Derive the name of the modules .idx from the jobname.

Some clean ups.

27 years agoTypo: baseWidht -> baseWidth.
Guido van Rossum [Tue, 24 Feb 1998 23:26:18 +0000 (23:26 +0000)]
Typo: baseWidht -> baseWidth.

27 years agoLogical markup.
Fred Drake [Tue, 24 Feb 1998 21:43:05 +0000 (21:43 +0000)]
Logical markup.

27 years agoAdd support for hyperref package. This builds the PDF outline, makes the ToC
Fred Drake [Mon, 23 Feb 1998 21:37:27 +0000 (21:37 +0000)]
Add support for hyperref package.  This builds the PDF outline, makes the ToC
and index "hot", etc.

Updated a comment about fncychap.

Removed unused minitoc support; I'm not going to use it.  Something that makes
more sense with the Python lib ref can be done with reasonable effort, and can
wait a little while.

27 years agoclean: Remove *.out (hyperref's internal files for building outlines for PDF).
Fred Drake [Mon, 23 Feb 1998 21:34:26 +0000 (21:34 +0000)]
clean:  Remove *.out (hyperref's internal files for building outlines for PDF).

27 years agoIgnore hyperref's *.out files (used in building outlines for PDF).
Fred Drake [Mon, 23 Feb 1998 21:33:43 +0000 (21:33 +0000)]
Ignore hyperref's *.out files (used in building outlines for PDF).

27 years agoChange quoting a little bit to avoid problems building it at CNRI.
Fred Drake [Mon, 23 Feb 1998 21:32:18 +0000 (21:32 +0000)]
Change quoting a little bit to avoid problems building it at CNRI.

27 years agoClean up some stuff in the {seealso} at the end. This avoids a little nit
Fred Drake [Mon, 23 Feb 1998 21:31:24 +0000 (21:31 +0000)]
Clean up some stuff in the {seealso} at the end.  This avoids a little nit
(which causes processing to fail) when using the LaTeX hyperref package.

27 years agoPatches from Jack for new Apple headers
Guido van Rossum [Mon, 23 Feb 1998 15:30:44 +0000 (15:30 +0000)]
Patches from Jack for new Apple headers

27 years agoMarked the unmarked AttributeError. (AMK)
Fred Drake [Mon, 23 Feb 1998 14:42:00 +0000 (14:42 +0000)]
Marked the unmarked AttributeError.  (AMK)

"Protect the class instance" --> "Protect the object"  It works for anything
with attributes to look up!  (AMK)

Logical markup.

27 years ago"streans" --> "streams" (AMK)
Fred Drake [Mon, 23 Feb 1998 14:37:40 +0000 (14:37 +0000)]
"streans" --> "streams" (AMK)

27 years agoAdd a period to "Written by James Roskind"
Fred Drake [Sun, 22 Feb 1998 20:42:11 +0000 (20:42 +0000)]
Add a period to "Written by James Roskind"

27 years agoChanged way *.ind are forced to exist; the files are now reset to contain
Fred Drake [Sun, 22 Feb 1998 19:47:13 +0000 (19:47 +0000)]
Changed way *.ind are forced to exist; the files are now reset to contain
an empty index instead of touched.  Note that for modindex.ind, this also
includes "\label{modindex}" so that the modindex.py script doesn't change
the set of labels in the document.

Be more consistent in use of $* in commands.

27 years agoFixed and extended the example; the original example contained some
Guido van Rossum [Sun, 22 Feb 1998 04:41:51 +0000 (04:41 +0000)]
Fixed and extended the example; the original example contained some
bogus code.

27 years agoAdd slightly more explicit warning about running "make clean" when
Guido van Rossum [Sun, 22 Feb 1998 04:36:34 +0000 (04:36 +0000)]
Add slightly more explicit warning about running "make clean" when
changing the --with-thread option.  I'm doubtful this will help
though...

27 years agoAdded two subsections with extra hints and details, even for
Guido van Rossum [Sun, 22 Feb 1998 04:23:51 +0000 (04:23 +0000)]
Added two subsections with extra hints and details, even for
extensions and embedding programs.

27 years agoAdapt to new webchecker structure. Due to better structure of
Guido van Rossum [Sat, 21 Feb 1998 20:08:39 +0000 (20:08 +0000)]
Adapt to new webchecker structure.  Due to better structure of
getpage(), much less duplicate code is needed -- we only need to
override readhtml().

27 years agoMajor overhaul. Don't use global variable (e.g. verbose); use
Guido van Rossum [Sat, 21 Feb 1998 20:02:09 +0000 (20:02 +0000)]
Major overhaul.  Don't use global variable (e.g. verbose); use
instance variables.  Make all global functions methods, for easy
overriding.  Restructure getpage() for easy overriding.  Add
save_pickle() method and load_pickle() global function to make it
easier for other programs to emulate the toplevel interface.

27 years agoThe list of module descriptions should be a {description} environment, not
Fred Drake [Sat, 21 Feb 1998 06:30:17 +0000 (06:30 +0000)]
The list of module descriptions should be a {description} environment, not
{itemize}!

27 years agoRemoved two items, correct one spelling error.
Fred Drake [Fri, 20 Feb 1998 21:55:10 +0000 (21:55 +0000)]
Removed two items, correct one spelling error.

27 years agoA bug in PCRE could cause core dumps in patterns such as
Guido van Rossum [Fri, 20 Feb 1998 21:45:14 +0000 (21:45 +0000)]
A bug in PCRE could cause core dumps in patterns such as
'((a)*)*'. Andrew Kuchling posted a fix to the string-sig.

27 years agoDefault button on main window wasn't set correctly
Jack Jansen [Fri, 20 Feb 1998 16:08:47 +0000 (16:08 +0000)]
Default button on main window wasn't set correctly

27 years agoAdded some debug prints (if enabled by setting DEBUG)
Jack Jansen [Fri, 20 Feb 1998 16:08:19 +0000 (16:08 +0000)]
Added some debug prints (if enabled by setting DEBUG)

27 years agoBuildApplet will now also update old applets
Jack Jansen [Fri, 20 Feb 1998 16:06:56 +0000 (16:06 +0000)]
BuildApplet will now also update old applets

27 years agoCurrent ("1.5b4") projects, with new UH toolbox modules and such
Jack Jansen [Fri, 20 Feb 1998 16:05:24 +0000 (16:05 +0000)]
Current ("1.5b4") projects, with new UH toolbox modules and such

27 years agoUSE_PRECOMPILED_HEADERS renamed to MSL_USE_PRECOMPILED_HEADERS
Jack Jansen [Fri, 20 Feb 1998 16:04:01 +0000 (16:04 +0000)]
USE_PRECOMPILED_HEADERS renamed to MSL_USE_PRECOMPILED_HEADERS

27 years ago- Universal Headers 3 mods
Jack Jansen [Fri, 20 Feb 1998 16:03:15 +0000 (16:03 +0000)]
- Universal Headers 3 mods
- Started on menubar-restore code (but it still doesn't work 100%)

27 years agoRegenerated from Universal Headers 3.0.1. Some new calls are
Jack Jansen [Fri, 20 Feb 1998 16:02:09 +0000 (16:02 +0000)]
Regenerated from Universal Headers 3.0.1. Some new calls are
blacklisted, because they are not available in classic 68k programs,
and bgen doesn't have a way to put #ifdef/#endif in the generated
code. For now we only implement calls that work on all three models.

27 years agoFixed double-dispose of splash() dialog
Jack Jansen [Fri, 20 Feb 1998 15:59:59 +0000 (15:59 +0000)]
Fixed double-dispose of splash() dialog