aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-10-12 01:38:00 +0000
committerStefan Monnier <[email protected]>2001-10-12 01:38:00 +0000
commit2168e04d47d101fff29b293a64593ad5a5a9a9ea (patch)
tree0cbb54d4ee2821b3aa3d819dfcba2554a97d31d9
parentbb0de0842091e634d493c984fbd553cbad407c7f (diff)
*** 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 7d992d979f..73a2b6a8a5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,32 @@
+2001-10-11 Stefan Monnier <[email protected]>
+
+ * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
+
+ * help-mode.el (help-buffer): New function.
+ Returns the buffer-name to use for help output.
+ Change all the code to use it instead of hard-coding *Help*.
+ (help-mode-map): Put back the mouse-2 binding.
+ (help-xref-stack): Change the format and make buffer-local.
+ (help-xref-stack-item): Make buffer-local.
+ (help-setup-xref): Do the `push' here rather than in help-do-xref.
+ (help-xref-interned): Display the face doc as well.
+ (help-follow-mouse): Re-introduce.
+ (help-xref-go-back): Adapt to the new use of help-xref-stack.
+ (help-do-xref): Don't `push' any more.
+ (help-follow): Also follow face names.
+
+ * help-funs.el (describe-function-1): Remove unused `parens' arg.
+ Don't call help-setup-xref anymore and remove its `interactive-p' arg.
+ Autoload and cleanup.
+ (describe-function): Call help-setup-xref.
+ (describe-variable): Call help-setup-xref earlier.
+
+ * help.el (describe-bindings-internal): New fun moved from keymap.c.
+ (view-lossage): Call help-setup-xref correctly and earlier.
+ (describe-bindings): Call help-setup-xref earlier.
+ (describe-key): Call help-setup-xref. Fix call to describe-function-1.
+ (describe-mode): Don't autoload. Call help-setup-xref earlier.
+
2001-10-11 Gerd Moellmann <[email protected]>
* master.el (master-mode): Use define-minor-mode instead of
@@ -15,13 +44,13 @@
2001-10-11 Gerd Moellmann <[email protected]>
- * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p): New
- function extracted from byte-compile-log-1.
- (byte-compile-log-1): Change output to be more in line with
+ * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
+ New function extracted from byte-compile-log-1.
+ (byte-compile-log-1): Change output to be more in line with
the output of other GNU tools.
(byte-compile-warn): Emit `warning' instead of `**' for warnings.
- (byte-compile-report-error): Downcase error message. Use
- `error' instead of `!!' for error messages.
+ (byte-compile-report-error): Downcase error message.
+ Use `error' instead of `!!' for error messages.
(byte-compile-print-syms): Treat non-interactive case specially.
(displaying-byte-compile-warnings): Use backquote.
(byte-compile-from-buffer): Bind byte-compile-last-line.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2be0b9f26e..1f626d37db 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
+2001-10-11 Stefan Monnier <[email protected]>
+
+ * syntax.h (struct gl_state_s): Change the meaning of b_property.
+ Remove left_ok and right_ok.
+ (UPDATE_SYNTAX_TABLE_BACKWARD, UPDATE_SYNTAX_TABLE)
+ (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT): Update to the
+ new meaning of b_property.
+
+ * syntax.c (update_syntax_table): Simplify.
+ (Fforward_comment): Don't skip quoted chars when going backward.
+
2001-10-11 Gerd Moellmann <[email protected]>
* editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float.
@@ -6,7 +17,7 @@
* data.c (Fstring_to_number): Use make_fixnum_or_float.
* lisp.h (make_fixnum_or_float): New macro.
-
+
* lisp.h (circular_list_error): Add prototype.
* data.c (Qcircular_list): New variable.