aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-11-17 01:25:10 +0000
committerStefan Monnier2001-11-17 01:25:10 +0000
commitb6270150cfb2e9c328b0db10446feb017ae4b993 (patch)
treecd4ccec38944511512d83a37db90b818f70d8239
parent236a12f2d97e7ef5b66764f2d9fb3926d2c5304a (diff)
downloademacs-b6270150cfb2e9c328b0db10446feb017ae4b993.tar.gz
emacs-b6270150cfb2e9c328b0db10446feb017ae4b993.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog45
-rw-r--r--src/ChangeLog10
2 files changed, 53 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 64b6da0ba24..7d51b4edf74 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,48 @@
12001-11-16 Stefan Monnier <monnier@cs.yale.edu>
2
3 * bindings.el (mode-line-mode-name): Only put the help-echo property
4 if the local-map property was put as well.
5 (global-map): Bind switch-frame, delete-frame, iconify-frame
6 and make-frame-visible events.
7
8 * emacs-lisp/elp.el (elp-not-profilable): New var.
9 (elp-not-profilable-p): New function.
10 (elp-instrument-function): Use it. Use backquotes and push.
11
12 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
13 (byte-stack+-info, byte-compile-last-warned-form)
14 (byte-compile-last-logged-file): Don't defconst a variable.
15 (no-byte-compile): Declare.
16 (byte-compile-file): Don't boundp-check no-byte-compile any more.
17 (byte-compile-defvar): Leave defconst as is.
18
19 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
20 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
21 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
22 (edebug-best-error): Don't defconst a variable.
23 (edebug-read-syntax-table): Use a char-table.
24 (edebug-lemacs-specific): Remove.
25 Toplevel: Eliminate check for Lucid Emacs.
26
27 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
28
29 * rect.el (move-to-column-force): Mark obsolete.
30 (operate-on-rectangle, delete-extract-rectangle-line)
31 (insert-rectangle, delete-whitespace-rectangle-line)
32 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
33 (string-rectangle-history): New var.
34 (string-rectangle, string-insert-rectangle): Use it.
35 (delete-rectangle-line): Fix pos/column mixup and simplify.
36
37 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
38 (normal-top-level, command-line, command-line-1): Simplify.
39
40 * tar-mode.el (tar-mode): Use define-derived-mode.
41
42 * view.el (view-mode-enable): Don't use make-local-hook.
43
44 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
45
12001-11-16 Richard M. Stallman <rms@gnu.org> 462001-11-16 Richard M. Stallman <rms@gnu.org>
2 47
3 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word 48 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
diff --git a/src/ChangeLog b/src/ChangeLog
index a65f8f1037e..484d4994d7a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12001-11-16 Stefan Monnier <monnier@cs.yale.edu>
2
3 * fileio.c (build_annotations): Split off the tail.
4 (build_annotations_2): New fun. Extracted from build_annotations.
5 (Fwrite_region): Split the call to build_annotations into two
6 calls to build_annotations and build_annotations_2.
7
12001-11-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 82001-11-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 9
3 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call 10 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
@@ -5,8 +12,7 @@
5 12
6 * xterm.h (x_update_cursor): Remove duplicated prototype. 13 * xterm.h (x_update_cursor): Remove duplicated prototype.
7 14
8 * keyboard.h (clear_waiting_for_input): Remove duplicated 15 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
9 prototype.
10 16
11 * xterm.c (waiting_for_input): Remove unnecessary prototype. 17 * xterm.c (waiting_for_input): Remove unnecessary prototype.
12 18