# HG changeset patch # User Gerd Moellmann # Date 990015533 0 # Node ID c65dae84635252af80a50c053857f5f661dcc499 # Parent 3384f5e9fc902bf57499142725cf3a2a9ad37787 *** empty log message *** diff -r 3384f5e9fc90 -r c65dae846352 lisp/ChangeLog --- a/lisp/ChangeLog Wed May 16 12:18:18 2001 +0000 +++ b/lisp/ChangeLog Wed May 16 12:18:53 2001 +0000 @@ -1,5 +1,9 @@ 2001-05-16 Gerd Moellmann + * textmodes/outline.el (outline-font-lock-level): Remove the + condition-case, test what outline-level returns instead, to ease + debugging. + * international/mule.el (auto-coding-regexp-alist): New user-option. (auto-coding-from-file-contents): New function. (set-auto-coding): Use it to determine a coding system. diff -r 3384f5e9fc90 -r c65dae846352 src/ChangeLog --- a/src/ChangeLog Wed May 16 12:18:18 2001 +0000 +++ b/src/ChangeLog Wed May 16 12:18:53 2001 +0000 @@ -1,5 +1,10 @@ 2001-05-16 Gerd Moellmann + * buffer.c (copy_overlays): New function. + (clone_per_buffer_values): Use it. + + * buffer.h (OVERLAY_PLIST): New macro. + * keymap.c (Fsingle_key_description): Replace a build_string with a make_multibyte_string. From Kenichi Handa .