diff options
| author | Richard M. Stallman | 2002-12-04 11:57:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-12-04 11:57:49 +0000 |
| commit | c5992177028419221efa87505dddba4af07a5ca3 (patch) | |
| tree | fe7ab4ce01c83f51b7b90abb300599c9292b0b12 | |
| parent | d4c2acb9d8ef8b63c1d28c1ef1ce31a701f43ab3 (diff) | |
| download | emacs-c5992177028419221efa87505dddba4af07a5ca3.tar.gz emacs-c5992177028419221efa87505dddba4af07a5ca3.zip | |
*** empty log message ***
| -rw-r--r-- | lib-src/ChangeLog | 27 | ||||
| -rw-r--r-- | lisp/ChangeLog | 17 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
3 files changed, 52 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 8d9447e021e..b3df68fdaef 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,30 @@ | |||
| 1 | 2002-12-04 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * Update getopt from gnulib version; changes described below. | ||
| 4 | |||
| 5 | * getopt1.c: Conditionally find getopt.h. | ||
| 6 | [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def. | ||
| 7 | |||
| 8 | * getopt.c (const): Move outside !HAVE_CONFIG_H conditional. | ||
| 9 | (libintl.h): Include this if _LIBC. Otherwise include gettext.h. | ||
| 10 | (wchar.h): Include, maybe. | ||
| 11 | (attribute_hidden): Define if not defind. | ||
| 12 | (__getopt_initialized): Use attribute_hidden. | ||
| 13 | (__libc_argc, __libc_argv): Renamed from original_argc, etc. | ||
| 14 | (__getopt_nonoption_flags, nonoption_flags_max_len, nonoption_flags_len): | ||
| 15 | Conditional on USE_NONOPTION_FLAGS. | ||
| 16 | (SWAP_FLAGS): New definitions. | ||
| 17 | (exchange): Test USE_NONOPTION_FLAGS. | ||
| 18 | (_getopt_initialize): Test USE_NONOPTION_FLAGS. | ||
| 19 | (_getopt_internal): Error if argc < 1. New local var print_errors. | ||
| 20 | Improve test for ambiguous long option. | ||
| 21 | Add LIBIO support for error message output. | ||
| 22 | (NONOPTION_P): Test USE_NONOPTION_FLAGS. | ||
| 23 | |||
| 24 | * getopt.h: Maybe include ctype.h. | ||
| 25 | Treat __cplusplus like __STDC__. | ||
| 26 | (decls): Use __ in arg names. | ||
| 27 | |||
| 1 | 2002-12-02 Stephen Eglen <stephen@gnu.org> | 28 | 2002-12-02 Stephen Eglen <stephen@gnu.org> |
| 2 | 29 | ||
| 3 | * emacsclient.c (main): Tell user how to start server within Emacs | 30 | * emacsclient.c (main): Tell user how to start server within Emacs |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 684cf003e57..b5dc00abbef 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2002-12-04 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * gud.el (gud-menu-map): Delete CVS conflict markers. | ||
| 4 | |||
| 5 | * progmodes/cc-vars.el: Simply require wid-edit and custom | ||
| 6 | in eval-when-compile. | ||
| 7 | |||
| 8 | * progmodes/cc-menus.el: Don't require imenu. | ||
| 9 | |||
| 10 | * progmodes/cc-langs.el: Don't require cl. | ||
| 11 | (c-delete-duplicates): New function. Use instead of delete-duplicates. | ||
| 12 | |||
| 13 | * progmodes/cc-bytecomp.el (cc-bytecomp-obsolete-var): | ||
| 14 | Add an else-clause to the if to avoid confused compiler warning. | ||
| 15 | |||
| 16 | * tooltip.el (tooltip-gud-tips-p): Undo previous change. | ||
| 17 | |||
| 1 | 2002-12-03 Dave Love <fx@gnu.org> | 18 | 2002-12-03 Dave Love <fx@gnu.org> |
| 2 | 19 | ||
| 3 | * international/ucs-tables.el (ucs-unify-8859, ucs-unify-8859) | 20 | * international/ucs-tables.el (ucs-unify-8859, ucs-unify-8859) |
diff --git a/src/ChangeLog b/src/ChangeLog index f17ae3a40da..8967f6eb932 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2002-12-04 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H. | ||
| 4 | |||
| 5 | * fileio.c (fcntl.h): Test only HAVE_FCNTL_H. | ||
| 6 | |||
| 7 | * alloca.c: Don't use #error. | ||
| 8 | |||
| 1 | 2002-12-03 Dave Love <fx@gnu.org> | 9 | 2002-12-03 Dave Love <fx@gnu.org> |
| 2 | 10 | ||
| 3 | * buffer.c (Qucs_set_table_for_input): New. | 11 | * buffer.c (Qucs_set_table_for_input): New. |