1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

*** empty log message ***

This commit is contained in:
Stefan Monnier 2002-11-03 13:36:16 +00:00
parent 959bc0443c
commit 266b4e3ae4
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,25 @@
2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
* 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 <monnier@cs.yale.edu>
* textmodes/fill.el (fill-paragraph-handle-comment): New var.

View File

@ -1,5 +1,9 @@
2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
* 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.