aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-11-03 13:36:16 +0000
committerStefan Monnier2002-11-03 13:36:16 +0000
commit266b4e3ae4a4d2b570d92b59d640038a925c91d5 (patch)
tree40cfafc2c2393c00a86b572774b196e1a4f6bf48
parent959bc0443c3144c5ddb019bd98e89f0dd85bcd87 (diff)
downloademacs-266b4e3ae4a4d2b570d92b59d640038a925c91d5.tar.gz
emacs-266b4e3ae4a4d2b570d92b59d640038a925c91d5.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog22
-rw-r--r--src/ChangeLog4
2 files changed, 26 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b7bf68ea76..363d0b3d18c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,25 @@
12002-11-03 Stefan Monnier <monnier@cs.yale.edu>
2
3 * emacs-lisp/autoload.el (generate-file-autoloads)
4 (update-file-autoloads): Strip .gz and other such extensions.
5 (update-autoloads-from-directories): Also consider compressed files.
6
7 * info.el (Info-streamline-headings): New var.
8 (Info-dir-remove-duplicates): New fun.
9 (Info-insert-dir): Use it. Simplify the code with push,mapc,dolist.
10 (Info-select-node): Simplify handling of Info-header-line.
11 (Info-forward-node): Undo 2000/12/15 since we don't narrow any more.
12 (Info-mode): Set header-line-format once and for all.
13 (Info-fontify-node): Accept bogus first line with `File:' missing.
14 Only make first line invisible if Info-use-header-line.
15 Don't use `intangible': it's evil. Use inhibit-read-only.
16 (Info-follow-reference, Info-next-reference, Info-prev-reference)
17 (Info-try-follow-nearest-node): Don't bind inhibit-point-motion-hooks
18 since we don't use intangible any more.
19
20 * image.el (insert-image): Don't make intangible since
21 adjust_point_for_property should be sufficient by default.
22
12002-11-02 Stefan Monnier <monnier@cs.yale.edu> 232002-11-02 Stefan Monnier <monnier@cs.yale.edu>
2 24
3 * textmodes/fill.el (fill-paragraph-handle-comment): New var. 25 * textmodes/fill.el (fill-paragraph-handle-comment): New var.
diff --git a/src/ChangeLog b/src/ChangeLog
index 7f5015125d6..f3e2f01f6d1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12002-11-03 Stefan Monnier <monnier@cs.yale.edu> 12002-11-03 Stefan Monnier <monnier@cs.yale.edu>
2 2
3 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
4
5 * editfns.c (get_pos_property): Don't hardcode Qfield.
6
3 * keyboard.c (adjust_point_for_property): Handle `display' prop on 7 * keyboard.c (adjust_point_for_property): Handle `display' prop on
4 overlays. Also handle `invisible' prop. 8 overlays. Also handle `invisible' prop.
5 9