# HG changeset patch # User Stefan Monnier # Date 1036330576 0 # Node ID 3e781c129fd06ac20eea246de51cd616fc82a866 # Parent 6c61b0cf0b3c938ed1a9f8cc1cf442e41db92cde *** empty log message *** diff -r 6c61b0cf0b3c -r 3e781c129fd0 lisp/ChangeLog --- a/lisp/ChangeLog Sun Nov 03 13:35:46 2002 +0000 +++ b/lisp/ChangeLog Sun Nov 03 13:36:16 2002 +0000 @@ -1,3 +1,25 @@ +2002-11-03 Stefan Monnier + + * emacs-lisp/autoload.el (generate-file-autoloads) + (update-file-autoloads): Strip .gz and other such extensions. + (update-autoloads-from-directories): Also consider compressed files. + + * info.el (Info-streamline-headings): New var. + (Info-dir-remove-duplicates): New fun. + (Info-insert-dir): Use it. Simplify the code with push,mapc,dolist. + (Info-select-node): Simplify handling of Info-header-line. + (Info-forward-node): Undo 2000/12/15 since we don't narrow any more. + (Info-mode): Set header-line-format once and for all. + (Info-fontify-node): Accept bogus first line with `File:' missing. + Only make first line invisible if Info-use-header-line. + Don't use `intangible': it's evil. Use inhibit-read-only. + (Info-follow-reference, Info-next-reference, Info-prev-reference) + (Info-try-follow-nearest-node): Don't bind inhibit-point-motion-hooks + since we don't use intangible any more. + + * image.el (insert-image): Don't make intangible since + adjust_point_for_property should be sufficient by default. + 2002-11-02 Stefan Monnier * textmodes/fill.el (fill-paragraph-handle-comment): New var. diff -r 6c61b0cf0b3c -r 3e781c129fd0 src/ChangeLog --- a/src/ChangeLog Sun Nov 03 13:35:46 2002 +0000 +++ b/src/ChangeLog Sun Nov 03 13:36:16 2002 +0000 @@ -1,5 +1,9 @@ 2002-11-03 Stefan Monnier + * xdisp.c (single_display_prop_intangible_p): Strings are intangible. + + * editfns.c (get_pos_property): Don't hardcode Qfield. + * keyboard.c (adjust_point_for_property): Handle `display' prop on overlays. Also handle `invisible' prop.