comparison lisp/ChangeLog @ 68954:064ca4dca24c

*** empty log message ***
author Eli Zaretskii <eliz@gnu.org>
date Fri, 17 Feb 2006 10:53:13 +0000
parents 608f15136cdb
children 6c2ed3d7aa1a
comparison
equal deleted inserted replaced
68953:0ddd5b380ffb 68954:064ca4dca24c
1 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
2
3 * allout.el: Use allout invisible-text overlays instead of
4 selective display for concealed text. Also, lots of general
5 cleanup, and improved compatibility code.
6
7 (allout-version) Incremented, corrected, revised, and refined
8 module commentary.
9
10 (provide 'allout): Moved to the bottom, added a require of overlay.
11
12 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
13 `except-current'.
14 (allout-write-file-hook-handler): Minimize delay.
15 (count-trailing-whitespace-region): New function so
16 auto-encryption of current topic can resituate cursor exactly.
17 PGP/GPG encryption trims trailing whitespace from lines, which
18 must be accounted for across encryption then decryption.
19
20 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
21 just plain "\C-c", to avoid intruding on user's keybinding space.
22
23 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
24 parameter, so user request to provide a new password is done.
25
26 (allout-outside-normal-auto-fill-function, allout-auto-fill):
27 Refined mechanism for auto-filling behavior while in allout mode.
28
29 (allout-mode): Explicitly specify the mode map in the docstring.
30 Clarify provision for various write-file hook var names.
31 Adjusted for invisible-text overlays instead of selective-display.
32
33 (allout-depth): Really return 0 if not within any topic. This
34 rectifies `allout-beginning-of-level' and sequence numbering
35 errors that occur when cutting and pasting numbered topics.
36 Changed from a in-line subst to a regular function, as well.
37
38 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
39
40 (allout-end-of-subtree, allout-end-of-subtree)
41 (allout-end-of-entry, allout-end-of-current-heading)
42 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
43 (allout-show-children, allout-show-to-offshoot)
44 (allout-hide-current-entry, allout-show-current-entry): Rectified
45 handling of trailing blank lines between items.
46
47 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
48 (allout-current-depth, allout-unprotected, allout-hidden-p)
49 (allout-on-current-heading-p, allout-listify-exposed)
50 (allout-chart-subtree, allout-goto-prefix)
51 (allout-back-to-current-heading, allout-get-body-text)
52 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
53 (allout-hide-region-body, allout-toggle-subtree-encryption)
54 (allout-encrypt-string, allout-encrypted-key-info)
55 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
56 (allout-file-vars-section-data): Adjusted for use with
57 invisible-text overlays instead of selective-display.
58
59 (allout-kill-line, allout-kill-topic, allout-yank-processing):
60 Reworked for use with invisible text overlays.
61
62 (allout-current-topic-collapsed-p): New function.
63
64 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
65 to know when to close the containing topic.
66
67 (allout-pre-command-business, allout-post-command-business):
68 Simplify undo-batching and dynamic isearch exposure.
69
70 (allout-set-overlay-category): New for invisible-text overlays.
71 Sets properties of allout-overlay-category, used by
72 allout-flag-region to set invisible-text overlay properties.
73 (allout-get-invisibility-overlay): Get the first qualifying
74 invisibility overlay, so we can find the extent of it.
75 (allout-back-to-visible-text): Get to just before the beginnining
76 of the current invisibility overlay, if any.
77
78 (allout-overlay-insert-in-front-handler)
79 (allout-overlay-interior-modification-handler)
80 (allout-before-change-handler, allout-isearch-end-handler): New
81 functions to handle extraordinary actions affecting concealed
82 text.
83
84 (allout-flag-region): Use overlays instead of selective-display
85 for invisible text - by inheritence from the properties of
86 allout-overlay-category in mainline emacs, and applied
87 property-by-property in xemacs, some recent versions of which
88 don't inherit the properties from the category. Provisions to
89 respond to concealed-text edits simplified drastically.
90
91 (allout-isearch-rectification, allout-isearch-was-font-lock)
92 (allout-isearch-expose, allout-enwrap-isearch)
93 (allout-isearch-abort, allout-pre-was-isearching)
94 (allout-isearch-prior-pos, allout-isearch-did-quit)
95 (allout-isearch-dynamic-expose)
96 (allout-hide-current-entry-completely): Functions deleted.
97
98 (allout-undo-aggregation): Explicit undo aggregation no longer
99 necessary due to transition away from selective-display.
100
101 (set-allout-regexp, allout-up-current-level)
102 (allout-next-visible-heading, allout-forward-current-level)
103 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
104 (allout-kill-line, allout-yank-processing, allout-show-children)
105 (allout-expose-topic, allout-old-expose-topic)
106 (allout-listify-exposed, allout-insert-latex-header)
107 (allout-toggle-subtree-encryption, allout-encrypt-string)
108 (remove-from-invisibility-spec, allout-hide-current-subtree):
109 Ditched unused variables.
110
1 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es> 111 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
2 112
3 * textmodes/ispell.el (ispell-change-dictionary): Call 113 * textmodes/ispell.el (ispell-change-dictionary): Call
4 ispell-buffer-local-dict instead of 114 ispell-buffer-local-dict instead of
5 ispell-accept-buffer-local-defs. 115 ispell-accept-buffer-local-defs.