aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-04-01 17:25:34 +0000
committerStefan Monnier2002-04-01 17:25:34 +0000
commit76200eb89f09eaa68a76fc87e81de0fd5cfa7941 (patch)
tree989f2ab14025f040169a83a8a233d2400427e3c8
parent093484c7475b7d4c4d3b53a56e6b5863979ab1ae (diff)
downloademacs-76200eb89f09eaa68a76fc87e81de0fd5cfa7941.tar.gz
emacs-76200eb89f09eaa68a76fc87e81de0fd5cfa7941.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog78
1 files changed, 69 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1fee51b822c..e3429a6f643 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,11 +1,10 @@
12002-04-01 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12002-04-01 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * cus-start.el: Rename `x-autoselect-window' to 3 * cus-start.el: Rename `x-autoselect-window' to `autoselect-window'.
4 `autoselect-window'.
5 4
6 * window.el (handle-select-window): New function. 5 * window.el (handle-select-window): New function.
7 Update copyright. 6 Update copyright.
8 7
92002-04-01 Richard M. Stallman <rms@gnu.org> 82002-04-01 Richard M. Stallman <rms@gnu.org>
10 9
11 * info.el (info-tool-bar-map): Use tool-bar-local-item-from-menu. 10 * info.el (info-tool-bar-map): Use tool-bar-local-item-from-menu.
@@ -13,14 +12,14 @@
13 * toolbar/tool-bar.el (tool-bar-local-item): Renamed from 12 * toolbar/tool-bar.el (tool-bar-local-item): Renamed from
14 tool-bar-add-item, and new arg MAP. 13 tool-bar-add-item, and new arg MAP.
15 (tool-bar-add-item): Now calls tool-bar-local-item. 14 (tool-bar-add-item): Now calls tool-bar-local-item.
16 (tool-bar-local-item-from-menu): Renamed from 15 (tool-bar-local-item-from-menu): Renamed from
17 tool-bar-add-item-from-menu, and new arg IN-MAP. 16 tool-bar-add-item-from-menu, and new arg IN-MAP.
18 (tool-bar-add-item-from-menu): Now calls tool-bar-local-item-from-menu. 17 (tool-bar-add-item-from-menu): Now calls tool-bar-local-item-from-menu.
19 18
20 * help-fns.el (help-with-tutorial): Allow various ways 19 * help-fns.el (help-with-tutorial): Allow various ways
21 to specify the text in the [...] line, in handling the <...> line. 20 to specify the text in the [...] line, in handling the <...> line.
22 21
23 * progmodes/idlw-rinfo.el (idlwave-system-routines): 22 * progmodes/idlw-rinfo.el (idlwave-system-routines):
24 WOLRDTITLE => WORLDTITLE. SUPRESS_VALUE => SUPPRESS_VALUE. 23 WOLRDTITLE => WORLDTITLE. SUPRESS_VALUE => SUPPRESS_VALUE.
25 24
26 * subr.el (redraw-modeline): Define alias. 25 * subr.el (redraw-modeline): Define alias.
@@ -30,7 +29,7 @@
30 * files.el (file-expand-wildcards): Use save-match-data. 29 * files.el (file-expand-wildcards): Use save-match-data.
31 30
32 * files.el (format-alist): Mark as risky. 31 * files.el (format-alist): Mark as risky.
33 32
34 * simple.el (kill-new): Doc fix. 33 * simple.el (kill-new): Doc fix.
35 34
36 * emacs-lisp/byte-opt.el (side-effect-free-fns) 35 * emacs-lisp/byte-opt.el (side-effect-free-fns)
@@ -56,8 +55,8 @@
56 55
572002-03-29 Colin Walters <walters@verbum.org> 562002-03-29 Colin Walters <walters@verbum.org>
58 57
59 * ibuffer.el (ibuffer-mark-interactive): Use 58 * ibuffer.el (ibuffer-mark-interactive): Use `ibuffer-forward-line'
60 `ibuffer-forward-line' instead of `forward-line'. 59 instead of `forward-line'.
61 (ibuffer-forward-line): Be sure to skip over special properties 60 (ibuffer-forward-line): Be sure to skip over special properties
62 before moving, too. 61 before moving, too.
63 62
@@ -69,6 +68,20 @@
69 68
70 * calc/calc-misc.el (calc-delete-windows-keep): Function deleted. 69 * calc/calc-misc.el (calc-delete-windows-keep): Function deleted.
71 70
712002-03-29 Stefan Monnier <monnier@cs.yale.edu>
72
73 * textmodes/sgml-mode.el (sgml-lexical-context): Return (text . START)
74 instead of nil when point is outside of any tag.
75 (sgml-beginning-of-tag): Adjust to the change.
76 (sgml-calculate-indent): Use the new info returned by
77 sgml-lexical-context. Try to handle unclosed tags.
78
79 * textmodes/xml-lite.el (xml-lite-get-context): Don't stop parsing
80 at unclosed tags unless it is at indentation.
81 Kill nested unclosed tags.
82 (xml-lite-calculate-indent, xml-lite-indent-line): Remove.
83 (xml-lite-mode): Use sgml-indent-line instead.
84
722002-03-29 Eli Zaretskii <eliz@is.elta.co.il> 852002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
73 86
74 * files.el (auto-save-file-name-transforms): Don't run "\\2" via 87 * files.el (auto-save-file-name-transforms): Don't run "\\2" via
@@ -77,13 +90,34 @@
77 * startup.el (command-line): Recompute auto-save-file-name-transforms 90 * startup.el (command-line): Recompute auto-save-file-name-transforms
78 using the updated value of temporary-file-directory. 91 using the updated value of temporary-file-directory.
79 92
932002-03-29 Stefan Monnier <monnier@cs.yale.edu>
94
95 * textmodes/xml-lite.el (xml-lite-get-context): Allow stopping
96 even with an empty context. Don't save excursion any more.
97 Don't complain about unmatched start-tags in sgml-unclosed-tags.
98 Ignore end-tags in sgml-empty-tags.
99 (xml-lite-get-context, xml-lite-calculate-indent)
100 (xml-lite-insert-end-tag): Save excursion around xml-lite-get-context.
101 (xml-lite-indent-line): Use back-to-indentation.
102
103 * textmodes/sgml-mode.el (sgml-basic-offset): New var.
104 (sgml-name-re, sgml-attrs-re): New consts.
105 (sgml-tag-name-re, sgml-start-tag-regex, sgml-font-lock-keywords-1)
106 (sgml-mode): Use them.
107 (sgml-lexical-context): Default to (point-min) if nothing else works.
108 (sgml-calculate-indent): Indent slightly differently.
109 (sgml-indent-line): Use back-to-indentation.
110 (sgml-parse-dtd): New function.
111 (sgml-unclosed-tags): New var.
112 (html-mode): Set it.
113
802002-03-29 Simon Marshall <simon.marshall@misys.com> 1142002-03-29 Simon Marshall <simon.marshall@misys.com>
81 115
82 * font-lock.el (save-buffer-state): Use make-symbol to bind `modified'. 116 * font-lock.el (save-buffer-state): Use make-symbol to bind `modified'.
83 117
842002-03-29 Richard M. Stallman <rms@gnu.org> 1182002-03-29 Richard M. Stallman <rms@gnu.org>
85 119
86 * dired-aux.el (dired-do-query-replace-regexp, dired-do-search): 120 * dired-aux.el (dired-do-query-replace-regexp, dired-do-search):
87 Use FILTER arg in dired-get-marked-files to exclude directories. 121 Use FILTER arg in dired-get-marked-files to exclude directories.
88 (dired-nondirectory-p): New function. 122 (dired-nondirectory-p): New function.
89 123
@@ -115,6 +149,23 @@
115 149
116 * bindings.el (mode-line-mule-info): Use :propertize, not :eval. 150 * bindings.el (mode-line-mule-info): Use :propertize, not :eval.
117 151
1522002-03-28 Stefan Monnier <monnier@cs.yale.edu>
153
154 * textmodes/xml-lite.el (xml-lite-in-string-p):
155 Use sgml-lexical-context.
156 (xml-lite-parse-tag-backward): Use sgml-tag-syntax-table.
157 (xml-lite-get-context): Check that open/close tags match.
158 Don't stop scanning while we're ignoring matching tags.
159
160 * textmodes/sgml-mode.el (sgml-make-syntax-table): New fun.
161 (sgml-mode-syntax-table): Use it.
162 (sgml-tag-syntax-table, sgml-tag-name-re): New const.
163 (sgml-tags-invisible): Use it.
164 (sgml-lexical-context): New fun.
165 (sgml-maybe-end-tag, sgml-beginning-of-tag): Use it.
166 (sgml-quote): Accept \n as entity reference terminator.
167 (sgml-calculate-indent, sgml-indent-line): New funs.
168
1182002-03-28 Andre Spiegel <spiegel@gnu.org> 1692002-03-28 Andre Spiegel <spiegel@gnu.org>
119 170
120 * vc-cvs.el (vc-cvs-global-switches): New user option. 171 * vc-cvs.el (vc-cvs-global-switches): New user option.
@@ -139,6 +190,15 @@
139 `query-replace-read-args'. 190 `query-replace-read-args'.
140 (operation query-replace-regexp): Ditto. 191 (operation query-replace-regexp): Ditto.
141 192
1932002-03-27 Stefan Monnier <monnier@cs.yale.edu>
194
195 * textmodes/xml-lite.el: Fix copyright notice.
196 (xml-lite-basic-offset): Rename from xml-lite-indent-offset.
197 (xml-lite-indent-comment-offset): Remove.
198 (xml-lite-calculate-indent): Use new name. Use natural alignment
199 for comments.
200 (xml-lite-in-string-p): Simplify.
201
1422002-03-27 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 2022002-03-27 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
143 203
144 * allout.el (outline-layout): Doc fix. 204 * allout.el (outline-layout): Doc fix.