annotate netinstall/ChangeLog @ 853:2b6fa2618f76

[xemacs-hg @ 2002-05-28 08:44:22 by ben] merge my stderr-proc ws make-docfile.c: Fix places where we forget to check for EOF. code-init.el: Don't use CRLF conversion by default on process output. CMD.EXE and friends work both ways but Cygwin programs don't like the CRs. code-process.el, multicast.el, process.el: Removed. Improvements to call-process-internal: -- allows a buffer to be specified for input and stderr output -- use it on all systems -- implement C-g as documented -- clean up and comment call-process-region uses new call-process facilities; no temp file. remove duplicate funs in process.el. comment exactly how coding systems work and fix various problems. open-multicast-group now does similar coding-system frobbing to open-network-stream. dumped-lisp.el, faces.el, msw-faces.el: Fix some hidden errors due to code not being defined at the right time. xemacs.mak: Add -DSTRICT. ================================================================ ALLOW SEPARATION OF STDOUT AND STDERR IN PROCESSES ================================================================ Standard output and standard error can be processed separately in a process. Each can have its own buffer, its own mark in that buffer, and its filter function. You can specify a separate buffer for stderr in `start-process' to get things started, or use the new primitives: set-process-stderr-buffer process-stderr-buffer process-stderr-mark set-process-stderr-filter process-stderr-filter Also, process-send-region takes a 4th optional arg, a buffer. Currently always uses a pipe() under Unix to read the error output. (#### Would a PTY be better?) sysdep.h, sysproc.h, unexfreebsd.c, unexsunos4.c, nt.c, emacs.c, callproc.c, symsinit.h, sysdep.c, Makefile.in.in, process-unix.c: Delete callproc.c. Move child_setup() to process-unix.c. wait_for_termination() now only needed on a few really old systems. console-msw.h, event-Xt.c, event-msw.c, event-stream.c, event-tty.c, event-unixoid.c, events.h, process-nt.c, process-unix.c, process.c, process.h, procimpl.h: Rewrite the process methods to handle a separate channel for error input. Create Lstreams for reading in the error channel. Many process methods need change. In general the changes are fairly clear as they involve duplicating what's used for reading the normal stdout and changing for stderr -- although tedious, as such changes are required throughout the entire process code. Rewrote the code that reads process output to do two loops, one for stdout and one for stderr. gpmevent.c, tooltalk.c: set_process_filter takes an argument for stderr. ================================================================ NEW ERROR-TRAPPING MECHANISM ================================================================ Totally rewrite error trapping code to be unified and support more features. Basic function is call_trapping_problems(), which lets you specify, by means of flags, what sorts of problems you want trapped. these can include -- quit -- errors -- throws past the function -- creation of "display objects" (e.g. buffers) -- deletion of already-existing "display objects" (e.g. buffers) -- modification of already-existing buffers -- entering the debugger -- gc -- errors->warnings (ala suspended errors) etc. All other error funs rewritten in terms of this one. Various older mechanisms removed or rewritten. window.c, insdel.c, console.c, buffer.c, device.c, frame.c: When creating a display object, added call to note_object_created(), for use with trapping_problems mechanism. When deleting, call check_allowed_operation() and note_object deleted(). The trapping-problems code records the objects created since the call-trapping-problems began. Those objects can be deleted, but none others (i.e. previously existing ones). bytecode.c, cmdloop.c: internal_catch takes another arg. eval.c: Add long comments describing the "five lists" used to maintain state (backtrace, gcpro, specbind, etc.) in the Lisp engine. backtrace.h, eval.c: Implement trapping-problems mechanism, eliminate old mechanisms or redo in terms of new one. frame.c, gutter.c: Flush out the concept of "critical display section", defined by the in_display() var. Use an internal_bind() to get it reset, rather than just doing it at end, because there may be a non-local exit. event-msw.c, event-stream.c, console-msw.h, device.c, dialog-msw.c, frame.c, frame.h, intl.c, toolbar.c, menubar-msw.c, redisplay.c, alloc.c, menubar-x.c: Make use of new trapping-errors stuff and rewrite code based on old mechanisms. glyphs-widget.c, redisplay.h: Protect calling Lisp in redisplay. insdel.c: Protect hooks against deleting existing buffers. frame-msw.c: Use EQ, not EQUAL in hash tables whose keys are just numbers. Otherwise we run into stickiness in redisplay because internal_equal() can QUIT. ================================================================ SIGNAL, C-G CHANGES ================================================================ Here we change the way that C-g interacts with event reading. The idea is that a C-g occurring while we're reading a user event should be read as C-g, but elsewhere should be a QUIT. The former code did all sorts of bizarreness -- requiring that no QUIT occurs anywhere in event-reading code (impossible to enforce given the stuff called or Lisp code invoked), and having some weird system involving enqueue/dequeue of a C-g and interaction with Vquit_flag -- and it didn't work. Now, we simply enclose all code where we want C-g read as an event with {begin/end}_dont_check_for_quit(). This completely turns off the mechanism that checks (and may remove or alter) C-g in the read-ahead queues, so we just get the C-g normal. Signal.c documents this very carefully. cmdloop.c: Correct use of dont_check_for_quit to new scheme, remove old out-of-date comments. event-stream.c: Fix C-g handling to actually work. device-x.c: Disable quit checking when err out. signal.c: Cleanup. Add large descriptive comment. process-unix.c, process-nt.c, sysdep.c: Use QUIT instead of REALLY_QUIT. It's not necessary to use REALLY_QUIT and just confuses the issue. lisp.h: Comment quit handlers. ================================================================ CONS CHANGES ================================================================ free_cons() now takes a Lisp_Object not the result of XCONS(). car and cdr have been renamed so that they don't get used directly; go through XCAR(), XCDR() instead. alloc.c, dired.c, editfns.c, emodules.c, fns.c, glyphs-msw.c, glyphs-x.c, glyphs.c, keymap.c, minibuf.c, search.c, eval.c, lread.c, lisp.h: Correct free_cons calling convention: now takes Lisp_Object, not Lisp_Cons chartab.c: Eliminate direct use of ->car, ->cdr, should be black box. callint.c: Rewrote using EXTERNAL_LIST_LOOP to avoid use of Lisp_Cons. ================================================================ USE INTERNAL-BIND-* ================================================================ eval.c: Cleanups of these funs. alloc.c, fileio.c, undo.c, specifier.c, text.c, profile.c, lread.c, redisplay.c, menubar-x.c, macros.c: Rewrote to use internal_bind_int() and internal_bind_lisp_object() in place of whatever varied and cumbersome mechanisms were formerly there. ================================================================ SPECBIND SANITY ================================================================ backtrace.h: - Improved comments backtrace.h, bytecode.c, eval.c: Add new mechanism check_specbind_stack_sanity() for sanity checking code each time the catchlist or specbind stack change. Removed older prototype of same mechanism. ================================================================ MISC ================================================================ lisp.h, insdel.c, window.c, device.c, console.c, buffer.c: Fleshed out authorship. device-msw.c: Correct bad Unicode-ization. print.c: Be more careful when not initialized or in fatal error handling. search.c: Eliminate running_asynch_code, an FSF holdover. alloc.c: Added comments about gc-cons-threshold. dialog-x.c: Use begin_gc_forbidden() around code to build up a widget value tree, like in menubar-x.c. gui.c: Use Qunbound not Qnil as the default for gethash. lisp-disunion.h, lisp-union.h: Added warnings on use of VOID_TO_LISP(). lisp.h: Use ERROR_CHECK_STRUCTURES to turn on ERROR_CHECK_TRAPPING_PROBLEMS and ERROR_CHECK_TYPECHECK lisp.h: Add assert_with_message. lisp.h: Add macros for gcproing entire arrays. (You could do this before but it required manual twiddling the gcpro structure.) lisp.h: Add prototypes for new functions defined elsewhere.
author ben
date Tue, 28 May 2002 08:45:36 +0000
parents 6504113e7c2d
children 42375619fa45
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
1 2002-02-04 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
2
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
3 * install.cc (install_one): Munge installed filename to fit inside
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
4 dialog.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
5
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
6 2001-12-17 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
7
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
8 * desktop.cc (do_desktop_setup): register the whole gamut of C++
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
9 file types.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
10
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
11 2001-12-12 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
12
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
13 * win32.h (CDECL): reorder to remove warnings.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
14
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
15 * Makefile.in.in: add new dependencies.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
16
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
17 * desktop.h: new file.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
18
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
19 * uninstall.cc: use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
20
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
21 * install.cc (uninstall_one): when uninstalling xemacs remove
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
22 shortcuts also.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
23
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
24 * desktop.cc (remove_xemacs_setup): split out from
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
25 remove_desktop_setup.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
26 (remove_desktop_setup): call it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
27
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
28 2001-12-05 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
29
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
30 * win32.h: re-order declarations for native windows from Fabrice
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
31 Popineau.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
32
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
33 2001-11-22 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
34
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
35 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
36
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
37 * source.cc (save_dialog): warning removal.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
38 (load_dialog): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
39
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
40 * msg.cc: remove cvs id.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
41
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
42 * desktop.cc (find_xemacs_version): new function. Cope with kit
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
43 revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
44 (find_xemacs_exe_path): use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
45 (find_xemacs_exe_name): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
46
804
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
47 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
48
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
49 * XEmacs 21.5.6 "bok choi" is released.
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
50
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
51 2002-03-12 Ben Wing <ben@xemacs.org>
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
52
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
53 * The Great Mule Merge: placeholder.
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
54
768
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
55 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org>
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
56
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
57 * XEmacs 21.5.5 "beets" is released.
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
58
725
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
59 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org>
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
60
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
61 * XEmacs 21.5.4 "bamboo" is released.
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
62
707
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
63 2001-12-12 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
64
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
65 * win32.h (CDECL): reorder to remove warnings.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
66
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
67 * Makefile.in.in: add new dependencies.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
68
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
69 * desktop.h: new file.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
70
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
71 * uninstall.cc: use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
72
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
73 * install.cc (uninstall_one): when uninstalling xemacs remove
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
74 shortcuts also.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
75
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
76 * desktop.cc (remove_xemacs_setup): split out from
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
77 remove_desktop_setup.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
78 (remove_desktop_setup): call it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
79
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
80 2001-12-05 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
81
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
82 * win32.h: re-order declarations for native windows from Fabrice
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
83 Popineau.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
84
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
85 2001-11-22 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
86
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
87 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
88
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
89 * source.cc (save_dialog): warning removal.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
90 (load_dialog): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
91
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
92 * msg.cc: remove cvs id.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
93
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
94 * desktop.cc (find_xemacs_version): new function. Cope with kit
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
95 revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
96 (find_xemacs_exe_path): use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
97 (find_xemacs_exe_name): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
98
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
99 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
100
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
101 * XEmacs 21.4.6 "Common Lisp" is released.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
102
673
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
103 2001-10-27 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
104
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
105 * localdir.cc (dialog_cmd): allow download directory to be
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
106 created.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
107 * log.cc (exit_setup): cygwin -> XEmacs
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
108 * net.cc (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
109 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
110 (do_net): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
111 * res.rc:
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
112 * resource.h (IDS_CREATE_DIR): new.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
113 * source.cc (load_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
114 (save_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
115 (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
116 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
117 (do_source): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
118 * uninstall.cc (progress): remove log message.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
119 * Makefile.in.in: generated setup-bin.ini correctly.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
120
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
121 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
122
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
123 * Merge 21.5 codeline.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
124
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
125 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
126
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
127 * setup.mak (OBJS): minor build fixes.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
128 (distclean):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
129
672
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
130 2001-10-25 Andy Piper <andy@xemacs.org>
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
131
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
132 * desktop.cc:
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
133 * desktop.cc (do_desktop_setup):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
134 * desktop.cc (load_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
135 * desktop.cc (save_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
136 * desktop.cc (do_desktop): handle idl file registration.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
137 * geturl.cc (dialog): warning removal.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
138 * geturl.cc (get_url_to_string):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
139 * geturl.cc (get_url_to_file): make sure the nio gets deleted
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
140 after use, this also closes the inbound socket.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
141 * nio-ftp.cc (ftp_line): fix from cygwin installer.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
142 * nio-ftp.cc (NetIO_FTP): fix typeo.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
143 * res.rc: support idl types.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
144 * resource.h (IDC_IDL_TYPE): ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
145 * state.h: ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
146
666
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
147 2001-09-24 Andy Piper <andy@xemacs.org>
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
148
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
149 * desktop.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
150 * desktop.cc (make_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
151 * desktop.cc (find_xemacs_exe_name):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
152 * desktop.cc (remove_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
153 * desktop.cc (start_menu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
154 * desktop.cc (desktop_icon):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
155 * desktop.cc (remove_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
156 * desktop.cc (FROB):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
157 * desktop.cc (do_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
158 * desktop.cc (check_startmenu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
159 * desktop.cc (do_desktop): Be more exacting about removal of
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
160 desktop things.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
161 * regedit.cc (remove1):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
162 * regedit.cc (remove_app_path):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
163 * regedit.h (remove_app_path): remove more registry pieces.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
164 * res.rc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
165 * setup.mak (APPVER):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
166 * setup.mak (CCV):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
167 * setup.mak (OBJS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
168 * setup.mak (LIBS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
169 * setup.mak (distclean):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
170 * uninstall.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
171 * uninstall.cc (read_installed_db):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
172 * uninstall.cc (uninstall_all): Cleanup.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
173
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
174 2001-09-08 Andy Piper <andy@xemacs.org>
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
175
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
176 * Makefile.in.in (OBJS):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
177 * Makefile.in.in (all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
178 * Makefile.in.in (extraclean):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
179 * choose.cc (base):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
180 * desktop.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
181 * desktop.cc (remove_link):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
182 * desktop.cc (start_menu):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
183 * desktop.cc (desktop_icon):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
184 * desktop.cc (remove_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
185 * desktop.cc (do_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
186 * desktop.cc (load_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
187 * desktop.cc (save_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
188 * desktop.cc (do_desktop):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
189 * dialog.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
190 * download.cc (download_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
191 * ini.h (pinfo):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
192 * main.cc (WinMain):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
193 * nio-ie5.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
194 * regedit.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
195 * regedit.cc (create_xemacs_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
196 * regedit.cc (set_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
197 * regedit.cc (set_install_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
198 * regedit.cc (setup_explorer):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
199 * regedit.cc (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
200 * regedit.cc (remove_uninstall_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
201 * regedit.h (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
202 * reginfo.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
203 * reginfo.h (XEMACS_INFO_XEMACS_ORG_REGISTRY_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
204 * reginfo.h (XEMACS_NATIVE_ARCH_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
205 * res.rc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
206 * resource.h (IDD_UNINSTALL):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
207 * resource.h (IDC_TXT_TYPE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
208 * root.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
209 * root.cc (browse_cb):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
210 * root.cc (set_default_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
211 * splash.cc (do_splash):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
212 * state.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
213 * state.h (MIRROR_SITE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
214 * uninstall.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
215 * uninstall.cc (dialog_proc):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
216 * uninstall.cc (progress):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
217 * uninstall.cc (uninstall_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
218 * uninstall.cc (do_uninstall):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
219 * uninstall.cc (read_installed_db):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
220 * uninstall.cc (uninstall_all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
221 * win32.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
222 * win32.h (NOCOMATTRIBUTE): Update netinstaller to support
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
223 uninstallation and register standard file-types.
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
224
654
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
225 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org>
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
226
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
227 * XEmacs 21.5.3 "asparagus" is released.
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
228
641
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
229 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
230
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
231 * XEmacs 21.5.2 "artichoke" is released.
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
232
522
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
233 2001-05-09 Martin Buchholz <martin@xemacs.org>
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
234
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
235 * XEmacs 21.5.1 "anise" is released.
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
236
472
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
237 2001-04-18 Martin Buchholz <martin@xemacs.org>
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
238
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
239 * XEmacs 21.5.0 "alfalfa" is released.
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
240
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
241 2001-03-21 Martin Buchholz <martin@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
242
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
243 * XEmacs 21.2.46 "Urania" is released.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
244
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
245 2001-03-01 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
246
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
247 * desktop.cc (find_xemacs_exe_name): support 21.1 and 21.2 series.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
248
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
249 * iniparse.c: remove.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
250
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
251 * inilex.c: remove
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
252
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
253 2001-02-23 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
254
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
255 * XEmacs 21.2.45 "Thelxepeia" is released.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
256
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
257 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
258
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
259 * XEmacs 21.2.44 "Thalia" is released.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
260
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
261 2001-02-02 Andy Piper <andy@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
262
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
263 * res.rc: update mirrors.lst location.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
264
456
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
265 2001-01-26 Martin Buchholz <martin@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
266
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
267 * XEmacs 21.2.43 "Terspichore" is released.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
268
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
269 2001-01-21 Andy Piper <andy@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
270
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
271 * Makefile.in.in (%.o): use CXX to compile
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
272
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
273 * res.rc: beautify download status and install status.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
274
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
275 * nio-ftp.cc: use xemacs-setup user for identity.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
276
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
277 2001-01-20 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
278
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
279 * XEmacs 21.2.42 "Poseidon" is released.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
280
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
281 2001-01-17 Andy Piper <andy@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
282
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
283 * ini.h: move extern "C" to aid win32 compilation. From Fabrice
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
284 Popineau.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
285
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
286 2001-01-17 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
287
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
288 * XEmacs 21.2.41 "Polyhymnia" is released.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
289
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
290 2001-01-12 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
291
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
292 * postinstall.cc (do_postinstall): don't pick up shells if cygwin
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
293 isn't installed.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
294
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
295 2001-01-10 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
296
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
297 * README.xemacs: deleted.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
298
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
299 * README: updated.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
300
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
301 * tar.cc (tar_gzctell): new function picked up from some internal
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
302 cygnus version of zlib.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
303
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
304 * Makefile.in.in (LOCALCFLAGS): use -O2
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
305 (OBJS): reinstate autoload.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
306
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
307 2001-01-09 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
308
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
309 * root.cc (dialog_cmd): backslash root dir.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
310
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
311 * desktop.cc (do_desktop): runemacs.exe is the exe to run.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
312
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
313 * package-net.el (package-net-batch-convert-index-to-ini): new
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
314 batch command.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
315
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
316 * Makefile.in.in (setup.ini): new target. Automatically create.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
317 (LOCALCFLAGS): use extra_includes.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
318 (setup.ini): new target.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
319
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
320 * regedit.cc (create_xemacs_root): write out the package path.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
321
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
322 * reginfo.h (XEMACS_NATIVE_ARCH_NAME): arch dir is i386 not i586
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
323
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
324 2001-01-08 Martin Buchholz <martin@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
325
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
326 * XEmacs 21.2.40 is released.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
327
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
328 2000-12-31 Martin Buchholz <martin@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
329
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
330 * XEmacs 21.2.39 is released.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
331
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
332 2000-12-28 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
333
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
334 * desktop.cc (FROB): add more app paths.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
335
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
336 2000-12-24 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
337
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
338 * choose.cc (create_listview): CreateWindowEx() does not take this kind of
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
339 parameter.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
340
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
341 * choose.cc (package_sort):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
342 * hash.cc (rev_len):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
343 * site.cc (site_sort): must be __cdecl to be called by qsort().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
344
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
345 * download.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
346 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
347 * nio-file.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
348 * tar.cc: because of the redefinition of stat to _stat, the
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
349 inclusion of win32 headers has to be delayed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
350
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
351 * win32.h: added some declarations, such as CDECL if
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
352 not defined, #define for functions that are not standard in msvc
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
353 libc (strdup, stat ...)
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
354
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
355 * concat.h, concat.cc (concat): must be declared CDECL
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
356
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
357 * desktop.cc: <io.h> is needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
358
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
359 * dialog.h (NEXT): cast needed, the first parameter of EndDialog() must
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
360 be a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
361
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
362 * diskfull.cc: syntax when declaring GDFS.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
363
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
364 * ini.cc: Various `extern "C"' declarations: yylineno, yyerror()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
365 and fprintf(). Various CDECL declarations: yyerror(), fprintf().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
366
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
367 * inilex.l: <stdlib.h> required.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
368
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
369 * iniparse.y: use strdup(), require "win32.h" and <string.h>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
370
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
371 * install.cc (dialog): syntax when declaring. CreateDialog()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
372 returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
373
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
374 * postinstall.cc: <io.h> and <stdio.h> are needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
375
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
376 * regedit.cc (find_cygwin_mount): WIN32_NATIVE does not know
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
377 anything about Cygwin stuff.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
378
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
379 * setup.mak: new makefile for WIN32_NATIVE.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
380
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
381 * splash.cc (load_dialog): GetDlgItem() returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
382
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
383 * tar.cc: msvc knows about __int64, but not `long long'.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
384
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
385 * win32.h: <winreg.h> is missing for regedit.cc. Also, I ended up
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
386 in including <windows.h> because the files listed there are not
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
387 enough for <wininet.h>.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
388
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
389 * desktop.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
390 * fromcwd.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
391 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
392 * postinstall.cc: <unistd.h> does not exist for WIN32_NATIVE
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
393
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
394 * choose.cc (do_choose):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
395 * ini.cc (do_ini):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
396 * nio-ftp.cc (ftp_line): the construct (x ?: y) is not standard.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
397
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
398 2000-12-24 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
399
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
400 * choose.cc (read_installed_db): grok package versions correctly.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
401
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
402 * Makefile.in.in: add MINGW define.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
403
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
404 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
405
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
406 * res.rc: better look and feel.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
407
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
408 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
409
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
410 * desktop.cc (do_desktop_setup): more app path fiddling.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
411
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
412 2000-12-13 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
413
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
414 * root.cc (dialog_cmd): create the root in the registry if we are successful.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
415
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
416 * desktop.cc (find_xemacs_exe_path): new function. Split out from
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
417 find_xemacs_exe ().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
418 (find_xemacs_exe_name): ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
419 (do_desktop_setup): setup app paths if we are installing xemacs
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
420 itself.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
421 (do_desktop): use new functions.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
422
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
423 * regedit.cc (create_xemacs_root): fix key name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
424 (find_xemacs_root): set isnative whatever the key value.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
425 (set_app_path): new function. Set path for an app.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
426
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
427 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
428
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
429 * package-net.el (package-net-convert-index-to-ini): use sensible defaults.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
430
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
431 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
432
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
433 * reginfo.h: new macros.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
434
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
435 * iniparse.y: define xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
436
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
437 * ini.h: declare xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
438
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
439 * fromcwd.cc (found_file): guess core type from name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
440
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
441 * concat.cc: kill warnings.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
442 * net.cc: ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
443
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
444 * choose.cc (do_choose): pick up core package type chosen.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
445
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
446 * Makefile.in.in: make sure we can pick up a mingw zlib.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
447
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
448 * desktop.cc: fix desktop icon creation.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
449
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
450 2000-11-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
451
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
452 * all: port from cygwin setup.
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
453