aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-10-12 01:38:00 +0000
committerStefan Monnier2001-10-12 01:38:00 +0000
commit2168e04d47d101fff29b293a64593ad5a5a9a9ea (patch)
tree0cbb54d4ee2821b3aa3d819dfcba2554a97d31d9
parentbb0de0842091e634d493c984fbd553cbad407c7f (diff)
downloademacs-2168e04d47d101fff29b293a64593ad5a5a9a9ea.tar.gz
emacs-2168e04d47d101fff29b293a64593ad5a5a9a9ea.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog39
-rw-r--r--src/ChangeLog13
2 files changed, 46 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7d992d979f1..73a2b6a8a50 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,32 @@
12001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2
3 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
4
5 * help-mode.el (help-buffer): New function.
6 Returns the buffer-name to use for help output.
7 Change all the code to use it instead of hard-coding *Help*.
8 (help-mode-map): Put back the mouse-2 binding.
9 (help-xref-stack): Change the format and make buffer-local.
10 (help-xref-stack-item): Make buffer-local.
11 (help-setup-xref): Do the `push' here rather than in help-do-xref.
12 (help-xref-interned): Display the face doc as well.
13 (help-follow-mouse): Re-introduce.
14 (help-xref-go-back): Adapt to the new use of help-xref-stack.
15 (help-do-xref): Don't `push' any more.
16 (help-follow): Also follow face names.
17
18 * help-funs.el (describe-function-1): Remove unused `parens' arg.
19 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
20 Autoload and cleanup.
21 (describe-function): Call help-setup-xref.
22 (describe-variable): Call help-setup-xref earlier.
23
24 * help.el (describe-bindings-internal): New fun moved from keymap.c.
25 (view-lossage): Call help-setup-xref correctly and earlier.
26 (describe-bindings): Call help-setup-xref earlier.
27 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
28 (describe-mode): Don't autoload. Call help-setup-xref earlier.
29
12001-10-11 Gerd Moellmann <gerd@gnu.org> 302001-10-11 Gerd Moellmann <gerd@gnu.org>
2 31
3 * master.el (master-mode): Use define-minor-mode instead of 32 * master.el (master-mode): Use define-minor-mode instead of
@@ -15,13 +44,13 @@
15 44
162001-10-11 Gerd Moellmann <gerd@gnu.org> 452001-10-11 Gerd Moellmann <gerd@gnu.org>
17 46
18 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p): New 47 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
19 function extracted from byte-compile-log-1. 48 New function extracted from byte-compile-log-1.
20 (byte-compile-log-1): Change output to be more in line with 49 (byte-compile-log-1): Change output to be more in line with
21 the output of other GNU tools. 50 the output of other GNU tools.
22 (byte-compile-warn): Emit `warning' instead of `**' for warnings. 51 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
23 (byte-compile-report-error): Downcase error message. Use 52 (byte-compile-report-error): Downcase error message.
24 `error' instead of `!!' for error messages. 53 Use `error' instead of `!!' for error messages.
25 (byte-compile-print-syms): Treat non-interactive case specially. 54 (byte-compile-print-syms): Treat non-interactive case specially.
26 (displaying-byte-compile-warnings): Use backquote. 55 (displaying-byte-compile-warnings): Use backquote.
27 (byte-compile-from-buffer): Bind byte-compile-last-line. 56 (byte-compile-from-buffer): Bind byte-compile-last-line.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2be0b9f26ed..1f626d37db9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2
3 * syntax.h (struct gl_state_s): Change the meaning of b_property.
4 Remove left_ok and right_ok.
5 (UPDATE_SYNTAX_TABLE_BACKWARD, UPDATE_SYNTAX_TABLE)
6 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT): Update to the
7 new meaning of b_property.
8
9 * syntax.c (update_syntax_table): Simplify.
10 (Fforward_comment): Don't skip quoted chars when going backward.
11
12001-10-11 Gerd Moellmann <gerd@gnu.org> 122001-10-11 Gerd Moellmann <gerd@gnu.org>
2 13
3 * editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float. 14 * editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float.
@@ -6,7 +17,7 @@
6 * data.c (Fstring_to_number): Use make_fixnum_or_float. 17 * data.c (Fstring_to_number): Use make_fixnum_or_float.
7 18
8 * lisp.h (make_fixnum_or_float): New macro. 19 * lisp.h (make_fixnum_or_float): New macro.
9 20
10 * lisp.h (circular_list_error): Add prototype. 21 * lisp.h (circular_list_error): Add prototype.
11 22
12 * data.c (Qcircular_list): New variable. 23 * data.c (Qcircular_list): New variable.