annotate lib-src/ChangeLog @ 5353:38e24b8be4ea

Improve the lexical scoping in #'block, #'return-from. lisp/ChangeLog addition: 2011-02-07 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el: * bytecomp.el (byte-compile-initial-macro-environment): Shadow `block', `return-from' here, we implement them differently when byte-compiling. * bytecomp.el (byte-compile-active-blocks): New. * bytecomp.el (byte-compile-block-1): New. * bytecomp.el (byte-compile-return-from-1): New. * bytecomp.el (return-from-1): New. * bytecomp.el (block-1): New. These are two aliases that exist to have their own associated byte-compile functions, which functions implement `block' and `return-from'. * cl-extra.el (cl-macroexpand-all): Fix a bug here when macros in the environment have been compiled. * cl-macs.el (block): * cl-macs.el (return): * cl-macs.el (return-from): Be more careful about lexical scope in these macros. * cl.el: * cl.el ('cl-block-wrapper): Removed. * cl.el ('cl-block-throw): Removed. These aren't needed in code generated by this XEmacs. They shouldn't be needed in code generated by XEmacs 21.4, but if it turns out the packages do need them, we can put them back. 2011-01-30 Mike Sperber <mike@xemacs.org> * font-lock.el (font-lock-fontify-pending-extents): Don't fail if `font-lock-mode' is unset, which can happen in the middle of `revert-buffer'. 2011-01-23 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (delete): * cl-macs.el (delq): * cl-macs.el (remove): * cl-macs.el (remq): Don't use the compiler macro if these functions were given the wrong number of arguments, as happens in lisp-tests.el. * cl-seq.el (remove, remq): Removed. I added these to subr.el, and forgot to remove them from here. 2011-01-22 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el (byte-compile-setq, byte-compile-set): Remove kludge allowing keywords' values to be set, all the code that does that is gone. * cl-compat.el (elt-satisfies-test-p): * faces.el (set-face-parent): * faces.el (face-doc-string): * gtk-font-menu.el: * gtk-font-menu.el (gtk-reset-device-font-menus): * msw-font-menu.el: * msw-font-menu.el (mswindows-reset-device-font-menus): * package-get.el (package-get-installedp): * select.el (select-convert-from-image-data): * sound.el: * sound.el (load-sound-file): * x-font-menu.el (x-reset-device-font-menus-core): Don't quote keywords, they're self-quoting, and the win from backward-compatibility is sufficiently small now that the style problem overrides it. 2011-01-22 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (block, return-from): Require that NAME be a symbol in these macros, as always documented in the #'block docstring and as required by Common Lisp. * descr-text.el (unidata-initialize-unihan-database): Correct the use of non-symbols in #'block and #'return-from in this function. 2011-01-15 Aidan Kehoe <kehoea@parhasard.net> * cl-extra.el (concatenate): Accept more complicated TYPEs in this function, handing the sequences over to #'coerce if we don't understand them here. * cl-macs.el (inline): Don't proclaim #'concatenate as inline, its compiler macro is more useful than doing that. 2011-01-11 Aidan Kehoe <kehoea@parhasard.net> * subr.el (delete, delq, remove, remq): Move #'remove, #'remq here, they don't belong in cl-seq.el; move #'delete, #'delq here from fns.c, implement them in terms of #'delete*, allowing support for sequences generally. * update-elc.el (do-autoload-commands): Use #'delete*, not #'delq here, now the latter's no longer dumped. * cl-macs.el (delete, delq): Add compiler macros transforming #'delete and #'delq to #'delete* calls. 2011-01-10 Aidan Kehoe <kehoea@parhasard.net> * dialog.el (make-dialog-box): Correct a misplaced parenthesis here, thank you Mats Lidell in 87zkr9gqrh.fsf@mail.contactor.se ! 2011-01-02 Aidan Kehoe <kehoea@parhasard.net> * dialog.el (make-dialog-box): * list-mode.el (display-completion-list): These functions used to use cl-parsing-keywords; change them to use defun* instead, fixing the build. (Not sure what led to me not including this change in d1b17a33450b!) 2011-01-02 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (define-star-compiler-macros): Make sure the form has ITEM and LIST specified before attempting to change to calls with explicit tests; necessary for some tests in lisp-tests.el to compile correctly. (stable-union, stable-intersection): Add compiler macros for these functions, in the same way we do for most of the other functions in cl-seq.el. 2011-01-01 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (dolist, dotimes, do-symbols, macrolet) (symbol-macrolet): Define these macros with defmacro* instead of parsing the argument list by hand, for the sake of style and readability; use backquote where appropriate, instead of calling #'list and and friends, for the same reason. 2010-12-30 Aidan Kehoe <kehoea@parhasard.net> * x-misc.el (device-x-display): Provide this function, documented in the Lispref for years, but not existing previously. Thank you Julian Bradfield, thank you Jeff Mincy. 2010-12-30 Aidan Kehoe <kehoea@parhasard.net> * cl-seq.el: Move the heavy lifting from this file to C. Dump the cl-parsing-keywords macro, but don't use defun* for the functions we define that do take keywords, dynamic scope lossage makes that not practical. * subr.el (sort, fillarray): Move these aliases here. (map-plist): #'nsublis is now built-in, but at this point #'eql isn't necessarily available as a test; use #'eq. * obsolete.el (cl-delete-duplicates): Make this available for old compiler macros and old code. (memql): Document that this is equivalent to #'member*, and worse. * cl.el (adjoin, subst): Removed. These are in C. 2010-12-30 Aidan Kehoe <kehoea@parhasard.net> * simple.el (assoc-ignore-case): Remove a duplicate definition of this function (it's already in subr.el). * iso8859-1.el (char-width): On non-Mule, make this function equivalent to that produced by (constantly 1), but preserve its docstring. * subr.el (subst-char-in-string): Define this in terms of #'substitute, #'nsubstitute. (string-width): Define this using #'reduce and #'char-width. (char-width): Give this a simpler definition, it makes far more sense to check for mule at load time and redefine, as we do in iso8859-1.el. (store-substring): Implement this in terms of #'replace, now #'replace is cheap. 2010-12-30 Aidan Kehoe <kehoea@parhasard.net> * update-elc.el (lisp-files-needed-for-byte-compilation) (lisp-files-needing-early-byte-compilation): cl-macs belongs in the former, not the latter, it is as fundamental as bytecomp.el. 2010-12-30 Aidan Kehoe <kehoea@parhasard.net> * cl.el: Provde the Common Lisp program-error, type-error as error symbols. This doesn't nearly go far enough for anyone using the Common Lisp errors. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (delete-duplicates): If the form has an incorrect number of arguments, don't attempt a compiler macroexpansion. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (cl-safe-expr-p): Forms that start with the symbol lambda are also safe. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (= < > <= >=): For these functions' compiler macros, the optimisation is safe even if the first and the last arguments have side effects, since they're only used the once. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (inline-side-effect-free-compiler-macros): Unroll a loop here at macro-expansion time, so these compiler macros are compiled. Use #'eql instead of #'eq in a couple of places for better style. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * cl-extra.el (notany, notevery): Avoid some dynamic scope stupidity with local variable names in these functions, when they weren't prefixed with cl-; go into some more detail in the doc strings. 2010-12-29 Aidan Kehoe <kehoea@parhasard.net> * byte-optimize.el (side-effect-free-fns): #'remove, #'remq are free of side-effects. (side-effect-and-error-free-fns): Drop dot, dot-marker from the list. 2010-11-17 Aidan Kehoe <kehoea@parhasard.net> * cl-extra.el (coerce): In the argument list, name the first argument OBJECT, not X; the former name was always used in the doc string and is clearer. Handle vector type specifications which include the length of the target sequence, error if there's a mismatch. * cl-macs.el (cl-make-type-test): Handle type specifications starting with the symbol 'eql. 2010-11-14 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (eql): Don't remove the byte-compile property of this symbol. That was necessary to override a bug in bytecomp.el where #'eql was confused with #'eq, which bug we no longer have. If neither expression is constant, don't attempt to handle the expression in this compiler macro, leave it to byte-compile-eql, which produces better code anyway. * bytecomp.el (eq): #'eql is not the function associated with the byte-eq byte code. (byte-compile-eql): Add an explicit compile method for this function, for cases where the cl-macs compiler macro hasn't reduced it to #'eq or #'equal. 2010-10-25 Aidan Kehoe <kehoea@parhasard.net> Add compiler macros and compilation sanity-checking for various functions that take keywords. * byte-optimize.el (side-effect-free-fns): #'symbol-value is side-effect free and not error free. * bytecomp.el (byte-compile-normal-call): Check keyword argument lists for sanity; store information about the positions where keyword arguments start using the new byte-compile-keyword-start property. * cl-macs.el (cl-const-expr-val): Take a new optional argument, cl-not-constant, defaulting to nil, in this function; return it if the expression is not constant. (cl-non-fixnum-number-p): Make this into a separate function, we want to pass it to #'every. (eql): Use it. (define-star-compiler-macros): Use the same code to generate the member*, assoc* and rassoc* compiler macros; special-case some code in #'add-to-list in subr.el. (remove, remq): Add compiler macros for these two functions, in preparation for #'remove being in C. (define-foo-if-compiler-macros): Transform (remove-if-not ...) calls to (remove ... :if-not) at compile time, which will be a real win once the latter is in C. (define-substitute-if-compiler-macros) (define-subst-if-compiler-macros): Similarly for these functions. (delete-duplicates): Change this compiler macro to use #'plists-equal; if we don't have information about the type of SEQUENCE at compile time, don't bother attempting to inline the call, the function will be in C soon enough. (equalp): Remove an old commented-out compiler macro for this, if we want to see it it's in version control. (subst-char-in-string): Transform this to a call to nsubstitute or nsubstitute, if that is appropriate. * cl.el (ldiff): Don't call setf here, this makes for a load-time dependency problem in cl-macs.el 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> * term/vt100.el: Refer to XEmacs, not GNU Emacs, in permissions. * term/bg-mouse.el: * term/sup-mouse.el: Put copyright notice in canonical "Copyright DATE AUTHOR" form. Refer to XEmacs, not GNU Emacs, in permissions. * site-load.el: Add permission boilerplate. * mule/canna-leim.el: * alist.el: Refer to XEmacs, not APEL/this program, in permissions. * mule/canna-leim.el: Remove my copyright, I've assigned it to the FSF. 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> * gtk.el: * gtk-widget-accessors.el: * gtk-package.el: * gtk-marshal.el: * gtk-compose.el: * gnome.el: Add copyright notice based on internal evidence. 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> * easymenu.el: Add reference to COPYING to permission notice. * gutter.el: * gutter-items.el: * menubar-items.el: Fix typo "Xmacs" in permissions notice. 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> * auto-save.el: * font.el: * fontconfig.el: * mule/kinsoku.el: Add "part of XEmacs" text to permission notice. 2010-10-14 Aidan Kehoe <kehoea@parhasard.net> * byte-optimize.el (side-effect-free-fns): * cl-macs.el (remf, getf): * cl-extra.el (tailp, cl-set-getf, cl-do-remf): * cl.el (ldiff, endp): Tighten up Common Lisp compatibility for #'ldiff, #'endp, #'tailp; add circularity checking for the first two. #'cl-set-getf and #'cl-do-remf were Lisp implementations of #'plist-put and #'plist-remprop; change the names to aliases, changes the macros that use them to using #'plist-put and #'plist-remprop directly. 2010-10-12 Aidan Kehoe <kehoea@parhasard.net> * abbrev.el (fundamental-mode-abbrev-table, global-abbrev-table): Create both these abbrev tables using the usual #'define-abbrev-table calls, rather than attempting to special-case them. * cl-extra.el: Force cl-macs to be loaded here, if cl-extra.el is being loaded interpreted. Previously other, later files would redundantly call (load "cl-macs") when interpreted, it's more reasonable to do it here, once. * cmdloop.el (read-quoted-char-radix): Use defcustom here, we don't have any dump-order dependencies that would prevent that. * custom.el (eval-when-compile): Don't load cl-macs when interpreted or when byte-compiling, rely on cl-extra.el in the former case and the appropriate entry in bytecomp-load-hook in the latter. Get rid of custom-declare-variable-list, we have no dump-time dependencies that would require it. * faces.el (eval-when-compile): Don't load cl-macs when interpreted or when byte-compiling. * packages.el: Remove some inaccurate comments. * post-gc.el (cleanup-simple-finalizers): Use #'delete-if-not here, now the order of preloaded-file-list has been changed to make it available. * subr.el (custom-declare-variable-list): Remove. No need for it. Also remove a stub define-abbrev-table from this file, given the current order of preloaded-file-list there's no need for it. 2010-10-10 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el (byte-compile-constp) Forms quoted with FUNCTION are also constant. (byte-compile-initial-macro-environment): In #'the, if FORM is constant and does not match TYPE, warn at byte-compile time. 2010-10-10 Aidan Kehoe <kehoea@parhasard.net> * backquote.el (bq-vector-contents, bq-list*): Remove; the former is equivalent to (append VECTOR nil), the latter to (list* ...). (bq-process-2): Use (append VECTOR nil) instead of using #'bq-vector-contents to convert to a list. (bq-process-1): Now we use list* instead of bq-list * subr.el (list*): Moved from cl.el, since it is now required to be available the first time a backquoted form is encountered. * cl.el (list*): Move to subr.el. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * test-harness.el (Check-Message): Add an omitted comma here, thank you the buildbot. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * hash-table.el (hash-table-key-list, hash-table-value-list) (hash-table-key-value-alist, hash-table-key-value-plist): Remove some useless #'nreverse calls in these files; our hash tables have no order, it's not helpful to pretend they do. * behavior.el (read-behavior): Do the same in this file, in some code evidently copied from hash-table.el. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * info.el (Info-insert-dir): * format.el (format-deannotate-region): * files.el (cd, save-buffers-kill-emacs): Use #'some, #'every and related functions for applying boolean operations to lists, instead of rolling our own ones that cons and don't short-circuit. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el (byte-compile-initial-macro-environment): * cl-macs.el (the): Rephrase the docstring, make its implementation when compiling files a little nicer. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * descr-text.el (unidata-initialize-unicodedata-database) (unidata-initialize-unihan-database, describe-char-unicode-data) (describe-char-unicode-data): Wrap calls to the database functions with (with-fboundp ...), avoiding byte compile warnings on builds without support for the database functions. (describe-char): (reduce #'max ...), not (apply #'max ...), no need to cons needlessly. (describe-char): Remove a redundant lambda wrapping #'extent-properties. (describe-char-unicode-data): Call #'nsubst when replacing "" with nil in the result of #'split-string, instead of consing inside mapcar. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * x-faces.el (x-available-font-sizes): * specifier.el (let-specifier): * package-ui.el (pui-add-required-packages): * msw-faces.el (mswindows-available-font-sizes): * modeline.el (modeline-minor-mode-menu): * minibuf.el (minibuf-directory-files): Replace the O2N (delq nil (mapcar (lambda (W) (and X Y)) Z)) with the ON (mapcan (lambda (W) (and X (list Y))) Z) in these files. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (= < > <= >=): When these functions are handed more than two arguments, and those arguments have no side effects, transform to a series of two argument calls, avoiding funcall in the byte-compiled code. * mule/mule-cmds.el (finish-set-language-environment): Take advantage of this change in a function called 256 times at startup. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el (byte-compile-function-form, byte-compile-quote) (byte-compile-quote-form): Warn at compile time, and error at runtime, if a (quote ...) or a (function ...) form attempts to quote more than one object. 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> * byte-optimize.el (byte-optimize-apply): Transform (apply 'nconc (mapcar ...)) to (mapcan ...); warn about use of the first idiom. * update-elc.el (do-autoload-commands): * packages.el (packages-find-package-library-path): * frame.el (frame-list): * extents.el (extent-descendants): * etags.el (buffer-tag-table-files): * dumped-lisp.el (preloaded-file-list): * device.el (device-list): * bytecomp-runtime.el (proclaim-inline, proclaim-notinline) Use #'mapcan, not (apply #'nconc (mapcar ...) in all these files. * bytecomp-runtime.el (eval-when-compile, eval-and-compile): In passing, mention that these macros also evaluate the body when interpreted. tests/ChangeLog addition: 2011-02-07 Aidan Kehoe <kehoea@parhasard.net> * automated/lisp-tests.el: Test lexical scope for `block', `return-from'; add a Known-Bug-Expect-Failure for a contorted example that fails when byte-compiled.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 07 Feb 2011 12:01:24 +0000
parents fde0802ee3e0
children e79916901603 a9094f28f9a9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5341
fde0802ee3e0 Zap freebsd.h.
Mike Sperber <sperber@deinprogramm.de>
parents: 5290
diff changeset
1 2011-01-15 Mike Sperber <mike@xemacs.org>
fde0802ee3e0 Zap freebsd.h.
Mike Sperber <sperber@deinprogramm.de>
parents: 5290
diff changeset
2
fde0802ee3e0 Zap freebsd.h.
Mike Sperber <sperber@deinprogramm.de>
parents: 5290
diff changeset
3 * fakemail.c: #include <osreldate.h> on FreeBSD, since we no
fde0802ee3e0 Zap freebsd.h.
Mike Sperber <sperber@deinprogramm.de>
parents: 5290
diff changeset
4 longer have freebsd.h.
fde0802ee3e0 Zap freebsd.h.
Mike Sperber <sperber@deinprogramm.de>
parents: 5290
diff changeset
5
5287
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
6 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
7
5290
e6508b64ee08 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5287
diff changeset
8 * gnuserv.c:
e6508b64ee08 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5287
diff changeset
9 * gnuserv.h:
e6508b64ee08 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5287
diff changeset
10 * gnuslib.c:
e6508b64ee08 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5287
diff changeset
11 Add standard permission boilerplate.
e6508b64ee08 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5287
diff changeset
12
5287
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
13 * ad2c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
14 Add copyright notices based on internal evidence.
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
15
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
16 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
17
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
18 * cvtmail.c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
19 * fakemail.c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
20 * make-path.c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
21 * profile.c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
22 * tcp.c:
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
23 Fix typo (doubled phrase) in permission notice.
cd167465bf69 More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5236
diff changeset
24
5236
0f7d483cff5a Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5225
diff changeset
25 2010-06-13 Stephen J. Turnbull <stephen@xemacs.org>
0f7d483cff5a Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5225
diff changeset
26
0f7d483cff5a Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5225
diff changeset
27 * ad2c: Correct FSF address in permission notice.
0f7d483cff5a Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 5225
diff changeset
28
5225
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
29 2010-06-02 Aidan Kehoe <kehoea@parhasard.net>
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
30
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
31 * gnuclient.c (main):
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
32 If gnuclient was built with GTK support, and is asking a gnuserv
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
33 without GTK support to open a frame, fall back to X11, don't
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
34 throw an error on the server side, invisible to the client.
1086297242fe Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5206
diff changeset
35
5206
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
36 2010-04-17 Aidan Kehoe <kehoea@parhasard.net>
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
37
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
38 * make-docfile.c (scan_lisp_file):
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
39 Even if a function doesn't have a doc string, store its file name
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
40 in DOC.
39d74978fd32 Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents: 5091
diff changeset
41
5091
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
42 2010-03-02 Ben Wing <ben@xemacs.org>
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
43
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
44 * digest-doc.c:
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
45 * make-path.c:
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
46 `emacs' isn't defined, but HAVE_CONFIG_H is, so use it to get
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
47 config.h.
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
48
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
49 * getopt.h:
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
50 Conditionalize on HAVE_CONFIG_H to get real prototypes.
ed624ab64583 fix compile errors/warnings
Ben Wing <ben@xemacs.org>
parents: 5076
diff changeset
51
5076
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
52 2010-02-25 Ben Wing <ben@xemacs.org>
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
53
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
54 * make-docfile.c:
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
55 * make-docfile.c (write_c_args):
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
56 Convert newlines to spaces so that argument lists are always on one
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
57 line, because that's what function-documentation-1 expects.
d555581e3cba fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents: 5030
diff changeset
58
5030
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
59 2010-02-11 Vin Shelton <acs@xemacs.org>
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
60
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
61 * winclient.c: Bump connection retries to 20 because some people
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
62 have long startup files.
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
63 (openConversation): If CreateProcess cannot find
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
64 xemacs.exe, try again with the name of the version-specific
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
65 executable. This is useful because the cygwin version of XEmacs
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
66 doesn't install an xemacs.exe executable.
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
67 (parseCommandLine): Fix tracker issue 675 - add current directory
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
68 to filenames under cygwin.
422b4b4fb2a6 Winclient updates
Vin Shelton <acs@xemacs.org>
parents: 4969
diff changeset
69
4950
c50b0b3c7b8d Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents: 4932
diff changeset
70 2010-01-26 Ben Wing <ben@xemacs.org>
c50b0b3c7b8d Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents: 4932
diff changeset
71
c50b0b3c7b8d Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents: 4932
diff changeset
72 * make-msgfile.lex: Vague hacking on this file, insert a comment
c50b0b3c7b8d Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents: 4932
diff changeset
73 about what should be done if we ever want this to work.
c50b0b3c7b8d Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents: 4932
diff changeset
74
4932
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
75 2010-01-24 Ben Wing <ben@xemacs.org>
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
76
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
77 * fakemail.c (args_size):
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
78 * fakemail.c (parse_header):
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
79 * ootags.c (C_entries):
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
80 Fix warnings about possible use of uninitialized vars.
8b63e21b0436 fix compile issues with gcc 4
Ben Wing <ben@xemacs.org>
parents: 4875
diff changeset
81
4911
7eec2a1f3412 Fix Visual Studio 6 build
Vin Shelton <acs@xemacs.org>
parents: 4903
diff changeset
82 2010-02-01 Vin Shelton <acs@xemacs.org>
7eec2a1f3412 Fix Visual Studio 6 build
Vin Shelton <acs@xemacs.org>
parents: 4903
diff changeset
83
7eec2a1f3412 Fix Visual Studio 6 build
Vin Shelton <acs@xemacs.org>
parents: 4903
diff changeset
84 * make-mswin-unicode.pl: Add description of override.
7eec2a1f3412 Fix Visual Studio 6 build
Vin Shelton <acs@xemacs.org>
parents: 4903
diff changeset
85
4903
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
86 2010-01-30 Ben Wing <ben@xemacs.org>
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
87
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
88 * make-mswin-unicode.pl:
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
89 Make it possible to specify an overridden prototype in cases where
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
90 either Cygwin or Visual Studio has errors in their headers that
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
91 can be corrected by falling back to a less qualified type (typically
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
92 without const).
70089046adef fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents: 4894
diff changeset
93
4894
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
94 2010-01-28 Jerry James <james@xemacs.org>
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
95
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
96 * Makefile.in.in: Remove make-msgfile and make-po rules.
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
97 * make-msgfile.c: Removed, obsolete code.
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
98 * make-po.c: Removed, obsolete code.
03ab78e48ef6 Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents: 4875
diff changeset
99
4875
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
100 2010-01-15 Ben Wing <ben@xemacs.org>
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
101
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
102 * make-mswin-unicode.pl:
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
103 Process the command `review'. Cause an error to happen if we try to
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
104 use the command, indicating that the command needs review to determine
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
105 how to handle it.
49de55c09f18 add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents: 4874
diff changeset
106
4874
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
107 2010-01-15 Ben Wing <ben@xemacs.org>
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
108
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
109 * make-mswin-unicode.pl:
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
110 Various fixes to get this to work when using the Cygwin header files
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
111 in /usr/include/w32api instead of the VC++ ones:
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
112 -- Use /usr/include/w32api as default; don't assume that a passed-in
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
113 directory always ends in .../include.
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
114 -- Add `const' to list of known type modifiers.
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
115 -- If function already seen, warn but don't generate twice.
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
116 -- Eliminate `extern' from return type modifiers.
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
117 -- Cosmetic: When eliminating APIENTRY, also eliminate following
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
118 whitespace.
4c3f5e1ecbeb ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents: 4850
diff changeset
119
4850
2727d0d8ef07 Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents: 4785
diff changeset
120 2010-01-13 Ben Wing <ben@xemacs.org>
2727d0d8ef07 Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents: 4785
diff changeset
121
2727d0d8ef07 Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents: 4785
diff changeset
122 * fix-perms.sh: New file.
2727d0d8ef07 Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents: 4785
diff changeset
123
4785
d6cfba1cc388 Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents: 4782
diff changeset
124 2009-12-21 Jerry James <james@xemacs.org>
d6cfba1cc388 Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents: 4782
diff changeset
125
d6cfba1cc388 Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents: 4782
diff changeset
126 * Makefile.in.in: Remove rules for building yow.
d6cfba1cc388 Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents: 4782
diff changeset
127 * yow.c: Removed.
d6cfba1cc388 Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents: 4782
diff changeset
128
4782
1523f1d28be1 Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4781
diff changeset
129 2009-12-18 Jerry James <james@xemacs.org>
1523f1d28be1 Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4781
diff changeset
130
1523f1d28be1 Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4781
diff changeset
131 * Makefile.in.in: Don't install rcs-checkin.
1523f1d28be1 Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4781
diff changeset
132 * rcs-checkin: Remove obsolete file.
1523f1d28be1 Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4781
diff changeset
133
4781
8a653fbe5c27 Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents: 4774
diff changeset
134 2009-12-18 Jerry James <james@xemacs.org>
8a653fbe5c27 Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents: 4774
diff changeset
135
8a653fbe5c27 Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents: 4774
diff changeset
136 * installexe.sh: Add copyright and GPL v2 or later header with
8a653fbe5c27 Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents: 4774
diff changeset
137 permission of Andy Piper.
8a653fbe5c27 Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents: 4774
diff changeset
138
4774
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
139 2009-12-15 Jerry James <james@xemacs.org>
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
140
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
141 * ad2c: Add GPL v2 or later notice with permission of George Ferguson.
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
142 See the xemacs-beta thread beginning with message
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
143 <870180fe0912090940mac19378ydab5b5a04bf06cf8@mail.gmail.com>.
26a007fa2f4c Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents: 4773
diff changeset
144
4773
c858892e4f2b Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents: 4771
diff changeset
145 2009-12-15 Jerry James <james@xemacs.org>
c858892e4f2b Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents: 4771
diff changeset
146
c858892e4f2b Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents: 4771
diff changeset
147 * Makefile.in.in: Remove build dependency and rule for wakeup. Thanks
c858892e4f2b Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents: 4771
diff changeset
148 to Mats Lidell for the patch.
c858892e4f2b Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents: 4771
diff changeset
149
4771
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
150 2009-12-10 Jerry James <james@xemacs.org>
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
151
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
152 * gnudepend.pl: Remove obsolete file.
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
153 * leditcfns.c: Ditto.
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
154 * wakeup.c: Ditto.
e0b8ef850996 Remove more obsolete files.
Jerry James <james@xemacs.org>
parents: 4768
diff changeset
155
4768
0f5bee973a7b Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents: 4759
diff changeset
156 2009-12-08 Sjoerd Mullender <sjoerd@acm.org>
0f5bee973a7b Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents: 4759
diff changeset
157
0f5bee973a7b Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents: 4759
diff changeset
158 * etags.c (absolute_filename): Use memmove instead of strcpy to move
0f5bee973a7b Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents: 4759
diff changeset
159 characters within a string.
0f5bee973a7b Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents: 4759
diff changeset
160
4759
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
161 2009-11-10 Jerry James <james@xemacs.org>
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
162
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
163 * fakemail.c (MAIL_PROGRAM_NAME): No s&m files define this now, so
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
164 make it unconditional.
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
165 (main): Make mail_program_name const, since it is never read, and drop
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
166 a bogus cast as a result.
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
167 * gnuclient.c (main): Remove reference to hp9000s300.
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
168 * gnuserv.h: BSD4_1 is not defined on any supported system.
aa5ed11f473b Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents: 4722
diff changeset
169
4722
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
170 2009-10-26 Jerry James <james@xemacs.org>
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
171
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
172 * insert-data-in-exec.c: Add BSD header, with permission of
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
173 Olivier Galibert. See xemacs-beta message with ID
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
174 <20091013224104.GA2573@dspnet.fr.eu.org>.
dfc9fe46c294 Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents: 4684
diff changeset
175
4684
15c42a3f4065 Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents: 4665
diff changeset
176 2009-08-15 It's me FKtPp ;) <m_pupil@yahoo.com.cn>
15c42a3f4065 Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents: 4665
diff changeset
177
15c42a3f4065 Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents: 4665
diff changeset
178 * gnuclient.c (main): Do not set start point position if user
15c42a3f4065 Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents: 4665
diff changeset
179 didn't requested to do so
15c42a3f4065 Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents: 4665
diff changeset
180
4665
f3a65dff1912 Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4636
diff changeset
181 2009-07-28 Stephen Turnbull <stephen@xemacs.org>
f3a65dff1912 Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4636
diff changeset
182
f3a65dff1912 Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4636
diff changeset
183 * make-docfile.c (write_c_args): Parse UNUSED and USED_IF right.
f3a65dff1912 Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4636
diff changeset
184
4636
5c427ece884b XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4539
diff changeset
185 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org>
5c427ece884b XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4539
diff changeset
186
5c427ece884b XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4539
diff changeset
187 * XEmacs 21.5.29 "garbanzo" is released.
5c427ece884b XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents: 4539
diff changeset
188
4539
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
189 2008-12-27 Aidan Kehoe <kehoea@parhasard.net>
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
190
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
191 * make-docfile.c (main): Allow more than one -d argument, followed
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
192 by a directory to change to.
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
193 (put_filename): Don't strip directory information; with previous
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
194 change, allows retrieval of Lisp function and variable origin
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
195 files from #'built-in-symbol-file relative to lisp-directory.
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
196 (scan_lisp_file): Don't add an extraneous newline after the file
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
197 name, put_filename has added the newline already.
061e030e3270 Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4467
diff changeset
198
4467
23ef20edf6ba Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4464
diff changeset
199 2008-05-21 Aidan Kehoe <kehoea@parhasard.net>
23ef20edf6ba Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4464
diff changeset
200
23ef20edf6ba Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4464
diff changeset
201 * make-mswin-unicode.pl:
23ef20edf6ba Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4464
diff changeset
202 Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
23ef20edf6ba Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents: 4464
diff changeset
203
4464
61aff09a7589 Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents: 4456
diff changeset
204 2008-05-14 Vin Shelton <acs@xemacs.org>
61aff09a7589 Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents: 4456
diff changeset
205
61aff09a7589 Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents: 4456
diff changeset
206 * winclient.c: Create CONNECT_RETRIES and increase retry count
61aff09a7589 Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents: 4456
diff changeset
207 from 5 to 10.
61aff09a7589 Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents: 4456
diff changeset
208
4456
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
209 2008-05-13 Aidan Kehoe <kehoea@parhasard.net>
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
210
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
211 * make-docfile.c (scan_file):
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
212 Pass READ_BINARY to scan_lisp_file, scan_c_file; avoids an
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
213 assertion failure with Visual C++ 2005 Express Edition, and is
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
214 logically more coherent, given that our Lisp and C files are saved
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
215 with Unix line endings.
c785f98c6737 Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents: 4147
diff changeset
216
4147
e8f6f95c9d80 [xemacs-hg @ 2007-08-27 10:26:33 by michaels]
michaels
parents: 4118
diff changeset
217 2007-08-27 Mike Sperber <mike@xemacs.org>
e8f6f95c9d80 [xemacs-hg @ 2007-08-27 10:26:33 by michaels]
michaels
parents: 4118
diff changeset
218
e8f6f95c9d80 [xemacs-hg @ 2007-08-27 10:26:33 by michaels]
michaels
parents: 4118
diff changeset
219 * config.values.in (datarootdir): Add.
e8f6f95c9d80 [xemacs-hg @ 2007-08-27 10:26:33 by michaels]
michaels
parents: 4118
diff changeset
220
4118
9aa33376bb5e [xemacs-hg @ 2007-08-15 12:28:06 by michaels]
michaels
parents: 4032
diff changeset
221 2007-08-12 Mike Sperber <mike@xemacs.org>
9aa33376bb5e [xemacs-hg @ 2007-08-15 12:28:06 by michaels]
michaels
parents: 4032
diff changeset
222
9aa33376bb5e [xemacs-hg @ 2007-08-15 12:28:06 by michaels]
michaels
parents: 4032
diff changeset
223 * Makefile.in.in (datarootdir): Add.
9aa33376bb5e [xemacs-hg @ 2007-08-15 12:28:06 by michaels]
michaels
parents: 4032
diff changeset
224
3993
9bab7e657255 [xemacs-hg @ 2007-05-29 14:14:49 by stephent]
stephent
parents: 3983
diff changeset
225 2007-05-29 Stephen J. Turnbull <stephen@xemacs.org>
9bab7e657255 [xemacs-hg @ 2007-05-29 14:14:49 by stephent]
stephent
parents: 3983
diff changeset
226
4032
cf59c4f5e9bc [xemacs-hg @ 2007-06-22 17:52:13 by stephent]
stephent
parents: 3993
diff changeset
227 * etags.c: Sync to pot_etags_version 17.33.
3993
9bab7e657255 [xemacs-hg @ 2007-05-29 14:14:49 by stephent]
stephent
parents: 3983
diff changeset
228 Reverts part of 2007-03-24 patch: no longer displays
9bab7e657255 [xemacs-hg @ 2007-05-29 14:14:49 by stephent]
stephent
parents: 3983
diff changeset
229 pot_etags_version in usage message.
9bab7e657255 [xemacs-hg @ 2007-05-29 14:14:49 by stephent]
stephent
parents: 3983
diff changeset
230
3983
854c88538753 [xemacs-hg @ 2007-05-24 20:18:50 by james]
james
parents: 3975
diff changeset
231 2007-05-22 Jerry James <james@xemacs.org>
854c88538753 [xemacs-hg @ 2007-05-24 20:18:50 by james]
james
parents: 3975
diff changeset
232
854c88538753 [xemacs-hg @ 2007-05-24 20:18:50 by james]
james
parents: 3975
diff changeset
233 * ellcc.c (do_init_mode): Plug memory leak.
854c88538753 [xemacs-hg @ 2007-05-24 20:18:50 by james]
james
parents: 3975
diff changeset
234
3975
1af222c75869 [xemacs-hg @ 2007-05-21 04:59:52 by stephent]
stephent
parents: 3877
diff changeset
235 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org>
1af222c75869 [xemacs-hg @ 2007-05-21 04:59:52 by stephent]
stephent
parents: 3877
diff changeset
236
1af222c75869 [xemacs-hg @ 2007-05-21 04:59:52 by stephent]
stephent
parents: 3877
diff changeset
237 * XEmacs 21.5.28 "fuki" is released.
1af222c75869 [xemacs-hg @ 2007-05-21 04:59:52 by stephent]
stephent
parents: 3877
diff changeset
238
3877
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
239 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org>
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
240
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
241 * etags.c (print_version): More precise version info. Suggested
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
242 by Steve Youngs.
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
243 (print_help): Use #ifdef; PRINT_UNDOCUMENTED_OPTIONS_HELP may be
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
244 undefined.
fe5bc63ff0e3 [xemacs-hg @ 2007-03-24 12:41:26 by stephent]
stephent
parents: 3876
diff changeset
245
3876
a827a51c3241 [xemacs-hg @ 2007-03-24 11:46:37 by stephent]
stephent
parents: 3728
diff changeset
246 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org>
a827a51c3241 [xemacs-hg @ 2007-03-24 11:46:37 by stephent]
stephent
parents: 3728
diff changeset
247
a827a51c3241 [xemacs-hg @ 2007-03-24 11:46:37 by stephent]
stephent
parents: 3728
diff changeset
248 * etags.c: Sync to pot_etags_version 17.26.
a827a51c3241 [xemacs-hg @ 2007-03-24 11:46:37 by stephent]
stephent
parents: 3728
diff changeset
249
3728
6765f2581182 [xemacs-hg @ 2006-12-08 02:21:53 by vins]
vins
parents: 3651
diff changeset
250 2006-11-24 Benson Margulies <benson@dchbk.us>
6765f2581182 [xemacs-hg @ 2006-12-08 02:21:53 by vins]
vins
parents: 3651
diff changeset
251
6765f2581182 [xemacs-hg @ 2006-12-08 02:21:53 by vins]
vins
parents: 3651
diff changeset
252 * make-mswin-unicode.pl: allow for lower case header file names in
6765f2581182 [xemacs-hg @ 2006-12-08 02:21:53 by vins]
vins
parents: 3651
diff changeset
253 the current platform SDK.
6765f2581182 [xemacs-hg @ 2006-12-08 02:21:53 by vins]
vins
parents: 3651
diff changeset
254
3651
edbb1ff43fe0 [xemacs-hg @ 2006-11-01 21:16:17 by adrian]
adrian
parents: 3556
diff changeset
255 2006-08-11 Jerry James <james@xemacs.org>
edbb1ff43fe0 [xemacs-hg @ 2006-11-01 21:16:17 by adrian]
adrian
parents: 3556
diff changeset
256
edbb1ff43fe0 [xemacs-hg @ 2006-11-01 21:16:17 by adrian]
adrian
parents: 3556
diff changeset
257 * pop.h: Sync with Emacs.
edbb1ff43fe0 [xemacs-hg @ 2006-11-01 21:16:17 by adrian]
adrian
parents: 3556
diff changeset
258 * pop.c: Ditto.
edbb1ff43fe0 [xemacs-hg @ 2006-11-01 21:16:17 by adrian]
adrian
parents: 3556
diff changeset
259
3556
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
260 2006-08-08 Jerry James <james@xemacs.org>
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
261
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
262 * gnuslib.c (disconnect_from_server): shutdown() has been fine on
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
263 Linux for a long time now; use it. Also, don't use length to
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
264 access the buffer unless it is positive, not just nonzero.
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
265 * gnuclient.c (filename_expand): Initialize the last array element
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
266 to get a valid C string in case of overflow. Use strncat to avoid
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
267 buffer overruns.
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
268 * gnuclient.c (main): Use strncpy to avoid buffer overruns.
2161ac78b41e [xemacs-hg @ 2006-08-11 17:37:17 by james]
james
parents: 3529
diff changeset
269
3524
0a57cc6116d1 [xemacs-hg @ 2006-07-21 16:36:50 by stephent]
stephent
parents: 3517
diff changeset
270 2006-07-21 Stephen J. Turnbull <stephen@xemacs.org>
0a57cc6116d1 [xemacs-hg @ 2006-07-21 16:36:50 by stephent]
stephent
parents: 3517
diff changeset
271
3529
9b466a04e78e [xemacs-hg @ 2006-07-25 04:46:41 by stephent]
stephent
parents: 3524
diff changeset
272 * etags.c: Xemacs -> XEmacs.
3524
0a57cc6116d1 [xemacs-hg @ 2006-07-21 16:36:50 by stephent]
stephent
parents: 3517
diff changeset
273
3517
10ee8fade35d [xemacs-hg @ 2006-07-19 15:22:34 by stephent]
stephent
parents: 3503
diff changeset
274 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org>
10ee8fade35d [xemacs-hg @ 2006-07-19 15:22:34 by stephent]
stephent
parents: 3503
diff changeset
275
10ee8fade35d [xemacs-hg @ 2006-07-19 15:22:34 by stephent]
stephent
parents: 3503
diff changeset
276 * etags.c: Sync to pot_etags_version 17.19.
10ee8fade35d [xemacs-hg @ 2006-07-19 15:22:34 by stephent]
stephent
parents: 3503
diff changeset
277
3503
a54cc1730ca5 [xemacs-hg @ 2006-07-11 23:36:21 by james]
james
parents: 3402
diff changeset
278 2006-07-07 Jerry James <james@xemacs.org>
a54cc1730ca5 [xemacs-hg @ 2006-07-11 23:36:21 by james]
james
parents: 3402
diff changeset
279
a54cc1730ca5 [xemacs-hg @ 2006-07-11 23:36:21 by james]
james
parents: 3402
diff changeset
280 * config.values.in: Regenerate.
a54cc1730ca5 [xemacs-hg @ 2006-07-11 23:36:21 by james]
james
parents: 3402
diff changeset
281
3402
a1f50481569f [xemacs-hg @ 2006-05-16 08:22:21 by stephent]
stephent
parents: 3368
diff changeset
282 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org>
a1f50481569f [xemacs-hg @ 2006-05-16 08:22:21 by stephent]
stephent
parents: 3368
diff changeset
283
a1f50481569f [xemacs-hg @ 2006-05-16 08:22:21 by stephent]
stephent
parents: 3368
diff changeset
284 * XEmacs 21.5.27 "fiddleheads" is released.
a1f50481569f [xemacs-hg @ 2006-05-16 08:22:21 by stephent]
stephent
parents: 3368
diff changeset
285
3368
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
286 2006-04-29 Aidan Kehoe <kehoea@parhasard.net>
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
287
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
288 * make-docfile.c:
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
289 * make-docfile.c (put_filename):
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
290 * make-docfile.c (scan_c_file):
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
291 * make-docfile.c (scan_lisp_file):
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
292 Record file name information for built-in symbols. Based on the
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
293 FSF's implementation of same.
959746c534f6 [xemacs-hg @ 2006-04-29 16:15:21 by aidan]
aidan
parents: 3323
diff changeset
294
3323
14995b91af10 [xemacs-hg @ 2006-03-31 19:18:19 by stephent]
stephent
parents: 3322
diff changeset
295 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org>
14995b91af10 [xemacs-hg @ 2006-03-31 19:18:19 by stephent]
stephent
parents: 3322
diff changeset
296
14995b91af10 [xemacs-hg @ 2006-03-31 19:18:19 by stephent]
stephent
parents: 3322
diff changeset
297 * XEmacs 21.5.26 "endive" is released.
14995b91af10 [xemacs-hg @ 2006-03-31 19:18:19 by stephent]
stephent
parents: 3322
diff changeset
298
3259
59f24c2a31ac [xemacs-hg @ 2006-02-26 13:43:04 by stephent]
stephent
parents: 3150
diff changeset
299 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org>
59f24c2a31ac [xemacs-hg @ 2006-02-26 13:43:04 by stephent]
stephent
parents: 3150
diff changeset
300
59f24c2a31ac [xemacs-hg @ 2006-02-26 13:43:04 by stephent]
stephent
parents: 3150
diff changeset
301 * XEmacs 21.5.25 "eggplant" is released.
59f24c2a31ac [xemacs-hg @ 2006-02-26 13:43:04 by stephent]
stephent
parents: 3150
diff changeset
302
3150
b4485998d447 [xemacs-hg @ 2005-12-18 19:04:51 by stephent]
stephent
parents: 3115
diff changeset
303 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org>
b4485998d447 [xemacs-hg @ 2005-12-18 19:04:51 by stephent]
stephent
parents: 3115
diff changeset
304
b4485998d447 [xemacs-hg @ 2005-12-18 19:04:51 by stephent]
stephent
parents: 3115
diff changeset
305 * XEmacs 21.5.24 "dandelion" is released.
b4485998d447 [xemacs-hg @ 2005-12-18 19:04:51 by stephent]
stephent
parents: 3115
diff changeset
306
3090
95be8ad778e3 [xemacs-hg @ 2005-11-24 12:37:59 by malcolmp]
malcolmp
parents: 3083
diff changeset
307 2005-11-22 Malcolm Purvis <malcolmp@xemacs.org>
95be8ad778e3 [xemacs-hg @ 2005-11-24 12:37:59 by malcolmp]
malcolmp
parents: 3083
diff changeset
308
95be8ad778e3 [xemacs-hg @ 2005-11-24 12:37:59 by malcolmp]
malcolmp
parents: 3083
diff changeset
309 * etags.c: Update to author version 17.15.
95be8ad778e3 [xemacs-hg @ 2005-11-24 12:37:59 by malcolmp]
malcolmp
parents: 3083
diff changeset
310
3083
193188e494b2 [xemacs-hg @ 2005-11-22 07:14:37 by ben]
ben
parents: 3062
diff changeset
311 2005-11-22 Ben Wing <ben@xemacs.org>
193188e494b2 [xemacs-hg @ 2005-11-22 07:14:37 by ben]
ben
parents: 3062
diff changeset
312
193188e494b2 [xemacs-hg @ 2005-11-22 07:14:37 by ben]
ben
parents: 3062
diff changeset
313 * Makefile.in.in:
193188e494b2 [xemacs-hg @ 2005-11-22 07:14:37 by ben]
ben
parents: 3062
diff changeset
314 Ignore errors from rm during clean.
193188e494b2 [xemacs-hg @ 2005-11-22 07:14:37 by ben]
ben
parents: 3062
diff changeset
315
3062
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
316 2005-11-13 Ben Wing <ben@xemacs.org>
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
317
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
318 * Makefile.in.in:
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
319 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig.
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
320 Do some refactoring for cleanliness.
21d92abaac3a [xemacs-hg @ 2005-11-13 10:39:28 by ben]
ben
parents: 3031
diff changeset
321
3031
28729529bee2 [xemacs-hg @ 2005-10-26 15:12:46 by stephent]
stephent
parents: 2993
diff changeset
322 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org>
28729529bee2 [xemacs-hg @ 2005-10-26 15:12:46 by stephent]
stephent
parents: 2993
diff changeset
323
28729529bee2 [xemacs-hg @ 2005-10-26 15:12:46 by stephent]
stephent
parents: 2993
diff changeset
324 * XEmacs 21.5.23 "daikon" is released.
28729529bee2 [xemacs-hg @ 2005-10-26 15:12:46 by stephent]
stephent
parents: 2993
diff changeset
325
2993
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
326 2005-10-13 Ben Wing <ben@xemacs.org>
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
327
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
328 * i.c:
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
329 * mmencode.c:
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
330 Always include config.h first.
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
331 * winclient.c:
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
332 Move include of windows.h after config.h.
49316578f12d [xemacs-hg @ 2005-10-14 01:02:29 by ben]
ben
parents: 2940
diff changeset
333
2940
3ee1c468b215 [xemacs-hg @ 2005-09-19 00:36:01 by mta]
mta
parents: 2931
diff changeset
334 2005-09-18 Mike Alexander <mta@arbortext.com>
3ee1c468b215 [xemacs-hg @ 2005-09-19 00:36:01 by mta]
mta
parents: 2931
diff changeset
335
3ee1c468b215 [xemacs-hg @ 2005-09-19 00:36:01 by mta]
mta
parents: 2931
diff changeset
336 * installexe.sh: Don't add an exe extention to a file that already
3ee1c468b215 [xemacs-hg @ 2005-09-19 00:36:01 by mta]
mta
parents: 2931
diff changeset
337 has one. Patch from Rick Rankin.
3ee1c468b215 [xemacs-hg @ 2005-09-19 00:36:01 by mta]
mta
parents: 2931
diff changeset
338
2931
0d5322818981 [xemacs-hg @ 2005-09-14 05:28:38 by stephent]
stephent
parents: 2835
diff changeset
339 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org>
0d5322818981 [xemacs-hg @ 2005-09-14 05:28:38 by stephent]
stephent
parents: 2835
diff changeset
340
0d5322818981 [xemacs-hg @ 2005-09-14 05:28:38 by stephent]
stephent
parents: 2835
diff changeset
341 * XEmacs 21.5.22 "cucumber" is released.
0d5322818981 [xemacs-hg @ 2005-09-14 05:28:38 by stephent]
stephent
parents: 2835
diff changeset
342
2835
ae83ac9c29b3 [xemacs-hg @ 2005-06-28 12:02:39 by crestani]
crestani
parents: 2791
diff changeset
343 2005-06-28 Marcus Crestani <crestani@xemacs.org>
ae83ac9c29b3 [xemacs-hg @ 2005-06-28 12:02:39 by crestani]
crestani
parents: 2791
diff changeset
344
ae83ac9c29b3 [xemacs-hg @ 2005-06-28 12:02:39 by crestani]
crestani
parents: 2791
diff changeset
345 * .cvsignore: Add insert-data-in-exec.
ae83ac9c29b3 [xemacs-hg @ 2005-06-28 12:02:39 by crestani]
crestani
parents: 2791
diff changeset
346
2791
7e34c186ba93 [xemacs-hg @ 2005-05-28 06:11:28 by stephent]
stephent
parents: 2720
diff changeset
347 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org>
7e34c186ba93 [xemacs-hg @ 2005-05-28 06:11:28 by stephent]
stephent
parents: 2720
diff changeset
348
7e34c186ba93 [xemacs-hg @ 2005-05-28 06:11:28 by stephent]
stephent
parents: 2720
diff changeset
349 * XEmacs 21.5.21 "corn" is released.
7e34c186ba93 [xemacs-hg @ 2005-05-28 06:11:28 by stephent]
stephent
parents: 2720
diff changeset
350
2720
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
351 2005-04-01 Marcus Crestani <crestani@xemacs.org>
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
352
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
353 The new allocator.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
354
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
355 DUMP_IN_EXEC:
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
356
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
357 * Makefile.in.in: Only compile insert-data-in-exec if
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
358 DUMP_IN_EXEC is defined.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2687
diff changeset
359
2687
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
360 2005-03-25 Andrey Slusar <anrays@gmail.com>
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
361
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
362 * fakemail.c (CURRENT_USER): Define it if FreeBSD version is >=
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
363 400000. Also, when FreeBSD version is >= 400000 geteuid returns
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
364 uid_t instead of unsigned short.
45609533aa75 [xemacs-hg @ 2005-03-25 16:34:53 by aidan]
aidan
parents: 2653
diff changeset
365
2653
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
366 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org>
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
367
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
368 * XEmacs 21.5.20 "cilantro" is released.
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
369
2651
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
370 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org>
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
371
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
372 * config.values.in:
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
373 * config.values.sh (FileContents): Different regex for autoconf
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
374 2.59.
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2603
diff changeset
375
2603
43ba9e13ee82 [xemacs-hg @ 2005-02-22 08:05:58 by stephent]
stephent
parents: 2594
diff changeset
376 2004-12-19 Stephen J. Turnbull <stephen@xemacs.org>
43ba9e13ee82 [xemacs-hg @ 2005-02-22 08:05:58 by stephent]
stephent
parents: 2594
diff changeset
377
43ba9e13ee82 [xemacs-hg @ 2005-02-22 08:05:58 by stephent]
stephent
parents: 2594
diff changeset
378 * make-docfile.c (write_c_args): Handle UNUSED, USED_IF macros.
43ba9e13ee82 [xemacs-hg @ 2005-02-22 08:05:58 by stephent]
stephent
parents: 2594
diff changeset
379 (scan_c_file): Handle nested parens in DEFUN argument lists.
43ba9e13ee82 [xemacs-hg @ 2005-02-22 08:05:58 by stephent]
stephent
parents: 2594
diff changeset
380
2594
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2584
diff changeset
381 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org>
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2584
diff changeset
382
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2584
diff changeset
383 * XEmacs 21.5.19 "chives" is released.
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2584
diff changeset
384
2584
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
385 2005-01-29 Vin Shelton <acs@xemacs.org>
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
386
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
387 * movemail.c (popmail): Pass error string as format parameter
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
388 instead of as part of format string. Security fixes for
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
389 CAN-2005-0100.
96d5f81e234f [xemacs-hg @ 2005-02-14 03:40:45 by vins]
vins
parents: 2554
diff changeset
390
2554
94f848eb8e4b [xemacs-hg @ 2005-02-03 18:09:26 by james]
james
parents: 2509
diff changeset
391 2005-02-03 Jerry James <james@xemacs.org>
94f848eb8e4b [xemacs-hg @ 2005-02-03 18:09:26 by james]
james
parents: 2509
diff changeset
392
94f848eb8e4b [xemacs-hg @ 2005-02-03 18:09:26 by james]
james
parents: 2509
diff changeset
393 * etags.c: Update to author version 17.11.
94f848eb8e4b [xemacs-hg @ 2005-02-03 18:09:26 by james]
james
parents: 2509
diff changeset
394
2509
6a9afa282c8e [xemacs-hg @ 2005-01-26 09:53:28 by ben]
ben
parents: 2502
diff changeset
395 2005-01-26 Ben Wing <ben@xemacs.org>
6a9afa282c8e [xemacs-hg @ 2005-01-26 09:53:28 by ben]
ben
parents: 2502
diff changeset
396
6a9afa282c8e [xemacs-hg @ 2005-01-26 09:53:28 by ben]
ben
parents: 2502
diff changeset
397 * fakemail.c (main): Add args to fix warning.
6a9afa282c8e [xemacs-hg @ 2005-01-26 09:53:28 by ben]
ben
parents: 2502
diff changeset
398
2502
261c5cd19207 [xemacs-hg @ 2005-01-26 03:40:10 by ben]
ben
parents: 2426
diff changeset
399 2005-01-25 Ben Wing <ben@xemacs.org>
261c5cd19207 [xemacs-hg @ 2005-01-26 03:40:10 by ben]
ben
parents: 2426
diff changeset
400
261c5cd19207 [xemacs-hg @ 2005-01-26 03:40:10 by ben]
ben
parents: 2426
diff changeset
401 * insert-data-in-exec.c (main):
261c5cd19207 [xemacs-hg @ 2005-01-26 03:40:10 by ben]
ben
parents: 2426
diff changeset
402 Need to open everything as binary.
261c5cd19207 [xemacs-hg @ 2005-01-26 03:40:10 by ben]
ben
parents: 2426
diff changeset
403
2426
bb3f73fbbda8 [xemacs-hg @ 2004-12-07 00:20:51 by ben]
ben
parents: 2424
diff changeset
404 2004-12-06 Ben Wing <ben@xemacs.org>
bb3f73fbbda8 [xemacs-hg @ 2004-12-07 00:20:51 by ben]
ben
parents: 2424
diff changeset
405
bb3f73fbbda8 [xemacs-hg @ 2004-12-07 00:20:51 by ben]
ben
parents: 2424
diff changeset
406 * i.c (pump):
bb3f73fbbda8 [xemacs-hg @ 2004-12-07 00:20:51 by ben]
ben
parents: 2424
diff changeset
407 Undo change of 2003-03-06. It causes truncation of output at the end.
bb3f73fbbda8 [xemacs-hg @ 2004-12-07 00:20:51 by ben]
ben
parents: 2424
diff changeset
408
2424
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
409 2004-12-06 Ben Wing <ben@xemacs.org>
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
410
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
411 * gnuclient.c:
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
412 * gnuclient.c (get_current_working_directory):
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
413 * gnuclient.c (filename_expand):
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
414 * gnuclient.c (main):
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
415 Use QXE_PATH_MAX.
c164e88b1977 [xemacs-hg @ 2004-12-06 23:23:41 by ben]
ben
parents: 2421
diff changeset
416
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
417 2004-12-05 Ben Wing <ben@xemacs.org>
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
418
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
419 * make-docfile.c (main):
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
420 * make-docfile.c (scan_c_file):
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
421 Use QXE_PATH_MAX.
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2377
diff changeset
422
2377
bbba13600d74 [xemacs-hg @ 2004-11-08 15:14:36 by stephent]
stephent
parents: 2367
diff changeset
423 2004-11-08 Stephen J. Turnbull <stephen@xemacs.org>
bbba13600d74 [xemacs-hg @ 2004-11-08 15:14:36 by stephent]
stephent
parents: 2367
diff changeset
424
bbba13600d74 [xemacs-hg @ 2004-11-08 15:14:36 by stephent]
stephent
parents: 2367
diff changeset
425 * ellcc.h.in: Use XE_CFLAGS, not CFLAGS.
bbba13600d74 [xemacs-hg @ 2004-11-08 15:14:36 by stephent]
stephent
parents: 2367
diff changeset
426
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
427 2004-10-14 Ben Wing <ben@xemacs.org>
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
428
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
429 * digest-doc.c (main):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
430 * make-dump-id.c (main):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
431 * profile.c:
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
432 * profile.c (main):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
433 * sorted-doc.c (main):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
434 Add proper decls for main().
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
435
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
436 * make-msgfile.c:
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
437 Document that this is old junk.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
438 Move proposal to text.c.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
439
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
440 * make-msgfile.lex:
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
441 Move proposal to text.c.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
442
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
443 * make-mswin-unicode.pl:
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
444 Convert error-generating code so that the entire message will
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
445 be seen as a single unrecognized token.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
446
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
447
2346
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2325
diff changeset
448 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org>
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2325
diff changeset
449
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2325
diff changeset
450 * XEmacs 21.5.18 "chestnut" is released.
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2325
diff changeset
451
2325
9d8bfee6e672 [xemacs-hg @ 2004-10-07 14:51:11 by james]
james
parents: 2286
diff changeset
452 2004-10-07 Jerry James <james@xemacs.org>
9d8bfee6e672 [xemacs-hg @ 2004-10-07 14:51:11 by james]
james
parents: 2286
diff changeset
453
9d8bfee6e672 [xemacs-hg @ 2004-10-07 14:51:11 by james]
james
parents: 2286
diff changeset
454 * etags.c: Update to author version 17.6.
9d8bfee6e672 [xemacs-hg @ 2004-10-07 14:51:11 by james]
james
parents: 2286
diff changeset
455
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
456 2004-09-14 Jerry James <james@xemacs.org>
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
457
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
458 * digest-doc.c (main): Remove unused argc and argv.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
459 * fakemail.c (main): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
460 * make-dump-id.c (main): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
461 * profile.c (main): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
462 * sorted-doc.c (main): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
463 * gnuclient.c (tell_emacs_to_resume): Mark unused parameters.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
464 * gnuserv.c (main): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
465 * make-docfile.c (write_c_args): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
466 * pop.c (socket_connection): Ditto.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2225
diff changeset
467
2225
4968c73cb252 [xemacs-hg @ 2004-08-20 04:40:08 by james]
james
parents: 2022
diff changeset
468 2004-08-10 Jerry James <james@xemacs.org>
4968c73cb252 [xemacs-hg @ 2004-08-20 04:40:08 by james]
james
parents: 2022
diff changeset
469
4968c73cb252 [xemacs-hg @ 2004-08-20 04:40:08 by james]
james
parents: 2022
diff changeset
470 * etags.c: Update to author version 16.56.
4968c73cb252 [xemacs-hg @ 2004-08-20 04:40:08 by james]
james
parents: 2022
diff changeset
471
2022
d31a2df82ddb [xemacs-hg @ 2004-04-17 13:29:19 by olivierg]
olivierg
parents: 2015
diff changeset
472 2004-04-17 Olivier Galibert <galibert@pobox.com>
d31a2df82ddb [xemacs-hg @ 2004-04-17 13:29:19 by olivierg]
olivierg
parents: 2015
diff changeset
473
d31a2df82ddb [xemacs-hg @ 2004-04-17 13:29:19 by olivierg]
olivierg
parents: 2015
diff changeset
474 * insert-data-in-exec.c (main): Fix error message.
d31a2df82ddb [xemacs-hg @ 2004-04-17 13:29:19 by olivierg]
olivierg
parents: 2015
diff changeset
475
2015
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
476 2003-12-07 Olivier Galibert <galibert@pobox.com>
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
477
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
478 * Makefile.in.in (insert-data-in-exec): Added target.
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
479
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
480 * insert-data-in-exec.c: Added.
2364237fbc0f [xemacs-hg @ 2004-04-15 20:56:17 by olivierg]
olivierg
parents: 1964
diff changeset
481
1964
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1886
diff changeset
482 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org>
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1886
diff changeset
483
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1886
diff changeset
484 * XEmacs 21.5.17 "chayote" is released.
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1886
diff changeset
485
1886
ee0959363838 [xemacs-hg @ 2004-01-27 17:49:44 by james]
james
parents: 1743
diff changeset
486 2004-01-21 Jerry James <james@xemacs.org>
ee0959363838 [xemacs-hg @ 2004-01-27 17:49:44 by james]
james
parents: 1743
diff changeset
487
ee0959363838 [xemacs-hg @ 2004-01-27 17:49:44 by james]
james
parents: 1743
diff changeset
488 * Makefile.in.in (mmencode): Pass $(ldflags) to the compiler.
ee0959363838 [xemacs-hg @ 2004-01-27 17:49:44 by james]
james
parents: 1743
diff changeset
489 * Makefile.in.in (make-path): Ditto.
ee0959363838 [xemacs-hg @ 2004-01-27 17:49:44 by james]
james
parents: 1743
diff changeset
490
1743
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1716
diff changeset
491 2003-10-13 Jerry James <james@xemacs.org>
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1716
diff changeset
492
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1716
diff changeset
493 * ellcc.c: Remove attribute definitions, include new compiler.h
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1716
diff changeset
494 instead, and change existing uses to match new definitions.
543769b89fed [xemacs-hg @ 2003-10-14 05:02:57 by james]
james
parents: 1716
diff changeset
495
1716
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1706
diff changeset
496 2003-09-26 Steve Youngs <youngs@xemacs.org>
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1706
diff changeset
497
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1706
diff changeset
498 * XEmacs 21.5.16 "celeriac" is released.
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1706
diff changeset
499
1706
9fc738581a9d [xemacs-hg @ 2003-09-22 03:21:12 by james]
james
parents: 1688
diff changeset
500 2003-09-21 Jerry James <james@xemacs.org>
9fc738581a9d [xemacs-hg @ 2003-09-22 03:21:12 by james]
james
parents: 1688
diff changeset
501
9fc738581a9d [xemacs-hg @ 2003-09-22 03:21:12 by james]
james
parents: 1688
diff changeset
502 * ellcc.c (do_init_mode): Do not mangle external symbols in the
9fc738581a9d [xemacs-hg @ 2003-09-22 03:21:12 by james]
james
parents: 1688
diff changeset
503 generated doc file with C++ so that emodules.c can find them.
9fc738581a9d [xemacs-hg @ 2003-09-22 03:21:12 by james]
james
parents: 1688
diff changeset
504
1688
034a2ddf5b6b [xemacs-hg @ 2003-09-16 03:57:54 by james]
james
parents: 1665
diff changeset
505 2003-09-15 Jerry James <james@xemacs.org>
034a2ddf5b6b [xemacs-hg @ 2003-09-16 03:57:54 by james]
james
parents: 1665
diff changeset
506
034a2ddf5b6b [xemacs-hg @ 2003-09-16 03:57:54 by james]
james
parents: 1665
diff changeset
507 * make-dump-id.c (main): Output separate declaration and
034a2ddf5b6b [xemacs-hg @ 2003-09-16 03:57:54 by james]
james
parents: 1665
diff changeset
508 definition for dump_id.
034a2ddf5b6b [xemacs-hg @ 2003-09-16 03:57:54 by james]
james
parents: 1665
diff changeset
509
1665
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1663
diff changeset
510 2003-09-03 Steve Youngs <youngs@xemacs.org>
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1663
diff changeset
511
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1663
diff changeset
512 * XEmacs 21.5.15 "celery" is released.
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1663
diff changeset
513
1663
8bae4d6cdd10 [xemacs-hg @ 2003-09-03 20:43:46 by james]
james
parents: 1618
diff changeset
514 2003-08-29 Nickolay Pakoulin <npak@ispras.ru>
8bae4d6cdd10 [xemacs-hg @ 2003-09-03 20:43:46 by james]
james
parents: 1618
diff changeset
515
8bae4d6cdd10 [xemacs-hg @ 2003-09-03 20:43:46 by james]
james
parents: 1618
diff changeset
516 * make-dump-id.c (main): Set "C" linking rule for dump_id
8bae4d6cdd10 [xemacs-hg @ 2003-09-03 20:43:46 by james]
james
parents: 1618
diff changeset
517
1618
1038bc1b8cb9 [xemacs-hg @ 2003-08-12 14:47:07 by james]
james
parents: 1510
diff changeset
518 2003-06-30 Andrew Begel <abegel@CS.Berkeley.EDU>
1038bc1b8cb9 [xemacs-hg @ 2003-08-12 14:47:07 by james]
james
parents: 1510
diff changeset
519
1038bc1b8cb9 [xemacs-hg @ 2003-08-12 14:47:07 by james]
james
parents: 1510
diff changeset
520 * make-docfile.c (write_c_args): Escape newlines that arise in the
1038bc1b8cb9 [xemacs-hg @ 2003-08-12 14:47:07 by james]
james
parents: 1510
diff changeset
521 C argument list, and comment on synch with Emacs.
1038bc1b8cb9 [xemacs-hg @ 2003-08-12 14:47:07 by james]
james
parents: 1510
diff changeset
522
1510
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1506
diff changeset
523 2003-06-01 Steve Youngs <youngs@xemacs.org>
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1506
diff changeset
524
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1506
diff changeset
525 * XEmacs 21.5.14 "cassava" is released.
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1506
diff changeset
526
1506
4d97756f2fbe [xemacs-hg @ 2003-05-29 17:02:31 by james]
james
parents: 1473
diff changeset
527 2003-05-29 Jerry James <james@xemacs.org>
4d97756f2fbe [xemacs-hg @ 2003-05-29 17:02:31 by james]
james
parents: 1473
diff changeset
528
4d97756f2fbe [xemacs-hg @ 2003-05-29 17:02:31 by james]
james
parents: 1473
diff changeset
529 * ellcc.c: Rationalize and repair use of GCC function attributes.
4d97756f2fbe [xemacs-hg @ 2003-05-29 17:02:31 by james]
james
parents: 1473
diff changeset
530
1473
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1431
diff changeset
531 2003-05-10 Steve Youngs <youngs@xemacs.org>
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1431
diff changeset
532
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1431
diff changeset
533 * XEmacs 21.5.13 "cauliflower" is released.
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1431
diff changeset
534
1431
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1349
diff changeset
535 2003-04-24 Steve Youngs <youngs@xemacs.org>
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1349
diff changeset
536
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1349
diff changeset
537 * XEmacs 21.5.12 "carrot" is released.
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1349
diff changeset
538
1349
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1346
diff changeset
539 2003-02-09 Ville Skyttä <scop@xemacs.org>
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1346
diff changeset
540
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1346
diff changeset
541 * config.values.in (pkgdir): Remove (unused).
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1346
diff changeset
542
1346
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
543 2003-03-06 Ben Wing <ben@xemacs.org>
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
544
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
545 * i.c:
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
546 * i.c (pump):
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
547 Sleep between calls to check for I/O, since these calls are non-blocking.
01c57eb70ae9 [xemacs-hg @ 2003-03-09 02:27:27 by ben]
ben
parents: 1307
diff changeset
548
1307
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1269
diff changeset
549 2003-02-16 Steve Youngs <youngs@xemacs.org>
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1269
diff changeset
550
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1269
diff changeset
551 * XEmacs 21.5.11 "cabbage" is released.
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1269
diff changeset
552
1269
13aa577c1dd2 [xemacs-hg @ 2003-02-07 15:33:34 by james]
james
parents: 1238
diff changeset
553 2003-01-14 Jerry James <james@xemacs.org>
13aa577c1dd2 [xemacs-hg @ 2003-02-07 15:33:34 by james]
james
parents: 1238
diff changeset
554
13aa577c1dd2 [xemacs-hg @ 2003-02-07 15:33:34 by james]
james
parents: 1238
diff changeset
555 * ellcc.c (do_compile_mode): Search XEmacs directories first for
13aa577c1dd2 [xemacs-hg @ 2003-02-07 15:33:34 by james]
james
parents: 1238
diff changeset
556 include files. Thanks to Raymond Toy.
13aa577c1dd2 [xemacs-hg @ 2003-02-07 15:33:34 by james]
james
parents: 1238
diff changeset
557
1238
97cb5bab4ea0 [xemacs-hg @ 2003-01-28 03:19:04 by youngs]
youngs
parents: 1187
diff changeset
558 2003-01-28 Steve Youngs <youngs@xemacs.org>
97cb5bab4ea0 [xemacs-hg @ 2003-01-28 03:19:04 by youngs]
youngs
parents: 1187
diff changeset
559
97cb5bab4ea0 [xemacs-hg @ 2003-01-28 03:19:04 by youngs]
youngs
parents: 1187
diff changeset
560 * rcs2log: Synch to GNU version.
97cb5bab4ea0 [xemacs-hg @ 2003-01-28 03:19:04 by youngs]
youngs
parents: 1187
diff changeset
561
1187
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1123
diff changeset
562 2003-01-04 Steve Youngs <youngs@xemacs.org>
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1123
diff changeset
563
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1123
diff changeset
564 * XEmacs 21.5.10 "burdock" is released.
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1123
diff changeset
565
1123
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1111
diff changeset
566 2002-11-27 Ben Wing <ben@xemacs.org>
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1111
diff changeset
567
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1111
diff changeset
568 * .cvsignore:
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1111
diff changeset
569 Add .idb, .ilk for MS Windows VC++.
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1111
diff changeset
570
1111
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
571 2002-11-17 Ben Wing <ben@xemacs.org>
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
572
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
573 * ellcc.c (do_init_mode):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
574 Use full prototypes.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
575
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
576 * ellcc.h.in:
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
577 Use the correct user-specified compiler.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
578
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
579 * make-docfile.c:
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
580 * make-docfile.c (read_c_string):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
581 * make-docfile.c (scan_c_file):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
582 Fix shadowing warnings. NOTE: This was already fixed
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
583 awhile ago, but reverted by Jerry. Please be careful.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 996
diff changeset
584
996
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
585 2002-08-08 Jerry James <james@xemacs.org>
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
586
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
587 * config.values.in: Regenerate.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
588 * ellcc.c: A thorough cleanup to eliminate potential buffer
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
589 overruns and null pointer dereferences, make some global variables
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
590 local, add braces for clarity, etc., using hints supplied by
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
591 splint.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
592 * ellcc.c (EXEC_GROW_SIZE): New constant for dynamic allocation.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
593 * ellcc.c (xrealloc): New function.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
594 * ellcc.c (xstrdup): New function.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
595 * ellcc.c (fatal): Use varargs for flexibility.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
596 * ellcc.c (add_string): New function for abstracting the addition
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
597 of a string to the exec_argv array.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
598 * ellcc.c (add_to_argv): Use add_string. Improve whitespace
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
599 handling. Recode finite state machine as a clearer while loop.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
600 * ellcc.c (do_compile_mode): Use new functions.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
601 * ellcc.c (do_link_mode): Ditto.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
602 * ellcc.c (do_init_mode): Ditto. Default to in-source
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
603 make-docfile.
25e260cb7994 [xemacs-hg @ 2002-09-10 15:27:02 by james]
james
parents: 981
diff changeset
604
981
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 978
diff changeset
605 2002-08-30 Steve Youngs <youngs@xemacs.org>
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 978
diff changeset
606
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 978
diff changeset
607 * XEmacs 21.5.9 "brussels sprouts" is released.
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 978
diff changeset
608
978
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
609 2002-08-21 Jerry James <james@xemacs.org>
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
610
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
611 * gnuserv.h: Revert previous patch. Include syssignal.h instead
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
612 of signal.h.
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
613 * tcp.c: Include config.h, and substitute syssignal.h for
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
614 signal.h.
13e47461d509 [xemacs-hg @ 2002-08-29 19:45:20 by james]
james
parents: 954
diff changeset
615
954
cb345077c98c [xemacs-hg @ 2002-08-05 16:34:07 by james]
james
parents: 933
diff changeset
616 2002-08-02 Jerry James <james@xemacs.org>
cb345077c98c [xemacs-hg @ 2002-08-05 16:34:07 by james]
james
parents: 933
diff changeset
617
cb345077c98c [xemacs-hg @ 2002-08-05 16:34:07 by james]
james
parents: 933
diff changeset
618 * gnuserv.h: Include signal.h early to define NSIG before config.h
cb345077c98c [xemacs-hg @ 2002-08-05 16:34:07 by james]
james
parents: 933
diff changeset
619 is included.
cb345077c98c [xemacs-hg @ 2002-08-05 16:34:07 by james]
james
parents: 933
diff changeset
620
933
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 930
diff changeset
621 2002-07-27 Steve Youngs <youngs@xemacs.org>
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 930
diff changeset
622
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 930
diff changeset
623 * XEmacs 21.5.8 "broccoli" is released.
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 930
diff changeset
624
930
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
625 2002-07-15 Jerry James <james@xemacs.org>
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
626
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
627 * make-docfile.c: Change whitespace and organization to reduce the
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
628 size of the diff against FSF Emacs sources and synch to Emacs 21.2.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
629 Remove unused DO_REALLOC.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
630 Mark XEmacs changes and additions more clearly.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
631 Reintroduce previously deleted Emacs code inside #if 0 ... #endif.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
632 * make-docfile.c (next_extra_elc): Replace goto with do-while.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
633 * make-docfile.c (main): Put XEmacs-only args in one place.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
634 * make-docfile.c (write_c_args): Change buff to buf to match
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
635 Emacs. Replace pointer arithmetic with simpler array syntax.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
636 * make-docfile.c (scan_c_file): Note that DEFSIMPLE and DEFPRED no
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
637 longer exist. Correct the "name too long" test (off by one).
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
638 Die with message if a DEFUN has no docstring instead of hanging.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
639 * make-docfile.c (scan_lisp_file): Introduce while loops used in
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
640 Emacs sources to skip consecutive blank lines.
eaedf30d9d76 [xemacs-hg @ 2002-07-23 08:34:59 by youngs]
youngs
parents: 920
diff changeset
641
920
47ca978d6c75 [xemacs-hg @ 2002-07-14 14:23:43 by adrian]
adrian
parents: 894
diff changeset
642 2002-07-14 Adrian Aichner <adrian@xemacs.org>
47ca978d6c75 [xemacs-hg @ 2002-07-14 14:23:43 by adrian]
adrian
parents: 894
diff changeset
643
47ca978d6c75 [xemacs-hg @ 2002-07-14 14:23:43 by adrian]
adrian
parents: 894
diff changeset
644 * etags.c: It's XEmacs, not Xemacs.
47ca978d6c75 [xemacs-hg @ 2002-07-14 14:23:43 by adrian]
adrian
parents: 894
diff changeset
645
894
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 881
diff changeset
646 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org>
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 881
diff changeset
647
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 881
diff changeset
648 * XEmacs 21.5.7 "broccoflower" is released.
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 881
diff changeset
649
881
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
650 2002-05-29 Greg Steuck <greg-xemacs-patches@nest.cx>
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
651
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
652 * gnuclient.c: Makes it possible again to #undef
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
653 INTERNET_DOMAIN_SOCKETS in lib-src/gnuserv.h and get a functional
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
654 gnuserv which is only accessible through UNIX_DOMAIN_SOCKETS.
dfee0026a079 [xemacs-hg @ 2002-06-25 08:09:01 by stephent]
stephent
parents: 853
diff changeset
655
853
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
656 2002-05-28 Ben Wing <ben@xemacs.org>
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
657
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
658 * make-docfile.c (scan_c_file):
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
659 * make-docfile.c (scan_lisp_file):
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
660 Fix places where we forget to check for EOF.
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 826
diff changeset
661
826
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
662 2002-05-05 Ben Wing <ben@xemacs.org>
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
663
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
664 * i.c:
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
665 * i.c (skip_executable_name):
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
666 * i.c (main):
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
667 Create an inheritable event and pass it on to XEmacs, so that ^C
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
668 can be handled properly. Intercept ^C and signal the event.
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
669 "Stop Build" in VC++ now works.
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 814
diff changeset
670
814
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
671 2002-04-14 Ben Wing <ben@xemacs.org>
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
672
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
673 * make-docfile.c:
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
674 * make-docfile.c (next_extra_elc):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
675 * make-docfile.c (again): Removed.
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
676 * make-docfile.c (main):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
677 * make-docfile.c (getc_iso2022):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
678 * make-docfile.c (MDGET):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
679 * make-docfile.c (read_c_string):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
680 * make-docfile.c (write_c_args):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
681 * make-docfile.c (scan_c_file):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
682 * make-docfile.c (read_lisp_symbol):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
683 * make-docfile.c (scan_lisp_file):
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
684 Add basic support for handling ISO 2022 doc strings -- we parse
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
685 the basic charset designation sequences so we know whether we're
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
686 in ASCII and have to pay attention to end quotes and such.
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
687
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
688 Reformat code according to coding standards.
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 804
diff changeset
689
804
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 800
diff changeset
690 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 800
diff changeset
691
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 800
diff changeset
692 * XEmacs 21.5.6 "bok choi" is released.
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 800
diff changeset
693
800
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 778
diff changeset
694 2002-03-31 Ben Wing <ben@xemacs.org>
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 778
diff changeset
695
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 778
diff changeset
696 * make-mswin-unicode.pl: Don't be fucked up by CRLF. Output code
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 778
diff changeset
697 to force errors when nonintercepted Windows calls issued.
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 778
diff changeset
698
778
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
699 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk>
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
700
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
701 * make-mswin-unicode.pl: Pick up location of include files from
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
702 MSVCDIR environment variable.
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
703 Add --includedir command-line option.
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
704 Remove 'dir' command.
2923009caf47 [xemacs-hg @ 2002-03-16 10:38:59 by ben]
ben
parents: 776
diff changeset
705
776
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
706 2002-03-15 Ben Wing <ben@xemacs.org>
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
707
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
708 * Makefile.in.in (blessmail):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
709 * Makefile.in.in (maybe-blessmail):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
710 Use -no-packages to avoid problems with package files shadowing
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
711 core files (e.g. unicode.el in mule-ucs).
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
712
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
713 2002-03-12 Ben Wing <ben@xemacs.org>
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
714
3322
cf02a1da936a [xemacs-hg @ 2006-03-31 17:51:18 by stephent]
stephent
parents: 3259
diff changeset
715 * The Great Mule Merge of March 2002:
cf02a1da936a [xemacs-hg @ 2006-03-31 17:51:18 by stephent]
stephent
parents: 3259
diff changeset
716 see node by that name in the Internals Manual.
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
717
768
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
718 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
719
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
720 * XEmacs 21.5.5 "beets" is released.
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
721
725
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 715
diff changeset
722 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org>
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 715
diff changeset
723
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 715
diff changeset
724 * XEmacs 21.5.4 "bamboo" is released.
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 715
diff changeset
725
715
add5a821a048 [xemacs-hg @ 2001-12-24 07:44:55 by yoshiki]
yoshiki
parents: 709
diff changeset
726 2001-12-24 Yoshiki Hayashi <yoshiki@xemacs.org>
add5a821a048 [xemacs-hg @ 2001-12-24 07:44:55 by yoshiki]
yoshiki
parents: 709
diff changeset
727
add5a821a048 [xemacs-hg @ 2001-12-24 07:44:55 by yoshiki]
yoshiki
parents: 709
diff changeset
728 * etags.c: Define __P if not already defined.
add5a821a048 [xemacs-hg @ 2001-12-24 07:44:55 by yoshiki]
yoshiki
parents: 709
diff changeset
729
709
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
730 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org>
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
731
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
732 * Makefile.in.in (etags_args): Define EMACS_NAME to XEmacs.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
733
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
734 * etags.c: Sync with pot version 14.28.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
735 Additional change for XEmacs to define PTR macro.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
736
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
737 2001-12-12 Francesco Potorti` <pot@gnu.org>
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
738
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
739 * etags.c (PHP_functions): New function by Diez B. Roggisch,
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
740 heavily adapted by me, for parsing PHP.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
741 (LOOKING_AT): New macro.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
742 (Perl_functions, Python_functions, PHP_functions)
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
743 (Scheme_functions, Texinfo_nodes): Use it.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
744 (Perl_functions): Use strneq.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
745 (prolog_pred): Renamed to prolog_pr.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
746 (prolog_pr): Recognise Prolog rules (thanks to Geert Kloosterman)
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
747 in addition to predicates.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
748 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
749 unmodified compile, as Cygwin's regex.h is incompatible with us
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
750 (thanks to Markus Hoenicka).
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
751 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
1df7a5cfb04a [xemacs-hg @ 2001-12-20 07:58:18 by yoshiki]
yoshiki
parents: 654
diff changeset
752
654
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 647
diff changeset
753 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org>
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 647
diff changeset
754
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 647
diff changeset
755 * XEmacs 21.5.3 "asparagus" is released.
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 647
diff changeset
756
647
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
757 2001-06-24 Ben Wing <ben@xemacs.org>
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
758
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
759 * gnuserv.c (permitted):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
760 * gnuserv.c (setup_table):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
761 * gnuslib.c (connect_to_internet_server):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
762 * make-docfile.c (scan_c_file):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
763 * mmencode.c (fromqp):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
764 * movemail.c:
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
765 * movemail.c (main):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
766 * movemail.c (xmalloc):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
767 * ootags.c (prolog_pred):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
768 * ootags.c (erlang_func):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
769 * yow.c (yow):
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
770 Fix unsigned warnings. See src/ChangeLog for details.
b39c14581166 [xemacs-hg @ 2001-08-13 04:45:47 by ben]
ben
parents: 641
diff changeset
771
641
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 613
diff changeset
772 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 613
diff changeset
773
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 613
diff changeset
774 * XEmacs 21.5.2 "artichoke" is released.
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 613
diff changeset
775
613
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
776 2001-06-10 Ben Wing <ben@xemacs.org>
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
777
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
778 * cvtmail.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
779 * fakemail.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
780 * gnuserv.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
781 * gnuserv.c (handle_ipc_request):
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
782 * gnuserv.h:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
783 * gnuslib.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
784 * make-msgfile.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
785 * make-path.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
786 * pop.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
787 * pop.h:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
788 * profile.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
789 * tcp.c:
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
790 Rename 'GNU Emacs' to XEmacs in the copyright.
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
791 Fix comments in similar ways.
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
792
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
793 * digest-doc.c (main):
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
794 * sorted-doc.c (main):
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
795 Fix program and author name to reflect XEmacs.
023b83f4e54b [xemacs-hg @ 2001-06-10 10:42:16 by ben]
ben
parents: 567
diff changeset
796
567
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 558
diff changeset
797 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net>
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 558
diff changeset
798
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 558
diff changeset
799 * movemail.c (lock_dot): Use mkstemp if available
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 558
diff changeset
800
558
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 543
diff changeset
801 2001-05-23 Ben Wing <ben@xemacs.org>
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 543
diff changeset
802
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 543
diff changeset
803 * pop.c (socket_connection):
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 543
diff changeset
804 Remove BROKEN_CYGWIN.
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 543
diff changeset
805
543
7e84f0c36c66 [xemacs-hg @ 2001-05-17 13:44:34 by stephent]
stephent
parents: 531
diff changeset
806 2001-05-17 Stephen J. Turnbull <stephen@xemacs.org>
7e84f0c36c66 [xemacs-hg @ 2001-05-17 13:44:34 by stephent]
stephent
parents: 531
diff changeset
807
7e84f0c36c66 [xemacs-hg @ 2001-05-17 13:44:34 by stephent]
stephent
parents: 531
diff changeset
808 * config.values.sh: lisp/utils?/config.el -> lisp/config.el.
7e84f0c36c66 [xemacs-hg @ 2001-05-17 13:44:34 by stephent]
stephent
parents: 531
diff changeset
809
531
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
810 2001-05-12 Ben Wing <ben@xemacs.org>
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
811
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
812 * etags.c:
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
813 * etags.c (print_help):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
814 * etags.c (sym_type):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
815 * etags.c (TOTAL_KEYWORDS):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
816 * etags.c (hash):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
817 * etags.c (in_word_set):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
818 * etags.c (consider_token):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
819 * etags.c (C_entries):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
820 * etags.c (add_regex):
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
821 new version from Francesco.
0493e9f3c27f [xemacs-hg @ 2001-05-12 11:16:12 by ben]
ben
parents: 523
diff changeset
822
523
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 522
diff changeset
823 2001-05-09 Ben Wing <ben@xemacs.org>
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 522
diff changeset
824
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 522
diff changeset
825 * etags.c (add_regex):
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 522
diff changeset
826 temporary fix to avoid crashes with new regex code.
cd662ad69f40 [xemacs-hg @ 2001-05-09 13:43:49 by ben]
ben
parents: 522
diff changeset
827
522
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 502
diff changeset
828 2001-05-09 Martin Buchholz <martin@xemacs.org>
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 502
diff changeset
829
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 502
diff changeset
830 * XEmacs 21.5.1 "anise" is released.
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 502
diff changeset
831
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 479
diff changeset
832 2001-04-29 Ben Wing <ben@xemacs.org>
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 479
diff changeset
833
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 479
diff changeset
834 * gnuclient.c (filename_expand): Warning fix.
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 479
diff changeset
835
479
52626a2f02ef [xemacs-hg @ 2001-04-20 11:31:53 by ben]
ben
parents: 472
diff changeset
836 2001-04-20 Ben Wing <ben@xemacs.org>
52626a2f02ef [xemacs-hg @ 2001-04-20 11:31:53 by ben]
ben
parents: 472
diff changeset
837
52626a2f02ef [xemacs-hg @ 2001-04-20 11:31:53 by ben]
ben
parents: 472
diff changeset
838 * .cvsignore: Added stuff for Windows.
52626a2f02ef [xemacs-hg @ 2001-04-20 11:31:53 by ben]
ben
parents: 472
diff changeset
839
472
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
840 2001-04-18 Martin Buchholz <martin@xemacs.org>
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
841
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
842 * XEmacs 21.5.0 "alfalfa" is released.
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
843
464
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
844 2000-08-01 Jon Schewe <jpschewe@eggplant.mtu.net>
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
845
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
846 * gnuclient.c (filename_expand): Let Cygwin convert Windows path
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
847 to Unix.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
848
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
849 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org>
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
850
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
851 * gnuserv.h: Document TMPDIR lossage if client/server values differ.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
852
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
853 2001-03-21 Martin Buchholz <martin@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
854
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
855 * XEmacs 21.2.46 "Urania" is released.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
856
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
857 2001-03-19 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
858
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
859 * installexe.sh: use bash by default.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
860
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
861 2001-03-09 William M. Perry <wmperry@aventail.com>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
862
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
863 * gnuclient.c: The Great GTK Merge.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
864
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
865 2000-08-10 Ben Wing <ben@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
866
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
867 * update-elc.sh: deleted (retroactively). replaced by update-elc-2.el,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
868 which does the same thing but in a platform-independent way.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
869
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
870 2001-02-23 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
871
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
872 * XEmacs 21.2.45 "Thelxepeia" is released.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
873
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
874 2001-02-11 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
875
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
876 * Makefile.in.in: Cleanup.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
877 Fixes bug: all must depend on make-dump-id.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
878 Don't install make-path; only used at build time.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
879 Avoid duplicating file lists for maintainability.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
880 (PUBLIC_INSTALLABLE_SCRIPTS): More logical naming.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
881 (PUBLIC_INSTALLABLE_EXES): Likewise.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
882 (PUBLIC_INSTALLABLES): Likewise.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
883 (PRIVATE_INSTALLABLE_SCRIPTS): More logical naming.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
884 (PRIVATE_INSTALLABLE_EXES): Likewise.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
885 (PRIVATE_INSTALLABLES): Likewise.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
886 (SCRIPTS): Likewise.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
887 (EXES): New.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
888 (PROGS): New.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
889 (SOURCES): Remove.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
890 (BUILD_UTILITIES): New. Non-installed utilities.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
891 (INSTALL_GNUSERV): New.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
892 (unlock): Remove obsolete target.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
893 (relock): Remove obsolete target.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
894 (aixcc.c): Remove. Obsolete.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
895 * aixcc.lex: Remove. Obsolete.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
896
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
897 2001-02-12 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
898
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
899 * make-dump-id.c (main): No longer #include dump-id.h.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
900
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
901 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
902
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
903 * gnuserv.c (permitted): Compiler warning fixes.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
904
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
905 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
906
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
907 * XEmacs 21.2.44 "Thalia" is released.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
908
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
909 2001-01-31 Francesco Potorti` <pot@gnu.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
910
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
911 * etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
912 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
913 (C_entries): Tag token renamed to still_in_token because sunos4
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
914 pcc wants to expand it as the token() macro even though it has no
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
915 arguments.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
916
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
917 2001-01-30 Francesco Potorti` <pot@gnu.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
918
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
919 * etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
920
47ca978d6c75 [xemacs-hg @ 2002-07-14 14:23:43 by adrian]
adrian
parents: 894
diff changeset
920 #define it for the sake of XEmacs.
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
921 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
922 HAVE_CONFIG_H. This change only affects a standalone etags.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
923 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
924 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
925 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
926 [!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
927 WINDOWSNT, as this is the correct way to use it.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
928
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
929 2001-01-28 Francesco Potorti` <pot@gnu.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
930
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
931 * etags.c: Be capable to parse nested struct-like structures.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
932 (structdef, structtag): Struct state machine revisited.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
933 (struct tok): Revisited.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
934 (cstack, nestlev, instruct): New struct and macros.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
935 (pushclass_above, popclass_above, write_classname): New functions
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
936 for dealing with nested class names, inspired by Mykola Dzyuba.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
937 (consider_token, make_C_tag, C_entries): Many changes for dealing
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
938 with arbitrarily nested structures.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
939 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
940 (C_entries): Consider templates in C++.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
941 (sym_type): New constant st_C_class for detecting "class" also in
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
942 C mode.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
943 (C_AUTO): New macro for automatic detection of C++.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
944 (consider_token): Automatic set C++ mode.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
945 (C_entries): New security check for yacc.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
946 (print_language_names, print_help): Mention the autodetect
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
947 feature, do not show help for the -C option, now mostly useless.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
948 (C_entries): Tag C++ forward declarations if --declarations.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
949 (C_entries): Don't be fooled by things like XDEFUN.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
950 (consider_token): Discard asm pseudo function.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
951
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
952 2001-01-25 Francesco Potorti` <pot@gnu.org>
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
953
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
954 * etags.c (struct tok): Renamed from struct token.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
955 (token): Renamed from tok.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
956 (structtype): Make it a local variable.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
957 [DEBUG]: Use assert.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
958 (xrnew): Change the synopsis.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
959 (typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
960 (grow_linebuffer): Don't call xrnew when not needed.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
961 (token): buffer renamed to line.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
962 (C_entries): Three calls to inibuffer moved here from main.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
963 (C_entries): Removed all references to var methodlen, delete it.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
964 (linebuffer_setlen): Was grow_buffer, now also sets len.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
965 (consider_token, C_entries, Pascal_functions): Use it.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
966 (C_entries): Preventing problems relative to extern "C".
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
967 (C_entries): Can tag more than one variable or func separated by
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
968 comma when --declarations is used.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
969 (C_entries): More accurate tagging of members and declarations.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
970 (yacc_rules): Was global, made local to C_entries.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
971 (next_token_is_func): Removed.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
972 (fvdef): New constants fdefunkey, fdefunname.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
973 (consider_token, C_entries): Use them.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
974 (C_entries): Build proper lisp names for Emacs DEFUNs.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
975
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
976 2001-01-15 Francesco Potorti` <pot@gnu.org>
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
977
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
978 * etags.c (print_language_names): Print filenames in addition to
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
979 suffixes.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
980
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
981 2001-01-12 Francesco Potorti` <pot@gnu.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
982
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
983 * etags.c (get_language_from_langname): Renamed from
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
984 get_language_from_name.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
985 (get_language_from_filename): Renamed from
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
986 get_language_from_suffix. Now first looks for the complete file
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
987 name.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
988 (language): New member char **filenames.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
989 (Makefile_filenames): List of possible filenames for makefiles.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
990 (lang_names): Added a NULL member for every entry, added an entry
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
991 for makefiles.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
992 (Makefile_targets): New function, inspired by Assar Westerlund
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
993 <assar@sics.se>.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
994
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
995 2000-11-07 Francesco Potorti` <pot@gnu.org>
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
996
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
997 * etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
998 it conformant to the style of the rest of the code.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
999
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1000 2000-02-10 Francesco Potorti` <pot@gnu.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1001
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1002 * etags.c (iswhite): Redefined not to consider '\0' as white
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1003 space, and use it throughout in place of isspace, thus preventing a
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1004 potential signed char to int conversion problem.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1005 (MSDOS): #undefine befere redefining
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1006
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1007 2000-02-04 Francesco Potorti` <pot@gnu.org>
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1008
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1009 * etags.c (many functions): Add prototypes.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1010
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1011 2000-01-31 Francesco Potorti` <pot@gnu.org>
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1012
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1013 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1014 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1015 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1016 (getenv, getcwd): Only declare them if necessary.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1017 (EMACS_NAME): New constant macro.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1018 (print_version): Use it.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1019 (P_) [__STDC__]: Macro for defining function prototypes.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1020
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1021 2001-02-06 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1022
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1023 * gnuclient.c:
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1024 * gnuserv.c:
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1025 * gnuslib.c:
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1026 * pop.c:
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1027 Remove use of BSD-specific types.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1028 s/u_(char|short|int_long)/unsigned $1/g
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1029 Remove pointless casts.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1030
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1031 2001-01-28 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1032
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1033 * gnuclient.c (get_current_working_directory): Use HAVE_GETCWD.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1034 warning: getwd() possibly used unsafely, consider using getcwd().
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1035
456
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1036 2001-01-26 Martin Buchholz <martin@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1037
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1038 * XEmacs 21.2.43 "Terspichore" is released.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1039
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1040 2001-01-23 Jan Vroonhof <jan@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1041
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1042 * gnuserv.c: Add version number to object file.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1043
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1044 2001-01-20 Klaus Frank <klausf@i3.informatik.rwth-aachen.de>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1045
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1046 * gnuserv.c (permitted): Completed the checks of the authentication
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1047 data length, replaced memcmp() by constant-time comparision.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1048
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1049 2001-01-20 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1050
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1051 * XEmacs 21.2.42 "Poseidon" is released.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1052
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1053 2001-01-17 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1054
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1055 * XEmacs 21.2.41 "Polyhymnia" is released.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1056
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1057 2001-01-08 Martin Buchholz <martin@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1058
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1059 * XEmacs 21.2.40 is released.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1060
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1061 2000-12-31 Martin Buchholz <martin@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1062
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1063 * XEmacs 21.2.39 is released.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1064
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1065 2000-12-05 Martin Buchholz <martin@xemacs.org>
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1066
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1067 * XEmacs 21.2.38 is released.
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1068
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1069 2000-11-13 Yoshiki Hayashi <yoshiki@xemacs.org>
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1070
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1071 * Makefile.in.in: Define emacs iff it's necessary.
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1072
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1073 2000-11-14 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1074
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1075 * XEmacs 21.2.37 is released.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1076
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1077 2000-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1078
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1079 * make-po.c (BUFSIZE): Increase value to 32768.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1080
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1081 2000-10-04 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1082
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1083 * XEmacs 21.2.36 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1084
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1085 2000-09-30 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1086
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1087 * gnuserv.c (main): Warning removal.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1088
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1089 2000-09-27 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1090
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1091 * ellcc.c: Make global variables static. Avoids warnings on AIX.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1092
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1093 * fakemail.c (make_file_preface): Use standard type time_t.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1094 Actually check that the 25th char returned from ctime is '\n'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1095
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1096 2000-09-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1097
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1098 * *: Spelling mega-patch
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1099
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1100 2000-09-12 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1101
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1102 * gnuclient.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1103 * hexl.c (usage):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1104 Use `Usage', not `usage', in Usage messages.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1105
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1106 2000-07-15 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1107
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1108 * etags.c (add_regex): added commented out code for use figuring
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1109 out Windows quoting problems.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1110 * hexl.c (main): fixed warnings about possible used uninitialized.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1111
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1112 2000-07-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1113
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1114 * XEmacs 21.2.35 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1115
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1116 2000-07-12 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1117
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1118 * gnuserv.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1119 (handle_internet_request):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1120 (handle_unix_request):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1121 (internet_init):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1122 Use socklen_t instead of int or size_t.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1123
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1124 2000-07-11 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1125
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1126 * hexl.c (usage): Use full ANSI C prototypes.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1127
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1128 2000-07-05 Craig Lanning <lanning@scra.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1129
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1130 * Makefile.in.in (INSTALL_DATA):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1131 * Makefile.in.in (UTILITIES):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1132 * Makefile.in.in (GETOPTDEPS):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1133 * Makefile.in.in (i):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1134 mingw support: don't try to build gnuclient, add
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1135 support for building and installing minitar
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1136
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1137 2000-06-10 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1138
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1139 * Makefile.in.in (INSTALLABLES_BASE):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1140 * Makefile.in.in (ootags_args):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1141 * Makefile.in.in (yow):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1142 Build i.exe.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1143 Don't build run*.exe.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1144
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1145 * b2m.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1146 * b2m.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1147 * ellcc.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1148 * etags.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1149 * etags.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1150 * etags.c (get_compressor_from_suffix):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1151 * etags.c (process_file):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1152 * etags.c (readline_internal):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1153 * etags.c (etags_getcwd):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1154 * etags.c (relative_filename):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1155 * etags.c (absolute_filename):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1156 * etags.c (filename_is_absolute):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1157 * etags.c (canonicalize_filename):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1158 * fakemail.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1159 * fakemail.c (make_file_preface):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1160 * getopt.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1161 * getopt.h:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1162 * gnuclient.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1163 * gnuclient.c (filename_expand):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1164 * gnuserv.h:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1165 * gnuserv.h (PATCHLEVEL):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1166 * hexl.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1167 * hexl.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1168 * make-docfile.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1169 * make-docfile.c (APPEND_BINARY):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1170 * make-docfile.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1171 * make-dump-id.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1172 * mmencode.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1173 * mmencode.c (fromqp):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1174 * mmencode.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1175 * movemail.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1176 * movemail.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1177 * movemail.c (popmail):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1178 * ootags.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1179 * ootags.c (main):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1180 * ootags.c (readline_internal):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1181 * ootags.c (etags_getcwd):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1182 * ootags.c (absolute_filename):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1183 * ootags.c (filename_is_absolute):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1184 * ootags.c (canonicalize_filename):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1185 * pop.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1186 * pop.c (DONT_ENCAPSULATE):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1187 * pop.c (pop_open):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1188 * pop.c (socket_connection):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1189 * pop.c (pop_trash):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1190 * profile.c (gettimeofday):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1191 * wakeup.c:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1192 * yow.c (rootrelativepath):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1193 Remove MSDOS support, converting to WIN32_NATIVE where necessary.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1194 WINDOWSNT -> WIN32_NATIVE.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1195 __CYGWIN32__ -> CYGWIN.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1196 DOS_NT -> WIN32_NATIVE.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1197 Remove unused NO_SHORTNAMES.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1198 Changes for removed nt\inc.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1199
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1200 2000-06-07 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1201
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1202 * run.c, run.h, run.rc: Removed. We no longer need these for
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1203 building runxemacs.exe, and it's questionable at best whether
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1204 rungnuclient.exe was ever used or is even needed. The correct
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1205 solution is just to make gnuclient.exe a windows program and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1206 use the gnuattach script to run 'i gnuclient.exe'. Not that
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1207 gnuclient currently works under Windows native in any case.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1208
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1209 2000-05-28 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1210
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1211 * XEmacs 21.2.34 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1212
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1213 2000-05-11 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1214
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1215 * i.c (get_command): fix unused var warning.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1216
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1217 * make-docfile.c (MDGET):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1218 * make-docfile.c (read_c_string):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1219 rewrite and reindent -- handle closing doc string comment that's
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1220 not at beg of line.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1221
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1222 2000-05-01 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1223
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1224 * XEmacs 21.2.33 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1225
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1226 2000-04-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1227
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1228 * gnuclient.c (initialize_signals): Always use full ANSI prototypes.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1229
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1230 2000-04-06 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1231
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1232 * i.c: New file, source for the i utility.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1233
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1234 2000-03-22 Mike Alexander <mta@arbortext.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1235
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1236 * make-dump-id.c (gettimeofday): new (Windows only)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1237
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1238 2000-03-20 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1239
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1240 * XEmacs 21.2.32 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1241
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1242 2000-03-20 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1243
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1244 * make-dump-id.c: Use config.h and systime.h for portability.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1245
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1246 2000-02-20 Olivier Galibert <galibert@pobox.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1247
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1248 * make-dump-id.c: Added.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1249
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1250 * Makefile.in.in: Add support for make-dump-id.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1251
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1252 2000-03-12 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1253
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1254 * etags.c (canonicalize_filename): fixed a problem with gratuitous
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1255 capitalization of file names under MS Windows.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1256
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1257 2000-02-23 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1258
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1259 * XEmacs 21.2.31 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1260
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1261 2000-02-21 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1262
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1263 * XEmacs 21.2.30 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1264
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1265 2000-02-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1266
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1267 * XEmacs 21.2.29 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1268
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1269 2000-02-13 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1270
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1271 * etags.c: Upgrade to version 13.44.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1272 Only added (unsigned char) casts to calls like isspace (*cp).
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1273
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1274 2000-02-07 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1275
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1276 * XEmacs 21.2.28 is released.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1277
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1278 2000-02-06 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1279
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1280 * getopt.h:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1281 * fakemail.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1282 * gnuslib.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1283 * sorted-doc.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1284 * yow.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1285 * cvtmail.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1286 * movemail.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1287 * gnuclient.c:
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1288 ANSIfy. Use coding standards for function definitions.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1289 Make C++-compilable. Modified from patch by Zack Weinberg.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1290
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1291 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1292
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1293 * hexl.c: Removed MSDOS code; set binary I/O flags for NT.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
1294
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1295 2000-01-18 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1296
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1297 * XEmacs 21.2.27 is released.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1298
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1299 2000-01-18 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1300
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1301 * ootags.c: Ansify.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1302 * etags.c:
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1303 * getopt.c:
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1304 * cvtmail.c:
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1305 Remove declarations of ANSI errno, getenv(), malloc().
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1306
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1307 2000-01-13 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1308
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1309 * movemail.c (main):
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1310 * make-docfile.c (write_c_args):
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1311 Simple compiler warning fixes.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1312
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1313 2000-01-09 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1314
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1315 * *.[ch]: Change <../src/config.h> to <config.h>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1316 * ellcc.c: Always use <...> to #include files not in `.'
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1317 * Makefile.in.in: Use safer -I paths.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1318 Use $(top_srcdir) instead of $(srcdir)/../src
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1319 Add warning comment.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1320
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1321 2000-01-08 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1322
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1323 * movemail.c: Warning removal.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1324
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1325 2000-01-06 Norbert Koch <norbert@s.netic.de>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1326
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1327 * movemail.c: Typo fix.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1328
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1329 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1330
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1331 * movemail.c: Overhaul of the locking code.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1332
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1333 2000-01-03 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1334
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1335 * etags.c (etags_strrchr): Ansify.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1336 (etags_strchr): Ansify.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1337 (get_compressor_from_suffix): Remove warning, make code cleaner.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
1338
436
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
1339 1999-12-31 Martin Buchholz <martin@xemacs.org>
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
1340
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
1341 * XEmacs 21.2.26 is released.
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
1342
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1343 1999-12-24 Martin Buchholz <martin@xemacs.org>
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1344
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1345 * XEmacs 21.2.25 is released.
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1346
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1347 1999-12-21 Martin Buchholz <martin@xemacs.org>
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1348
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1349 * fakemail.c (cuserid): ((expr)) ==> (expr)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1350
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1351 * fakemail.c (xmalloc): ANSIfy.
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
1352
432
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1353 1999-12-14 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1354
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1355 * config.values.sh: Only update config.values.in if changed.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1356 No external dependencies except perl.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1357 No temporary files.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1358
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1359 1999-12-14 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1360
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1361 * XEmacs 21.2.24 is released.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1362
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1363 1999-12-13 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1364
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1365 * etags.c: Fix warning: `_GNU_SOURCE' redefined.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
1366
430
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1367 1999-12-07 Martin Buchholz <martin@xemacs.org>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1368
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1369 * XEmacs 21.2.23 is released.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1370
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1371 1999-11-29 Andreas Jaeger <aj@suse.de>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1372
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1373 * Makefile.in.in (INSTALLABLE_SCRIPTS): Removed pstogif.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1374 pstogif: Moved to package tm.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
1375
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1376 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1377
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1378 * XEmacs 21.2.22 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1379
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1380 1999-11-28 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1381
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1382 * XEmacs 21.2.21 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1383
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1384 1999-11-20 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1385
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1386 * process-gnu-depends.sh: Deleted. Obsolete.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1387 * process-depends.sh: Deleted. Obsolete.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1388
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1389 1999-11-20 Jan Vroonhof <jan@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1390
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1391 * Makefile.in.in (instvardir): Added. From
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1392 Jeff Miller <jmiller@smart.net>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1393
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1394 1999-11-19 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1395
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1396 * etags.c: Upgrade to pot etags version 13.33.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1397 Make `etags --version' print out `XEmacs', not `GNU Emacs'
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1398
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1399 1999-11-17 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1400
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1401 * etags.c (canonicalize_filename): Typo fix
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1402
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1403 1999-11-05 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1404
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1405 * etags.c:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1406 * ../etc/etags.1:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1407 * ../etc/NEWS:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1408 Upgrade to etags version 13.32.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1409 etags.c has warnings removed, in addition.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1410
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1411 1999-11-15 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1412
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1413 * gnuserv.c (ipc_spawn_watchdog): Use pid_t instead of int.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1414
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1415 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1416
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1417 * XEmacs 21.2.20 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1418
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1419 1999-11-04 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1420
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1421 * gnuserv.c (handle_response): Warning suppression
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1422
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1423 1999-09-27 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1424
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1425 * ellcc.c:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1426 ANSIfy.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1427 Remove MSDOS cruft.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1428 Remove WINDOWS cruft.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1429 Remove VMS cruft.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1430 (main): The wrong number of bytes were being read during argument
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1431 processing.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1432 Delete ANSI imitations like ellcc_strchr().
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1433 Call functions with the right number of arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1434 Fix a typo.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1435 Make functions static.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1436 Remove compiler warnings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1437
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1438 1999-09-22 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1439
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1440 * cvtmail.c (main): ANSIfy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1441 * digest-doc.c (main): ANSIfy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1442 * hexl.c (main): ANSIfy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1443
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1444 * make-path.c: Remove declaration for errno.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1445 * mmencode.c (nextcharin): ANSIfy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1446 * movemail.c (pop_retr): ANSIfy
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1447
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1448 1999-07-30 Gleb Arshinov <gleb@cs.stanford.edu>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1449
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1450 * pop.c (pop_quit): use CLOSESOCKET() instead of close()
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1451
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1452 * run.c (build_cmdline): Fix NT native build unreferenced variable
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1453 warning
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1454 (WinMain): Fix release mode build unreferenced variable warning
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1455
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1456 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1457
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1458 * XEmacs 21.2.19 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1459
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1460 1999-07-22 SL Baur <steve@miho>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1461
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1462 * Makefile.in.in (datadir): Add.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1463 From Jeff Miller <jmiller@smart.net>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1464
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1465 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1466
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1467 * XEmacs 21.2.18 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1468
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1469 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1470
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1471 * XEmacs 21.2.17 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1472
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1473 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1474
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1475 * XEmacs 21.2.16 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1476
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1477 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1478
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1479 * XEmacs 21.2.15 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1480
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1481 1999-06-03 SL Baur <steve@steve1.m17n.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1482
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1483 * Makefile.in.in: Move .PHONY up to force execution of `all'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1484
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1485 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1486
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1487 * XEmacs 21.2.14 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1488
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1489 1999-05-14 SL Baur <steve@gneiss.etl.go.jp>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1490
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1491 * update-elc.sh (ignore_pattern): Correct ignore_dirs/ignore=dirs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1492 european keyboard fuckage.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1493
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1494 1999-05-03 Hrvoje Niksic <hniksic@srce.hr>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1495
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1496 * update-elc.sh (ignore_pattern): Installation.el is dead.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1497
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1498 1999-05-03 Hrvoje Niksic <hniksic@srce.hr>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1499
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1500 * gnuclient.c: Include <sysfile.h> instead of <../src/sysfile.h>.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1501
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1502 * Makefile.in.in (cppflags): Add -I$(top_srcdir)/src.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1503
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1504 1999-04-29 Andy Piper <andy@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1505
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1506 * make-docfile.c: build fixes for mingw32.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1507 * movemail.c: ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1508 * run.c: ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1509 * yow.c: ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1510 * profile.c: ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1511 (gettimeofday): new function copied from nt.c.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1512
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1513 * fakemail.c (make_file_preface): make buildable under windows.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1514
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1515 * Makefile.in.in: fix some build targets for when we are building
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1516 on a windows platform.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1517
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1518 1999-03-12 giacomo boffi <giacomo.boffi@polimi.it>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1519
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1520 * sorted-doc.c: corrected the outdated or plainly wrong
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1521 texinfo headers. Broken up the mega-@table that crashes (at
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1522 least RedHat's) TeX with:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1523 "! TeX capacity exceeded, sorry [save size=4000]."
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1524
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1525 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1526
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1527 * XEmacs 21.2.13 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1528
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1529 1999-03-10 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1530
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1531 * fakemail.c (add_a_stream): Always use full ANSI prototypes.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1532
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1533 1999-03-06 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1534
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1535 * fakemail.c (main): Ansify.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1536 (xmalloc): Ansify.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1537 (xrealloc): Ansify.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1538 (get_keyword): use paranoid casts ((int) (unsigned char) c) for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1539 islower, toupper, isspace.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1540
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1541 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1542
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1543 * XEmacs 21.2.12 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1544
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1545 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1546
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1547 * XEmacs 21.2.11 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1548
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1549 1999-02-17 SL Baur <steve@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1550
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1551 * update-elc.sh (ignore_dirs): Ignore lisp/mule subdirectory when
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1552 running latin-1 XEmacs. Eliminate 20.4 bundled kludges.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1553 * update-custom.sh (ignore_dirs): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1554
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1555 1999-02-15 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1556
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1557 * update-elc.sh:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1558 * update-autoloads.sh:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1559 * update-custom.sh:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1560 - improved automounter tmp directory support.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1561 - support 4 (!) empirically discovered automounter conventions
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1562
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1563 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1564
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1565 * XEmacs 21.2.10 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1566
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1567 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1568
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1569 * XEmacs 21.2.9 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1570
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1571 1999-01-27 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1572
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1573 * movemail.c (strerror): Must be NON-static, since it is used by
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1574 the POP code, which got moved to a separate file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1575
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1576 1999-01-11 Damon Lipparelli <lipp@primus.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1577
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1578 * Makefile.in.in: use ellcc (not ellc) everywhere
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1579
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1580 1999-01-10 J. Kean Johnston <jkj@sco.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1581
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1582 * Makefile.in.in: Include moduledir and sitemoduledir as defined
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1583 by configure.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1584 - Install ellcc if we're supporting shared objects
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1585 - Rules and dependancies for ellcc
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1586
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1587 * ellcc.c: New file. Front end to the compiler for making modules.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1588
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1589 * ellcc.h.in: New file. Contains path definitions used by ellcc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1590
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1591 * make-docfile.c (main): Add check for -E argument used by ellcc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1592
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1593 * make-docfile.c: Changed output format when in -E mode.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1594
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1595 1998-12-28 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1596
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1597 * XEmacs 21.2.8 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1598
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1599 1998-12-24 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1600
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1601 * XEmacs 21.2.7 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1602
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1603 1998-12-17 Andy Piper <andy@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1604
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1605 * pop.c (pop_open): disable use of getpass() which doesn't exist under NT.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1606
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1607 * movemail.c: mess with includes so that it builds under native NT.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1608
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1609 * pop.c: mess with includes so that it builds under native NT.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1610 From Fabrice Popineau <popineau@ese-metz.fr>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1611
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1612 1998-12-16 Andy Piper <andy@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1613
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1614 * XEmacs 21.2.6 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1615
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1616 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1617
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1618 * XEmacs 21.2.5 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1619
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1620 1998-11-28 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1621
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1622 * XEmacs 21.2-beta4 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1623
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1624 1998-10-14 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1625
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1626 * Makefile.in.in (movemail): add getopt.o to objects to link with.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1627
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1628 * movemail.c (main): rewrite to use getopt(). Add options for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1629 order reversal, progress output, regexp matching and message
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1630 deletion.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1631 (popmail): add some optional verbose messages. Use pop_search_top
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1632 for getting messages. Make message deletion optional. Delete all
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1633 messages at the end rather than on a message my message basis.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1634 (pop_search_top): new function. Looks for messages matching regexp.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1635 (compile_regex): new function stolen from etags.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1636
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1637 1998-10-15 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1638
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1639 * XEmacs 21.2-beta3 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1640
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1641 1998-10-12 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1642
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1643 * lib-src/gnudepend.pl: Use /usr/bin/perl.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1644 * Makefile.in.in (INSTALLABLE_SCRIPTS): Remove send-pr, install-sid.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1645 (GEN_SCRIPTS): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1646 Delete TM_SCRIPTS.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1647
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1648 1998-10-11 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1649
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1650 * tm-au:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1651 * tm-file:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1652 * tm-html:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1653 * tm-image:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1654 * tm-mpeg:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1655 * tm-plain:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1656 * tm-ps:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1657 * tmdecode: packaged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1658
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1659 1998-10-10 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1660
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1661 * install-sid:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1662 * send-pr: Packaged
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1663
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1664 1998-10-01 Jan Vroonhof <vroonhof@math.ethz.ch>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1665
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1666 * gnuclient.c (filename_expand): Don't forget to copy the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1667 filename under UNIX.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1668
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1669 1998-09-29 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1670
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1671 * XEmacs 21.2-beta2 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1672
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1673 1998-09-08 Raymond Toy <toy@rtp.ericsson.se>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1674
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1675 * gnuclient.c (filename_expand): Added better recognition of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1676 absolute pathnames for CYGWIN. Convert absolute pathnames with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1677 drive letters to something xemacs can handle.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1678
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1679 1998-07-19 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1680
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1681 * XEmacs 21.2-beta1 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1682
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1683 1998-07-15 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1684
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1685 * update-elc.sh (ignore_pattern): Add very-early-lisp.el as
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1686 something to never bytecompile.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1687
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1688 1998-07-12 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1689
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1690 * XEmacs 21.0-pre5 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1691
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1692 1998-07-09 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1693
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1694 * XEmacs 21.0-pre4 is released.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1695
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1696 1998-06-16 Jan Vroonhof <vroonhof@math.ethz.ch>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1697
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1698 * gnuclient.c (main): Use disconnect_from_server to read & echo
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1699 result.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1700
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1701 1998-06-15 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1702
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1703 * Makefile.in.in: add xemacs icon to the runemacs executable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1704
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1705 1998-06-12 Jim Radford <radford@robby.caltech.edu>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1706
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1707 * gnuclient.c (initialize_signals): Don't pass SIGHUP to XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1708
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1709 1998-06-04 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1710
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1711 * Makefile.in.in (runemacs): add runemacs as a build target if
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1712 HAVE_MS_WINDOWS is defined. move cpp stuff up slightly so that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1713 build targets can benefit from it.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1714
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1715 1998-05-31 Kirill M. Katsnelson <kkm@kis.ru>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1716
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1717 * wakeup.c (sleep): Added NT preprocessor quirkfest.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1718 (main): Exit when fflush() fails on stdout.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1719
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1720 1998-05-30 Kirill M. Katsnelson <kkm@kis.ru>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1721
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1722 * getopt.c: Undefine getpid before redefinition.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1723
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1724 * make-docfile.c: Added <io.h> when compiling on NT
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1725
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1726 * movemail.c: Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1727 (main): Declare some auto variables only when DISABLE_DIRECT_ACCESS
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1728 is undefined, so they are actually used, to supress compilation
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1729 warnings.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1730
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1731 1998-05-16 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1732
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1733 * etags.c (C_entries): Avoid short circuiting comparisons on
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1734 characters that may appear in C++ operator constructs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1735
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1736 * ootags.c (C_entries): Commentary change.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1737
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1738 * Makefile.in.in (PKG_SCRIPTS): Remove add-little-package.sh.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1739
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1740 1998-05-11 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1741
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1742 * Makefile.in.in:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1743 - Adjust for luser's CDPATH being set to something weird.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1744 - Take into account bash 2.02's tendency to print the cwd when
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1745 using CDPATH. Always use `cd ./foo' instead of `cd foo'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1746 - fix the run-temacs target to use $(DUMPENV)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1747 - fix the run-puremacs target to use $(DUMPENV)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1748 - fix the `depend' target to properly $(RM) the right files
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1749 - Generate a better TAGS file for XEmacs' lisp code using
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1750 hand-crafted regexps.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1751 - Use standard coding conventions for modules/Makefile.in
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1752
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1753 1998-05-07 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1754
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1755 * update-elc.sh: test x && y loses in the presence of set -e, use
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1756 if instead.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1757
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1758 1998-05-06 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1759
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1760 * Makefile.in.in (INSTALLABLES): Add ootags.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1761 (ootags): New rule.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1762
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1763 * ootags.c: New file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1764 (C_entries): Annotate changes neeeded for increased OO-Browser
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1765 context.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1766
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1767 1998-05-05 Jeff Miller <jmiller@smart.net>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1768
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1769 * Makefile.in.in: Fix blessmail target.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1770
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1771 1998-05-05 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1772
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1773 * Makefile.in.in (etags_args): Back out -DOO_BROWSER
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1774
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1775 * etags.c: Revert to CVS version 1.11 (pre OO-browser additions).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1776
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1777 1998-05-04 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1778
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1779 * etags.c (C_entries): Fix order typo.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1780 (C_entries): Restore previous test.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1781
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1782 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1783
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1784 * installexe.sh: fix to use -f instead of -e file and fix shift
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1785 typo.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1786
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1787 1998-04-22 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1788
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1789 * etags.c: Unconditionally define OO_BROWSER.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1790
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1791 * update-elc.sh: Tighten up regexp on uname -r output.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1792 From Marcus Thiessel <thiessel@tmbbwtx.bbn.hp.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1793
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1794 1998-04-19 Jan Vroonhof <vroonhof@math.ethz.ch>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1795
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1796 * gnuclient.c (main): Read eval from from stdin if just "-batch"
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1797 is given.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1798 * gnudoit: Support this.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1799 * gnuserv.1: Document this behavior.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1800
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1801 1998-04-18 Andreas Jaeger <aj@arthur.rhein-neckar.de>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1802
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1803 * etags.c (C_entries): Add parentheses.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1804
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1805 * etags-vmslib.c: Remove. It's not needed anymore.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1806
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1807 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1808
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1809 * installexe.sh: New file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1810
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1811 1998-04-17 Olivier Galibert <galibert@pobox.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1812
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1813 * etags.c (print_help): Correct typo.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1814
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1815 1998-04-16 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1816
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1817 * Makefile.in.in: Add -DOO_BROWSER to etags arguments.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1818
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1819 * etags.c: Synch with InfoDock.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1820
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1821 * update-autoloads.sh: Don't attempt to eval `make-special' stuffs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1822 anymore. They are no longer used.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1823 * update-custom.sh: Always check in lisp/.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1824
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1825 1998-03-18 Jan Vroonhof <vroonhof@math.ethz.ch>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1826
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1827 * gnuclient.c (main): Do not copy string unnecessary in (too)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1828 small buffers.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1829
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1830 1998-03-02 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1831
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1832 * update-elc.sh: Change all -q -no-site-file to -vanilla
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1833
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1834 1998-02-27 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1835
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1836 * update-elc.sh (ignore_pattern): Add Installation.el, remove old
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1837 stuff from 20.4.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1838
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1839 Tue Feb 17 12:50:37 1998 Andy Piper <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1840
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1841 * lib-src/Makefile.in.in: make sure clean removes msw executables
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1842
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1843 1998-02-24 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1844
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1845 * gnuserv.h: Enable USE_TMPDIR.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1846
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1847 1998-02-23 Glynn Clements <glynn@sensei.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1848
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1849 * gnuclient.c (main): initialise variable `tmpdir' from the TMPDIR
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1850 environment variable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1851
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1852 * gnuserv.c (various): replace hardcoded references to /tmp with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1853 the value of `tmpdir'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1854 (main): initialise variable `tmpdir' from the TMPDIR
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1855 environment variable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1856
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1857 * gnuserv.h: include (commented-out) definition of USE_TMPDIR.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1858 Add `extern char *tmpdir'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1859
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1860 * gnuslib.c (various): replace hardcoded references to /tmp with
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1861 the value of `tmpdir'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1862
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1863 1998-02-15 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1864
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1865 * getopt.c (_getopt_internal): Add braces for clarity.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1866
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1867 1998-01-13 Martin Buchholz <martin@xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1868
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1869 * lib-src/add-little-package.sh:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1870 * lib-src/add-big-package.sh:
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1871 Use proper paranoid quoting for sh variables.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1872 -batch implies -q.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1873
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1874 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1875
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1876 * gnuserv.h: only set UNIX_DOMAIN_SOCKETS if HAVE_SYS_UN_H is
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1877 set.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1878
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1879 * gnuserv.c: tidy up so that it builds when we don't have
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1880 UNIX_DOMAIN_SOCKETS.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1881
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1882 1998-01-07 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1883
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1884 * update-elc.sh (ignore_pattern): Replace -vanilla with `-q
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1885 -no-site-file'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1886 * update-autoloads.sh (dirs): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1887 * update-custom.sh (dirs): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1888
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1889 1997-12-18 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1890
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1891 * update-elc.sh (mule_p): Remove skk's special treatment.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1892
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1893 1997-12-09 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1894
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1895 * update-elc.sh (ignore_pattern): Correct paths of files that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1896 should not be bytecompiled, and remove dead files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1897
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1898 1997-12-02 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1899
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1900 * update-elc.sh (mule_p): Update for addition of SKK.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1901
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1902 * update-autoloads.sh (mule_p): Update ignore_dirs for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1903 lisp/language and lisp/skk.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1904 * update-custom.sh (mule_p): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1905
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1906 1997-11-29 Jeff Miller <jmiller@smart.net>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1907
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1908 * Makefile.in.in: Changed path to blessmail.el for blessmail target
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1909 to match new lisp directory layout.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1910
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1911 1997-11-27 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1912
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1913 * update-elc.sh: Obliterate usage of make_special, since nothing
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1914 requires it any more.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1915
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1916 1997-11-23 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1917
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1918 * update-elc.sh (BYTECOMP): cleantree.el has been moved.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1919
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1920 1997-11-18 Colin Rafferty <craffert@ml.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1921
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1922 * update-elc.sh (prune_vc): Made it ignore any directory that
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1923 starts with a period.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1924
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1925 1997-11-16 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1926
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1927 * gnuserv.c (main): make return type int.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1928 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1929
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1930 * fakemail.c (main): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1931
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1932 1997-11-13 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1933
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1934 * pop.c: Add includes from movemail.c so standard functions get
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1935 declared.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1936 (pop_retrieve): Return NULL if falling off the end of the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1937 function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1938
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1939 * movemail.c: Hide declarations of popmail(), mbx_write(),
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1940 mbc_delimit_begin(), and mbx_delimit_end() behind MAIL_USE_POP
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1941 guard.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1942 (pop_retr): Change 4th parameter to void *.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1943
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1944 1997-11-02 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1945
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1946 * update-custom.sh (dirs): Remove packaged directories.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1947
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1948 * update-elc.sh (ignore_pattern): Hyperbole, oobr and ilisp are
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1949 now packaged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1950
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1951 * update-autoloads.sh (mule_p): Hyperbole and oobr are now
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1952 packaged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1953
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1954 1997-10-30 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1955
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1956 * update-autoloads.sh (mule_p): EFS has been packaged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1957 * update-elc.sh (make_special_commands): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1958
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1959 * update-elc.sh: VM has been packaged.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1960
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1961 * update-autoloads.sh: Add directory language
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1962
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1963 1997-10-23 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1964
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1965 * update-elc.sh (BYTECOMP): Specify -vanilla
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1966 * update-autoloads.sh (dirs): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1967 * update-custom.sh (dirs): Ditto.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1968
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1969 1997-10-10 Martin Buchholz <mrb@eng.sun.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1970
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1971 * config.values.in: Run config.values.sh
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1972
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1973 1997-10-09 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1974
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1975 * Makefile.in.in (PKG_SCRIPTS): Add new package manipulation
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1976 scripts.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1977
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1978 * add-little-package.sh: New file. Support script to install
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1979 single file packages.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1980
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1981 * Makefile.in.in (distclean): Reverse change -- do not remove
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1982 config.values.in.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1983 Suggested by: Martin Buchholz <mrb@Eng.Sun.COM>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1984
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1985 1997-10-06 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1986
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1987 * Makefile.in.in (distclean): Remove config.values.in.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1988 From Martin Buchholz <mrb@Eng.Sun.COM>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1989
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1990 1997-10-04 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1991
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1992 * update-autoloads.sh (mule_p): W3 is a package now.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1993
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1994 1997-09-30 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1995
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1996 * update-elc.sh (ignore_pattern): Don't attempt bytecompiling
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1997 lisp/leim/quail/tibetan.el and lisp/language/tibet-util.el.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1998
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1999 1997-09-29 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2000
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2001 * update-elc.sh (mule_p): Ignore mu/latex-math-symbol.el if we're
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2002 not building with Mule.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2003
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2004 1997-09-27 Hrvoje Niksic <hniksic@srce.hr>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2005
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2006 * update-custom.sh: New file.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2007
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2008 * update-autoloads.sh: Minor fixes.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2009
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2010 1997-08-11 Jeff Miller <jmiller@smart.net>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2011 * Makefile.in.in: Added a test for system-type equal to linux to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2012 lisp/paths.el. Mail spool dir should be /var/spool/mail.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2013
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2014 * cleaned up lib-src/Makefile.in.in regarding targets blessmail and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2015 maybe-blessmail. Added target do-blessmail. Makefile.in.in was also
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2016 missing a variable called "configuration. This messed up archilibdir.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2017
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2018 * Added highlighting to text suggesting to do "make gzip-el" in top
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2019 level Makefile.in. Added code to do make maybe-blessmail after a
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2020 make install is done.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2021
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2022 1997-08-07 Jan Vroonhof <vroonhof@math.ethz.ch>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2023
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2024 * gnuclient.c (main): Made help string correspond to options.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2025
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2026 1997-08-01 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2027
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2028 * Makefile.in.in (distclean): Remove config.values here only.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2029
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2030 1997-07-27 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2031
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2032 * Makefile.in.in (UTILITIES): Add config.values so it can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2033 cleared away by `make distclean'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2034
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2035 1997-07-21 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2036
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2037 * update-elc.sh (make_special_commands): Remove processing for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2038 Gnus and AUCTeX.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2039
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2040 1997-07-19 SL Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2041
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2042 * update-elc.sh (mule_p): Do not attempt to bytecompile
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2043 char-table.el and chartblxmas.el.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2044
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2045 1997-07-08 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2046
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2047 * update-elc.sh (cc-mode): Don't give cc-mode special treatment.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2048
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2049 * update-autoloads.sh (cc-mode): Don't give cc-mode special
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2050 treatment.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2051
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2052 * rcs2log: Synch with Emacs/Mule zeta.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2053
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2054 1997-07-03 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2055
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2056 * update-elc.sh (make_special_commands): Fix building of ilisp so
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2057 custom-load.elc gets built.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2058
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2059 1997-06-27 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2060
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2061 * update-autoloads.sh: Major rework. Avoid looking at MULE
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2062 directories if not running XEmacs/Mule.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2063 - Look into all Mule directories for building autoloads.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2064
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2065 * update-elc.sh (make_special_commands): Fix handling of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2066 bytecompilation of AUCTeX to avoid looking at tex-jp.el if not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2067 running MULE.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2068
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2069 1997-06-24 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2070
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2071 * gnuattach: Needed executable bit set.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2072 Suggested by Kyle Jones <kyle_jones@wonderworks.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2073
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2074 * update-elc.sh (ignore_pattern): lisp/language/ethiopic byte
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2075 compiles now.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2076
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2077 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2078
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2079 * update-autoloads.sh: Search lisp/mule/.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2080
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2081 1997-06-20 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2082
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2083 * gnuattach: Readd as warning script.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2084
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2085 * Makefile.in.in (INSTALLABLE_SCRIPTS): Readd Gnuattach.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2086 From Hrvoje Niksic <hniksic@srce.hr>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2087
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2088 1997-06-13 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2089
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2090 * update-elc.sh (mule_p): Ignore lisp/language when building
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2091 non-Mule.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2092 (ignore_pattern): Ignore Languages we don't support yet.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2093
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2094 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2095
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2096 * update-elc.sh (ignore_dirs): Handle ported Quail (LEIM).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2097
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2098 Tue May 20 23:22:00 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2099
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2100 * update-autoloads.sh (dirs): Remove obsolete directory lisp/vms
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2101 from exclusion list (it doesn't exist any more). Remove
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2102 lisp/eterm from exclusion list of directories searched for
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2103 autoloads.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2104
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2105 Thu May 1 15:26:20 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2106
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2107 * update-elc.sh (mule_p): Test for mule bombs with change in format
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2108 of new output of featurep.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2109
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2110 Fri Apr 25 09:12:04 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2111
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2112 * pstogif: Use Martin Buchholz magic to automagically find perl
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2113 interpreter.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2114
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2115 Tue Apr 8 03:08:22 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2116
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2117 * Makefile.in.in: C Comment out Make comments. No snide comments
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2118 from me, no sir.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2119
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2120 Tue Apr 1 12:26:53 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2121
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2122 * Makefile.in.in: Added stuff for updated movemail.c.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2123
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2124 Sat Mar 29 16:57:01 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2125
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2126 * send-pr (GNATS_ADDR): Use xemacs.org as submission address.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2127 (DATADIR): Allow for DATADIR to be passed in as an environment
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2128 variable.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2129
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2130 Sun Mar 23 15:57:19 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2131
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2132 * update-elc.sh (make_special_commands): Use target of x20 for efs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2133
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2134 Wed Mar 19 10:38:04 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2135
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2136 * Makefile.in.in (SCRIPTS): Link gzip-el.sh in --srcdir
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2137 configuration.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2138
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2139 Tue Mar 18 17:49:14 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2140
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2141 * update-elc.sh (EMACS): Removed $XEMACS backdoor. We will make
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2142 the .elcs *only* with the freshly built XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2143
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2144 Mon Mar 17 10:12:03 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2145
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2146 * Makefile.in.in (INSTALLABLE_SCRIPTS): Add install-sid and
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2147 send-pr (from GNATS).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2148
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2149 * update-elc.sh (prune_vc): Use full path to cleantree.el.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2150 (NUMTOCOMPILE): Remove useless rule to recompile out-of-date .elcs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2151
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2152 Sun Mar 16 21:13:29 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2153
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2154 * install-sid: New file (GNATS integration).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2155
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2156 * send-pr: New file (GNATS integration).
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2157
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2158 Fri Mar 14 17:59:57 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2159
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2160 * update-elc.sh (ignore_dirs): Build VM with `make autoload'.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2161
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2162 Wed Mar 5 18:07:57 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2163
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2164 * gzip-el.sh: New file. Courtesy of Jeff Miller and Hrvoje Niksic.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2165
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2166 * update-elc.sh (els): Remove out of date .elcs before building.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2167
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2168 Tue Mar 4 18:45:10 1997 Martin Buchholz <mrb@eng.sun.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2169
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2170 * update-elc.sh (els): No more special treatment for vm.elc.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2171
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2172 Wed Feb 26 18:17:59 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2173
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2174 * make-docfile.c (next_extra_elc): New function.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2175 (main): Use it. Implementation of `-i' parameter to pass a list
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2176 of site-loaded lisp files.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2177
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2178 Wed Feb 19 18:24:49 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2179
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2180 * update-elc.sh: Added lisp/auctex.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2181
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2182 Thu Feb 13 11:32:47 1997 Steven L Baur <steve@altair.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2183
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2184 * Makefile.in.in: Install pstogif script.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2185
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2186 Sun Dec 29 17:16:45 1996 Martin Buchholz <mrb@eng.sun.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2187
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2188 * update-elc.sh (make_special_commands): Make ilisp be a little
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2189 smarter about recompilation.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2190
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2191 Wed Dec 18 20:22:55 1996 Martin Buchholz <mrb@eng.sun.com>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2192
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2193 * mmencode.c: Don't declare index().
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2194
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2195 * Makefile.in.in: Documentation changes.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2196
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2197 * update-elc.sh: Portability Fix.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2198
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2199 Thu Dec 5 15:41:53 1996 Martin Buchholz <mrb@Eng.Sun.COM>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2200
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2201 * update-elc.sh: Corrections to protect against too smart /bin/sh'es.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2202