aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-10-30 19:48:51 +0000
committerDave Love2002-10-30 19:48:51 +0000
commit2baf1bfa5498425f0df6e899e554e8e91427969e (patch)
tree820a6a9ae13a682988fac1dd90adfb1940bfcdc3
parent3180897ccc35c27b2718fe89872e89d36af6d1a7 (diff)
downloademacs-2baf1bfa5498425f0df6e899e554e8e91427969e.tar.gz
emacs-2baf1bfa5498425f0df6e899e554e8e91427969e.zip
*** empty log message ***
-rw-r--r--ChangeLog16
-rw-r--r--lisp/ChangeLog12
-rw-r--r--src/ChangeLog40
3 files changed, 62 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 95454e078c0..bbdf8a59e7a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
12002-10-30 Dave Love <fx@gnu.org>
2
3 * configure.in: Require autoconf 2.53. Test for pty.h,
4 sys/mman.h, sys/param.h, mremap, memmove.
5 (AH_BOTTOM): Maybe include strings.h. Add local variables for
6 mode.
7 (AC_PROG_YACC): Deleted.
8 (size_t): Use AC_CHECK_TYPES.
9 (AH_TOP): Up-date copyright.
10
12002-10-01 Juanma Barranquero <lektu@terra.es> 112002-10-01 Juanma Barranquero <lektu@terra.es>
2 12
3 * update-subdirs: Add "no-byte-compile: t" to subdirs.el. 13 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
@@ -518,15 +528,9 @@
518 * mkinstalldirs (errstatus): Chmod a+rx directories we create. 528 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
519 529
520 * Makefile.in (uninstall): Ignore exit code of `rm'. 530 * Makefile.in (uninstall): Ignore exit code of `rm'.
521<<<<<<< ChangeLog
522
523 * Makefile.in (uninstall): Remove more info files.
524 Remove ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
525=======
526 531
527 * Makefile.in (uninstall): Remove more info files. Remove 532 * Makefile.in (uninstall): Remove more info files. Remove
528 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*. 533 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
529>>>>>>> 1.214
530 534
5312001-01-31 Gerd Moellmann <gerd@gnu.org> 5352001-01-31 Gerd Moellmann <gerd@gnu.org>
532 536
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cdbf78e5eaa..528e61d3787 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,15 @@
12002-10-30 Dave Love <fx@gnu.org>
2
3 * textmodes/po.el (po-content-type-charset-alist): Delete most
4 entries.
5 (po-find-charset): Doc fix. Remove interactive spec.
6 (po): Provide.
7 (po-find-file-coding-system-guts): Re-written to use
8 coding-system-alist, and code-pages, not codepage stuff.
9
10 * term/x-win.el: Remove some ancient compatibility code. Populate
11 x-keysym-table.
12
12002-10-30 Andreas Schwab <schwab@suse.de> 132002-10-30 Andreas Schwab <schwab@suse.de>
2 14
3 * subr.el (replace-regexp-in-string): Doc fix. 15 * subr.el (replace-regexp-in-string): Doc fix.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2bd8a75ffaf..edb3b6ac1c6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,43 @@
12002-10-30 Dave Love <fx@gnu.org>
2
3 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
4 [HAVE_PTY_H]; Include pty.h.
5
6 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
7
8 * xterm.c (Qeql): Declare.
9 (Vx_keysym_table): New.
10 (syms_of_xterm): Initialize it.
11 (XTread_socket): Use it. Deal with ASCII keysyms.
12 (XSetIMValues) [HAVE_X11R6]: Prototype.
13
14 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
15 (lispy_kana_keys): Comment out.
16 (make_lispy_event) [XK_kana_A]: Comment out.
17 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>: Fix
18 sprintf call.
19
20 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
21 regexp.h change).
22 (TERMINFO, LIBS_TERMCAP): Define.
23
24 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
25 (bcmp): Define conditional on HAVE_BCMP.
26 (NO_SIOCTL_H): Don't define.
27 (TIOCSIGSEND): Don't make conditional on IRIX6.
28
29 * s/sol2-5.h: Don't include strings.h.
30 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
31
32 * s/irix6-0.h (IRIX6): Don't define.
33 (bcopy, bcmp, bzero): Don't undef.
34
35 * s/irix6-5.h: Don't include strings.h.
36 (IRIX6): Don't define.
37 (bcopy, bcmp, bzero): Don't undef.
38
39 * syntax.c (Fforward_comment): Doc fix.
40
12002-10-29 Kim F. Storm <storm@cua.dk> 412002-10-29 Kim F. Storm <storm@cua.dk>
2 42
3 * process.c (Fsignal_process): Allow PROCESS to be specified by 43 * process.c (Fsignal_process): Allow PROCESS to be specified by