159
|
1 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
2
|
|
3 * prim/help.el (function-called-at-point): Use char-(after|before)
|
|
4 instead of (following|preceding)-char.
|
|
5 (variable-at-point): Ditto.
|
|
6
|
|
7 * prim/simple.el (delete-indentation): Use char-(after|before)
|
|
8 instead of (following|preceding)-char.
|
|
9 (just-one-space): Ditto.
|
|
10 (backward-delete-char-untabify): Ditto.
|
|
11 (do-auto-fill): Ditto.
|
|
12
|
|
13 * prim/paragraphs.el (end-of-paragraph-text): Use char-before
|
|
14 instead of preceding-char.
|
|
15
|
|
16 * prim/misc.el (copy-from-above-command): Use char-(after|before)
|
|
17 instead of (following|preceding)-char.
|
|
18
|
|
19 * prim/obsolete.el (preceding-char): Correct a typo.
|
|
20
|
|
21 * prim/minibuf.el (minibuffer-electric-slash): Use char-(after|before)
|
|
22 instead of (following|preceding)-char.
|
|
23 (minibuffer-electric-tilde): Ditto.
|
|
24
|
|
25 * prim/lisp.el (insert-parentheses): Use char-(after|before)
|
|
26 instead of (following|preceding)-char.
|
|
27
|
|
28 * prim/indent.el (tab-to-tab-stop): Use char-(after|before)
|
|
29 instead of (following|preceding)-char.
|
|
30 (move-to-tab-stop): Ditto.
|
|
31
|
|
32 * prim/fill.el (fill-end-of-sentence-p): Use
|
|
33 char-after/char-before instead of following-char/preceding-char.
|
|
34 (canonically-space-region): Ditto.
|
|
35 (fill-region-as-paragraph): Ditto.
|
|
36 (fill-region): Change (= char char) to (eq char char).
|
|
37
|
|
38 * prim/debug.el (debugger-frame-number): Use char-after not
|
|
39 following-char.
|
|
40 (debugger-frame): Ditto.
|
|
41 (debugger-frame-clear): Ditto.
|
|
42
|
|
43 * prim/case-table.el (invert-case): Use char-after not
|
|
44 following-char.
|
|
45 Clean up comments.
|
|
46
|
|
47 * prim/syntax.el (symbol-near-point): Use char-before not
|
|
48 preceding-char.
|
|
49
|
|
50 * prim/window.el (window-list): Update DOCstring.
|
|
51 From Noah Friedman <friedman@splode.com>
|
|
52
|
|
53 * utils/uniquify.el (toplevel): Make version test match XEmacs v20.
|
|
54
|
|
55 * tm/tm-ew-e.el: Clean up Ebola infection.
|
|
56
|
|
57 * x11/x-compose.el: Various corrections
|
|
58 From Heiko Muenkel <muenkel@tnt.uni-hannover.de>
|
|
59
|
|
60 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com>
|
|
61
|
|
62 * lisp/modes/view-less.el: Changed \177 bindings to 'delete
|
|
63 * lisp/modes/help.el: Changed \177 bindings to 'delete
|
|
64
|
|
65 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com>
|
|
66
|
|
67 * lisp/prim/keydefs.el: Changed all 'delete key bindings to point to
|
|
68 the `backward-or-forward-foo' functions.
|
|
69 * lisp/prim/simple.el:
|
|
70 - Renamed `delete-erases-forward' to `delete-key-deletes-forward'.
|
|
71 - Removed `backspace-or-delete-hook'
|
|
72 - Renamed `backspace-or-delete' to `backward-or-forward-delete-char'
|
|
73 - Added functions: `backward-or-forward-kill-word'
|
|
74 `backward-or-forward-kill-sentence'
|
|
75 `backward-or-forward-kill-sexp'
|
|
76 - Removed the zmacs hacks from all the `b-or-f-foo' functions and
|
|
77 began playing nicely with pending-del.
|
|
78 * lisp/modes/cc-mode.el:
|
|
79 * lisp/modes/cperl-mode.el: Fixed references to delete functions
|
|
80 to use the new names.
|
|
81
|
|
82 1997-06-11 Karl M Hegbloom <karlheg@inetarena.com>
|
|
83
|
|
84 * ilisp/ilisp-def.el (toplevel): Changed `ilisp-prefix' from
|
|
85 "C-z" to "C-c" because of conflict with global key binding for
|
|
86 `iconify-frame'.
|
|
87
|
|
88 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
89
|
|
90 * prim/window.el (window-list): New function.
|
|
91 Suggested by Noah Friedman <friedman@splode.com>
|
|
92 Modified by Hrvoje Niksic <hniksic@srce.hr>
|
|
93
|
|
94 * utils/mail-extr.el (mail-extract-address-components): Replace
|
|
95 preceding-char with char-before.
|
|
96
|
|
97 * utils/passwd.el (read-passwd-map): Clean up Ebola BS.
|
|
98
|
|
99 1997-06-10 Steven L Baur <steve@altair.xemacs.org>
|
|
100
|
|
101 * packages/supercite.el (sc-attribs-extract-namestring): Clean up
|
|
102 Ebola -- replace literal 32 with `?\ '.
|
|
103
|
|
104 * utils/mail-extr.el (mail-extr-voodoo): Clean up Ebola -- replace
|
|
105 `following-char' with `char-after'.
|
|
106
|
|
107 1997-06-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
108
|
|
109 * prim/subr.el (split-string): Make PATTERN optional.
|
|
110
|
|
111 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
112
|
|
113 * mule/language/misc-lang.el, mule/mule-load.el,
|
|
114 mule/ipa-hooks.el: Use lisp/mule/language/misc-lang.el instead of
|
|
115 lisp/mule/ipa-hooks.el; mule/ipa-hooks.el was deleted.
|
|
116
|
|
117 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
118
|
|
119 * mule/language/thai-util.el, mule/thai.el: Use
|
|
120 lisp/mule/language/thai-util.el instead of lisp/mule/thai.el;
|
|
121 lisp/mule/thai.el was deleted.
|
|
122
|
|
123 * custom/wid-edit.el: Add widget `coding-system' for mule.
|
|
124
|
|
125 * mule/thai-hooks.el, mule/mule-load.el: Use
|
|
126 lisp/mule/language/thai.el instead of lisp/mule/thai-hooks.el;
|
|
127 lisp/mule/thai-hooks.el was deleted.
|
|
128
|
|
129 * mule/language/thai.el: modified for XEmacs.
|
|
130
|
|
131 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
132
|
|
133 * mule/language/misc-lang.el, mule/language/thai-util.el,
|
|
134 mule/language/thai.el, mule/language/tibetan.el,
|
|
135 mule/language/vietnamese.el, mule/language/japan-util.el,
|
|
136 mule/language/japanese.el, mule/language/korean.el,
|
|
137 mule/language/lao-util.el, mule/language/lao.el,
|
|
138 mule/language/english.el, mule/language/ethiopic.el,
|
|
139 mule/language/european.el, mule/language/greek.el,
|
|
140 mule/language/hebrew.el, mule/language/indian.el,
|
|
141 mule/language/chinese.el, mule/language/cyrillic.el,
|
|
142 mule/language/devanagari.el, mule/language/china-util.el: imported
|
|
143 from Emacs/mule-19.34.94-zeta.
|
|
144
|
|
145 * mule/mule-load.el, mule/chinese-hooks.el, mule/chinese.el,
|
|
146 mule/cyrillic-hooks.el, mule/european-hooks.el,
|
|
147 mule/greek-hooks.el, mule/japanese-hooks.el, mule/korean-hooks.el:
|
|
148 chinese-hooks.el, chinese.el, cyrillic-hooks.el,
|
|
149 european-hooks.el, greek-hooks.el, japanese-hooks.el and
|
|
150 korean-hooks.el were deleted.
|
|
151
|
|
152 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
153
|
|
154 * apel/emu-x20.el (mime-charset-coding-system-alist): iso-8859-1,
|
|
155 hz-gb-2312, cn-gb-2312, gb2312, cn-big5 and koi8-r were defined as
|
|
156 coding-system.
|
|
157
|
157
|
158 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
|
|
159
|
|
160 * prim/keydefs.el, modes/cc-mode.el, modes/cperl-mode.el,
|
|
161 vm/vm-vars.el:
|
|
162 Change usage of \177 to use keysym 'delete.
|
|
163 From Gary D. Foster <Gary.Foster@Corp.Sun.COM>
|
|
164
|
|
165 * packages/etags.el (tags-loop-scan): Don't pass a straight string
|
|
166 to error as a format string.
|
|
167 Reported by Miles Duke <mduke@erdas.com>
|
|
168
|
|
169 * its/its-kata.el ((require 'egg)): Needed for bytecompilation.
|
|
170
|
|
171 * its/its-hira.el ((require 'egg)): Needed for bytecompilation.
|
|
172
|
|
173 * bytecomp/bytecomp.el (byte-compile-two-args-19->20): Correct an
|
|
174 ebolifaction.
|
|
175 From Kyle Jones <kyle_jones@wonderworks.com>
|
|
176
|
|
177 1997-06-08 Steven L Baur <steve@altair.xemacs.org>
|
|
178
|
|
179 * prim/files.el (auto-mode-alist): Restore bash regexps.
|
|
180 From "Barry A. Warsaw" <bwarsaw@CNRI.Reston.VA.US>
|
|
181
|
155
|
182 1997-06-05 Steven L Baur <steve@altair.xemacs.org>
|
|
183
|
|
184 * packages/jka-compr.el (jka-compr-write-region): Use 'binary
|
|
185 coding-system for compression.
|
|
186 Suggested by Katsumi Yamaoka <yamaoka@ga.sony.co.jp>
|
|
187
|
159
|
188 1997-06-04 Gary D. Foster <Gary.Foster@corp.sun.com>
|
|
189
|
|
190 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to honor the
|
|
191 desired delete direction in both normal and "hungry" modes.
|
|
192 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to
|
|
193 honor the desired delete direction.
|
|
194
|
155
|
195 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
196
|
|
197 * x11/x-menubar.el (default-menubar): Add menu for Mule.
|
|
198
|
|
199 * mule/mule-cmds.el: Menu for XEmacs were moved to
|
|
200 x11/x-menubar.el.
|
|
201
|
|
202 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
203
|
|
204 * leim/quail.el: to avoid compiling warnings about overlay.el.
|
|
205
|
159
|
206 1997-05-16 Gary D. Foster <Gary.Foster@corp.sun.com>
|
|
207
|
|
208 * lisp/prim/simple.el: Created `backspace-or-delete' function and
|
|
209 `backspace-or-delete-hook'
|
|
210 * lisp/prim/keydefs.el: Changed \177 bindings to point to new
|
|
211 delete function.
|
|
212 * lisp/modes/*.el: Removed conflicting \177 bindings.
|
|
213 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to use new
|
|
214 delete bindings.
|
|
215 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to
|
|
216 use new delete bindings.
|
|
217
|
155
|
218 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
219
|
|
220 * leim/quail.el: to sync with quail.el of Emacs-19.34.94-epsilon.
|
|
221
|
|
222 * leim/quail/ziranma.el, leim/quail/tonepy.el, leim/quail/py.el,
|
|
223 leim/quail/qj.el, leim/quail/sw.el, leim/quail/ccdospy.el,
|
|
224 leim/quail/punct.el, leim/quail/4corner.el,
|
|
225 leim/quail/symbol-ksc.el, leim/quail/ethiopic.el,
|
|
226 leim/quail/hanja.el, leim/quail/quick-cns.el,
|
|
227 leim/quail/tsangchi-cns.el, leim/quail/lrt.el,
|
|
228 leim/quail/tsangchi-b5.el, leim/quail/devanagari.el,
|
|
229 leim/quail/japanese.el, leim/quail/quick-b5.el,
|
|
230 leim/quail/punct-b5.el, leim/quail/qj-b5.el, leim/quail/py-b5.el,
|
|
231 leim/quail/ctlau.el, leim/quail/ctlaub.el, leim/quail/ecdict.el,
|
|
232 leim/quail/array30.el, leim/quail/hangul3.el,
|
|
233 leim/quail/hanja-jis.el, leim/quail/cyrillic.el,
|
|
234 leim/quail/etzy.el, leim/quail/greek.el, leim/quail/ipa.el,
|
|
235 leim/quail/lao.el, leim/quail/zozy.el, leim/quail/viqr.el,
|
|
236 leim/quail/latin.el, leim/quail/thai.el, leim/quail/hangul.el:
|
|
237 quail of LEIM for Emacs-19.34.94-epsilon.
|
|
238
|
|
239 1997-06-04 Steven L Baur <steve@altair.xemacs.org>
|
|
240
|
|
241 * prim/about.el: Installed new version 2.1.
|
|
242 From Hrvoje Niksic <hniksic@srce.hr>
|
|
243
|
|
244 * prim/profile.el (pretty-print-profiling-info): Autoload don't
|
|
245 dump.
|
|
246 Clean up comments.
|
|
247
|
|
248 * prim/update-elc.el: Comment cleanup.
|
|
249
|
|
250 * modes/cperl-mode.el (cperl-mode-map): Restore previous
|
|
251 definition.
|
|
252 (cperl-electric-backspace): Use backspace-or-delete if it exists.
|
|
253
|
|
254 * bytecomp/bytecomp-runtime.el (eval-when-feature): New macro.
|
|
255 From Roland McGrath <roland@frob.com>
|
|
256
|
|
257 * prim/glyphs.el (init-glyphs): Add xbm instantiator for 'x
|
|
258 consoles.
|
|
259 Suggested by Hrvoje Niksic <hniksic@srce.hr>.
|
|
260
|
|
261 * utils/passwd.el: Eliminate obsolete Lucid emacs usage.
|
|
262
|
|
263 * utils/timezone.el (timezone-make-date-arpa-standard): Correct
|
|
264 docstring.
|
|
265 (timezone-make-date-sortable): Ditto.
|
|
266
|
|
267 * utils/passwd.el (passwd-invert-frame-when-keyboard-grabbed):
|
|
268 Change default for InfoDock.
|
|
269
|
|
270 * utils/highlight-headers.el
|
|
271 (highlight-headers-follow-url-function): Correct docstring.
|
|
272
|
|
273 * utils/finder.el (finder-known-keywords): Cleanup keyword
|
|
274 documentation.
|
|
275
|
|
276 * prim/startup.el (command-line-do-help): Use emacs-name function
|
|
277 for printing the editor name.
|
|
278
|
|
279 * prim/simple.el: Disable for InfoDock.
|
|
280 (display-warning): Disable for InfoDock.
|
|
281 (emacs-name): New function.
|
|
282
|
|
283 * prim/toolbar.el (press-toolbar-button): Allow mouse presses on
|
|
284 blank portions of the toolbar to do something.
|
|
285 (release-and-activate-toolbar-button): Handle arbitrary functions
|
|
286 as toolbar callbacks.
|
|
287 From weiner@altrasoft.com
|
|
288
|
|
289 * prim/mouse.el (default-mouse-track-cleanup-extent): Correct test
|
|
290 on dead-func extent.
|
|
291
|
|
292 * prim/help.el (view-emacs-news): outl-mouse turned off in
|
|
293 InfoDock.
|
|
294
|
|
295 * packages/tar-mode.el (tar-mode-map): InfoDock doesn't like the
|
|
296 mouse bindings.
|
|
297
|
|
298 * packages/makesum.el (make-command-summary): Output correct
|
|
299 program name.
|
|
300 (double-column): Remove unused variable.
|
|
301
|
|
302 * packages/hyper-apropos.el (hypropos-popup-menu): Synch with
|
|
303 infodock. Initialize command-p to either t or nil.
|
|
304
|
|
305 * eterm/term.el (make-term): Fix docstring.
|
|
306
|
|
307 * comint/shell.el: Correct comment.
|
|
308
|
|
309 * comint/comint.el (comint-mode-map): Infodock doesn't like the
|
|
310 button3 assignment.
|
|
311
|
|
312 1997-06-03 Steven L Baur <steve@altair.xemacs.org>
|
|
313
|
|
314 * modes/lisp-mode.el (eval-interactive): Treat defcustom like
|
|
315 defvar (turn into an effective defconst).
|
|
316
|
|
317 * cl/cl-macs.el (widget-get): Add defsetf method.
|
|
318 (widget-value): Add defsetf method.
|
|
319 From Hrvoje Niksic <hniksic@srce.hr>
|
|
320
|
|
321 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
|
|
322
|
|
323 * prim/obsolete.el (insert-and-inherit): Make 'compatible not
|
|
324 'obsolete.
|
|
325 Suggested by Hrvoje Niksic <hniksic@srce.hr>
|
|
326 (insert-before-markers-and-inherit): Ditto.
|
|
327
|
|
328 1997-06-02 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
329
|
|
330 * lisp/mule/korean.el was abolished because it seems not to be used.
|
|
331
|
|
332 * lisp/mule/japanese.el was abolished because it seems not to be used.
|
|
333
|
|
334 1997-06-01 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
335
|
|
336 * lisp/tm/gnus-mime-old.el was abolished because XEmacs 20.3 has Gnus
|
|
337 5.4.
|
|
338
|
|
339 * lisp/tm/tm-edit.el: updated to 7.108.
|
|
340
|
|
341 * lisp/tm/tm-view.el: updated to 7.83.
|
|
342
|
|
343 * lisp/leim/quail.el: modified for XEmacs.
|
|
344
|
|
345 * lisp/mule/mule-load.el, lisp/mule/mule-process.el: delete
|
|
346 mule-process.el because it is not used.
|
|
347
|
|
348 * lisp/mule/european.el was abolished because it seems not to be used.
|
|
349
|
|
350 * lisp/mule/mule-load.el: must load mule-cmds before setting for
|
|
351 language-environment.
|
|
352
|
|
353 * lisp/mule/mule-cmds.el, lisp/mule/european-hooks.el: Modified
|
|
354 for LEIM.
|
|
355
|
|
356 * lisp/mule/mule-cmds.el: Uncomment key definition for
|
|
357 `toggle-input-method'.
|
|
358
|
|
359 * lisp/mule/mule-init.el: Comment out about `mule-keymap' (moved to
|
|
360 mule-cmds.el).
|
|
361
|
|
362 * lisp/mule/mule-cmds.el: Uncomment about `mule-keymap' (moved from
|
|
363 mule-init.el).
|
|
364
|
|
365 * lisp/tl/tl-atype.el: Don't require tl-str.
|
|
366
|
|
367 * lisp/tl/tl-atype.el: Use atype.el of APEL.
|
|
368
|
|
369 * lisp/tl/tl-list.el: Use alist.el of APEL.
|
|
370
|
|
371 1997-05-31 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
372
|
|
373 * lisp/tl/richtext.el, lisp/tl/emu-x20.el, lisp/tl/emu-xemacs.el,
|
|
374 lisp/tl/emu.el, lisp/tl/emu-e19.el: moved to lisp/apel/.
|
|
375
|
|
376 * lisp/tl/file-detect.el, lisp/tl/filename.el: replaced by APEL's.
|
|
377
|
|
378 * lisp/mu/std11-parse.el, lisp/mu/std11.el: moved to lisp/apel/.
|
|
379
|
|
380 * lisp/leim/quail.el: Add new quail.el (imported from Emacs
|
|
381 19.34.94-epsilon).
|
|
382
|
|
383 * lisp/leim/skk/skkdic.el: delete skkdic.el temporary because XEmacs
|
|
384 can not compile it.
|
|
385
|
|
386 * leim/skk/skkdic.el, leim/quail/zozy.el, leim/quail/ziranma.el,
|
|
387 leim/quail/viqr.el, leim/quail/tsangchi-cns.el,
|
|
388 leim/quail/tsangchi-b5.el, leim/quail/symbol-ksc.el,
|
|
389 leim/quail/thai.el, leim/quail/tonepy.el, leim/quail/quick-cns.el,
|
|
390 leim/quail/sw.el, leim/quail/qj-b5.el, leim/quail/qj.el,
|
|
391 leim/quail/quick-b5.el, leim/quail/py-b5.el, leim/quail/py.el,
|
|
392 leim/quail/lao.el, leim/quail/latin.el, leim/quail/lrt.el,
|
|
393 leim/quail/punct-b5.el, leim/quail/punct.el,
|
|
394 leim/quail/hanja-jis.el, leim/quail/hanja.el, leim/quail/ipa.el,
|
|
395 leim/quail/japanese.el, leim/quail/hangul3.el, leim/quail/etzy.el,
|
|
396 leim/quail/greek.el, leim/quail/hangul.el, leim/quail/ethiopic.el,
|
|
397 leim/quail/devanagari.el, leim/quail/ecdict.el,
|
|
398 leim/quail/ctlau.el, leim/quail/ctlaub.el, leim/quail/cyrillic.el,
|
|
399 leim/quail/array30.el, leim/quail/ccdospy.el,
|
|
400 leim/quail/4corner.el: Add LEIM elisp files.
|
|
401
|
|
402 * mule/mule-load.el, mule/mule-cmds.el: Add mule-cmds.el.
|
|
403
|
|
404 * lisp/prim/simple.el (assoc-ignore-case): New function; imported
|
|
405 from Emacs/mule-19.34.94-epsilon.
|
|
406
|
|
407 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
|
|
408
|
|
409 * modes/hideshow.el: Make it work again.
|
|
410 From Pete Ware <ware@cis.ohio-state.edu>
|
|
411
|
|
412 Sat May 31 09:00:14 1997 David Moore <dmoore@ucsd.edu>
|
|
413
|
|
414 * utils/text-props.el (set-text-properties): Was exiting
|
|
415 map-extents too early.
|
|
416
|
|
417 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
|
|
418
|
|
419 * cl/cl-macs.el (frame-parameters): Tweaking frame configuration
|
|
420 defsetf's.
|
|
421 From Hrvoje Niksic <hniksic@srce.hr>
|
|
422
|
|
423 * modes/vhdl-mode.el (vhdl-emacs-features): Allow recognition of
|
|
424 major version 20.
|
|
425
|
|
426 * prim/simple.el (kill-region): Sort beginning and ending
|
|
427 endpoints to simplify logic.
|
|
428 From Hrvoje Niksic <hniksic@srce.hr>
|
|
429
|
|
430 Tue May 27 13:42:57 1997 Ken Manheimer <klm@python.org>
|
|
431
|
|
432 * packages/icomplete.el:
|
|
433 * Updated my email address - klm@python.org instead of klm@nist.gov.
|
|
434
|
|
435 * Icomplete no longer installs itself when you load the package -
|
|
436 you have to invoke `icomplete-mode'. (Since it's autoloaded in
|
|
437 both emacs, you can just invoke the function.)
|
|
438
|
|
439 * Integrated Emacs 19.34 and XEmacs 19.15 corrections (typos,
|
|
440 style, command revisions, etc).
|
|
441
|
|
442 * Integrated immediate keybindings display. See
|
|
443 `icomplete-show-key-bindings', `icomplete-get-keys', and
|
|
444 `icomplete-completions'.
|
|
445
|
|
446 * `icomplete-get-keys': Return keys bound in prior buffer to func name.
|
|
447
|
|
448 * Added icomplete delay behavior, so completions don't intrude as
|
|
449 quickly for short input, with customization variables:
|
|
450
|
|
451 `icomplete-max-delay-chars' - Maximum number of initial chars to
|
|
452 apply icomplete compute delay.
|
|
453
|
|
454 `icomplete-compute-delay' - Completions-computation stall, used
|
|
455 only with large-number completions
|
|
456
|
|
457 `icomplete-delay-completions-threshold' Pending-completions
|
|
458 number over which to apply icomplete-compute-delay
|
|
459
|
|
460 * Provided `icomplete-exhibit' on `icomplete-minibuffer-setup-hook'
|
|
461 so icomplete behaves well with XEmacs GNUS.
|
|
462
|
|
463 Fri May 30 18:39:01 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
464
|
|
465 * prim/glyphs.el (init-glyphs): Minor regexp cleanup.
|
|
466
|
|
467 1997-05-30 Steven L Baur <steve@altair.xemacs.org>
|
|
468
|
|
469 * prim/simple.el (fsf:do-auto-fill): Remove unused variable.
|
|
470 (indent-for-comment): Use comment-indent-function instead of
|
|
471 obsolete variant. This is dumped with XEmacs!
|
|
472
|
|
473 * packages/generic-sc.el (sc-next-operation): Remove unused
|
|
474 variable.
|
|
475 (sccs-insert-c-header): Ditto.
|
|
476 (ccase-new-revision-p): Ditto.
|
|
477 (sc-sensitize-menu): Ditto.
|
|
478
|
|
479 * modes/auto-show.el (TopLevel): Tighten check on
|
|
480 dump-time initialization.
|
|
481
|
153
|
482 1997-05-29 Steven L Baur <steve@altair.xemacs.org>
|
|
483
|
155
|
484 * prim/format.el (format-alist): Change defconst to defvar.
|
|
485 From Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
|
|
486
|
|
487 (format-encode-region): Reduce bytecompiler warnings for bound but
|
|
488 unused variables.
|
|
489 (format-deannotate-region): Ditto.
|
|
490 (format-annotate-region): Ditto.
|
|
491 (format-annotate-single-property-change) Ditto.
|
|
492
|
|
493 * utils/lib-complete.el: Clean up documentation in header.
|
|
494
|
|
495 * prim/glyphs.el: Eliminate bytecompiler warnings.
|
|
496 (define-obsolete-pointer-glyph): Mark as 'compatible not 'obsolete.
|
|
497
|
|
498 * prim/keydefs.el (ctl-x-map): Bind narrow-to-defun to `C-x n d'.
|
|
499
|
|
500 * prim/lisp.el (narrow-to-defun): Narrow to the same defun that
|
|
501 `mark-defun' would make the region.
|
|
502 (insert-parentheses): Let a negative argument enclose preceding
|
|
503 sexps.
|
|
504 From Erik Naggum <erik@naggum.no>
|
|
505
|
|
506 * prim/window-xemacs.el: New file, split from window.el with
|
|
507 XEmacs-specific stuff.
|
|
508
|
|
509 * prim/window.el (display-buffer): Remove unused variable.
|
|
510
|
|
511 * prim/keydefs.el (ctl-x-4-map): Add binding for
|
|
512 `kill-buffer-and-window'.
|
|
513
|
|
514 * prim/window.el (kill-buffer-and-window): New command.
|
|
515 Bind it to C-x 4 0.
|
|
516 From Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
|
|
517
|
|
518 * prim/window.el (split-window-vertically): Don't change point in old
|
|
519 window if both the original point and the end of the buffer are
|
|
520 visible after splitting, when split-window-keep-point is nil.
|
|
521 From Noah Friedman <friedman@prep.ai.mit.edu>
|
|
522
|
|
523 * prim/files.el (revert-buffer-internal-hook): Declare.
|
|
524
|
|
525 * utils/map-ynp.el: Synch with Emacs 19.34.94.
|
|
526 (map-y-or-n-p): Clean up bytecompiler warnings.
|
|
527
|
|
528 * packages/generic-sc.el: Restored to distribution, comment
|
|
529 cleanup.
|
|
530
|
|
531 * prim/simple.el (message-log-max): Add compatible variable alias
|
|
532 for `log-message-max-size'.
|
|
533
|
|
534 * comint/background.el (background): Autoload.
|
|
535
|
|
536 * prim/process.el (shell-command): background.el is now
|
|
537 autoloaded.
|
|
538
|
|
539 * prim/minibuf.el: Clean up file header.
|
|
540
|
153
|
541 * packages/bookmark.el (bookmark-menu-popup-paned-menu): Naive
|
|
542 port to XEmacs.
|
|
543 (bookmark-bmenu-other-window-with-mouse): Naive port to XEmacs.
|
|
544
|
|
545 * utils/autoload.el (generated-custom-file): custom-load.el
|
|
546 renamed to cus-load.el.
|
|
547
|
|
548 * prim/loadup.el: Don't preload custom-load.elc.
|
|
549
|
|
550 Thu May 29 19:03:52 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
551
|
|
552 * x11/x-menubar.el (default-menubar): Updated customize entries.
|
|
553
|
|
554 1997-05-29 Steven L Baur <steve@altair.xemacs.org>
|
|
555
|
|
556 * prim/about.el (about-xemacs-xref): Update contributors list.
|
|
557
|
|
558 1997-05-28 Steven L Baur <steve@altair.xemacs.org>
|
|
559
|
|
560 * prim/minibuf.el (mouse-file-display-completion-list): Protect
|
|
561 against bogus directory becoming default.
|
|
562 (mouse-directory-display-completion-list): Ditto.
|
|
563
|
|
564 From Per Abrahamsen <abraham@dina.kvl.dk>
|
|
565 * bytecomp/bytecomp.el
|
|
566 (byte-compile-file-form-custom-declare-variable): New function.
|
|
567 (custom-declare-variable): Use it.
|
|
568
|
|
569 * packages/vc.el (vc-directory): dirname typo'ed as dir.
|
|
570
|
|
571 * packages/vc-hooks.el (vc-menu): Remove vc-file-status.
|
|
572 (Toplevel): Remove key definition for vc-file-status.
|
|
573
|
|
574 1997-05-27 Steven L Baur <steve@altair.xemacs.org>
|
|
575
|
|
576 * prim/cus-start.el (Toplevel): Rename factory-value to
|
|
577 standard-value for Custom-1.98.
|
|
578
|
|
579 1997-05-26 Steven L Baur <steve@altair.xemacs.org>
|
|
580
|
|
581 * prim/help.el (view-lossage-key-count): New variable.
|
|
582 (view-lossage-message-count): New variable.
|
|
583 (view-lossage): Use them.
|
|
584
|
|
585 From Hrvoje Niksic
|
|
586 * prim/help.el (view-lossage): Use new argument to `recent-keys'.
|
|
587
|
|
588 * cl/cl-macs.el (recent-keys-ring-size): New setf method.
|
|
589
|
|
590 1997-05-26 Steven L Baur <steve@altair.xemacs.org>
|
|
591
|
|
592 * prim/process.el (shell-command-to-string): Alias exec-to-string
|
|
593 to more logical name.
|
|
594
|
|
595 1997-05-23 Steven L Baur <steve@altair.xemacs.org>
|
|
596
|
|
597 * tm/tm-view.el (mime/content-decoding-condition): Add image/png
|
|
598 mime type.
|
|
599
|
|
600 * tm/tm-image.el (toplevel): Add image/png mime type.
|
|
601
|
|
602 * tm/tm-edit.el (mime-file-types): Add png handling.
|
|
603 (mime-content-types): Ditto.
|
|
604
|
151
|
605 Thu May 22 04:19:09 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
606
|
|
607 * prim/files.el (auto-mode-alist): Reorg. Support
|
|
608 pre-processed fortran files. *.m4 files now default to autoconf mode.
|
|
609
|
|
610 * prim/about.el: Promote Hrvoje. Picture still needed...
|
|
611
|
|
612 * modes/ksh-mode.el: _ has symbol syntax.
|
|
613 * modes/m4-mode.el: _ has symbol syntax.
|
|
614 * modes/pascal.el: _ has symbol syntax.
|
|
615 * modes/f90.el: _ has symbol syntax.
|
|
616 * modes/cperl-mode.el: _ has symbol syntax.
|
|
617 * modes/autoconf-mode.el: _ has symbol syntax.
|
|
618
|
|
619 1997-05-22 Steven L Baur <steve@altair.xemacs.org>
|
|
620
|
|
621 * prim/files.el (save-buffer): From Hrvoje Niksic. Don't clear
|
|
622 zmacs region.
|
|
623
|
|
624 * packages/func-menu.el: Update for David Hughes' new email
|
|
625 address.
|
|
626
|
|
627 1997-05-21 Noah Friedman <friedman@prep.ai.mit.edu>
|
|
628
|
|
629 * eldoc.el (eldoc-message-commands): Move docstring into comments,
|
|
630 since this isn't a user variable.
|
|
631 (eldoc-message-commands-table-size, eldoc-use-idle-timer-p,
|
|
632 eldoc-function-argstring-from-docstring-method-table): Use defvar,
|
|
633 not defconst.
|
|
634 (eldoc-last-data): Use cons explicitly; don't rely on dotted pair
|
|
635 read syntax. I'm worried the latter might get compiled as
|
|
636 read-only data someday.
|
|
637 (eldoc-docstring-message): If truncating symbol name, show ending
|
|
638 of name rather than beginning. The former is generally more unique.
|
|
639 (eldoc-function-argstring-from-docstring-method-table): Handle
|
|
640 pathological `save-restriction' case.
|
|
641 [top level]: Add `indent-for-tab-command' to eldoc-message-commands.
|
|
642
|
|
643 1997-05-21 Steven L Baur <steve@altair.xemacs.org>
|
|
644
|
|
645 * x11/x-menubar.el (default-menubar): strokes added to mouse
|
|
646 menu.
|
|
647
|
|
648 Wed May 21 17:12:28 1997 Per Bothner <bothner@deneb.cygnus.com>
|
|
649
|
|
650 * eterm/term.el (term-send-raw): Better XEmacs character event
|
|
651 handling.
|
|
652 * eterm/term.el (term-char-mode): Re-do Meta-handling by temporarily
|
|
653 setting meta-prefix-char to -1 while building keymaps.
|
|
654 (term-send-raw-meta): Removed.
|
|
655
|
|
656 Tue Mar 11 20:15:26 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
|
|
657
|
|
658 * eterm/term.el (term-completion-addsuffix): Doc fix.
|
|
659 (term-dynamic-complete-as-filename): Support the case where
|
|
660 term-completion-addsuffix is a (DIRSUFFIX . FILESUFFIX) cons
|
|
661 pair.
|
|
662
|
|
663 Tue Jun 4 10:15:54 1996 Per Bothner <bothner@deneb.cygnus.com>
|
|
664
|
|
665 * eterm/term.el: Add kd, kl, kr, du capabilities.
|
|
666 * eterm/e/eterm.ti: Add kcub1, kcuf1, kcuu1, kcud1 capabilities.
|
|
667
|
|
668 Wed May 15 14:38:45 1996 Per Bothner <bothner@deneb.cygnus.com>
|
|
669
|
|
670 * eterm/term.el (term-send-raw-string): send-string ->
|
|
671 process-send-string.
|
|
672 * eterm/term.el (term-arguments): Remove unused local 'values'.
|
|
673 * eterm/term.el (term-handle-deferred-scroll): Fix off-by-one bug,
|
|
674
|
|
675 * eterm/term.el: Merge changes from FSF (mostly typos).
|
|
676
|
|
677 Mon Sep 25 17:19:51 1995 Per Bothner <bothner@kalessin.cygnus.com>
|
|
678
|
|
679 * eterm/term.el (term-emulate-terminal): On CR, set
|
|
680 term-current-column to term-start-line-column, not 0.
|
|
681
|
|
682 1997-05-21 Steven L Baur <steve@altair.xemacs.org>
|
|
683
|
|
684 * packages/add-log.el (change-log-font-lock-keywords): Tweak
|
|
685 font-lock-keywords.
|
|
686
|
|
687 1997-05-21 Erik Naggum <erik@naggum.no>
|
|
688
|
|
689 * lisp/add-log.el (add-log-lisp-like-modes, add-log-c-like-modes,
|
|
690 add-log-tex-like-modes): New variables.
|
|
691 (add-log-current-defun): Use them instead of constant lists.
|
|
692
|
|
693 1997-05-21 Steven L Baur <steve@altair.xemacs.org>
|
|
694
|
|
695 * packages/add-log.el: Synch to Emacs 20.0.
|
|
696
|
|
697 * prim/obsolete.el (read-minibuffer): Make compatible not obsolete.
|
|
698 (read-input): Ditto.
|
|
699
|
|
700 Tue May 20 20:32:59 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
701
|
|
702 * prim/subr.el (buffer-substring-no-properties): Clean out extents
|
|
703 too.
|
|
704
|
|
705 Mon May 19 19:48:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
706
|
|
707 * prim/process.el (shell-command-on-region): Remove region active
|
|
708 test (which played havoc with the hack in call-interactively to
|
|
709 place explicit calls to region-beginning and region-end in
|
|
710 interactive specs in the command history).
|
|
711
|
|
712 Mon May 19 18:13:50 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
713
|
|
714 * utils/easymenu.el (easy-menu-add): Check for existing, before
|
|
715 entering MENU to `easy-menu-all-popups'.
|
|
716
|
|
717 Sun May 18 09:11:50 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
718
|
|
719 * prim/files.el (revert-buffer): Add optional third parameter to
|
|
720 preserve buffer modes (from Emacs 19.34.94).
|
|
721 (after-find-file): Add optional fifth parameter to preserve buffer
|
|
722 modes (from Emacs 19.34.94).
|
|
723
|
|
724 * packages/vc.el: Synch with Emacs 19.34.94 because our version was
|
|
725 hopeless.
|
|
726 (vc-checkout): Autoload.
|
|
727 (vc-find-binary): Ditto.
|
|
728
|
|
729 * prim/files.el (find-buffer-visiting): Restore because FSF vc.el
|
|
730 needs it.
|
|
731
|
149
|
732 Fri Apr 25 13:21:46 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
733
|
|
734 * apropos.el (apropos): Add support for customization groups.
|
|
735 (apropos-print): Ditto.
|
|
736
|
|
737 Sat May 17 19:56:31 1997 Glynn Clements <glynn@sensei.co.uk>
|
|
738
|
|
739 * packages/man.el (manual-entry): Strip out stderr output.
|
|
740
|
|
741 Sun May 11 18:24:25 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
742
|
|
743 * lisp/prim/modeline.el: new mouse-drag-modeline function.
|
|
744 Allows bottommost modeline to be dragged.
|
|
745
|
|
746 Sat May 17 03:41:11 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
747
|
|
748 * cl/cl-macs.el: A whole bunch of XEmacs specific setf methods
|
|
749 from Hrvoje Niksic.
|
|
750
|
|
751 * prim/files.el (auto-mode-alist): Don't copy to purespace.
|
|
752 (interpreter-mode-alist): Ditto.
|
|
753
|
|
754 Fri May 16 21:43:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
755
|
|
756 * packages/info.el (Info-button1-follows-hyperlink): New variable.
|
|
757 (Info-maybe-follow-clicked-node): Use it.
|
|
758
|
|
759 * prim/simple.el (transpose-preceding-chars): New function.
|
|
760
|
|
761 Wed Apr 23 16:04:22 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
762
|
|
763 * prim/loaddefs.el (debug-ignored-errors): Initialize.
|
|
764
|
|
765 Fri May 16 20:37:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
766
|
|
767 * version.el: Update minor version number.
|
|
768
|
146
|
769 Mon May 12 13:47:37 1997 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
|
770
|
|
771 * tm/tm-vm.el: Provide for vm-unsaved-message having been removed
|
|
772 in recent versions of VM.
|
|
773
|
144
|
774 Fri May 9 10:41:44 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
775
|
|
776 * iso/iso-acc.el (iso-accents-compose): Fix XEmacs 19.14
|
|
777 compatibility (patch suggested by Hrvoje Niksic).
|
|
778
|
|
779 * packages/man.el (manual-entry): (Patch from Soren Dayton) Allow
|
|
780 subchapters not to be trimmed on Solaris.
|
|
781
|
|
782 * prim/itimer.el (itimer-edit-mode): Correct use of obsolete
|
|
783 function.
|
|
784
|
|
785 * prim/startup.el: Update copyright notice.
|
|
786
|
142
|
787 Thu May 8 14:35:34 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
788
|
|
789 * hm--html-menus/hm--html.el: Define obsolete aliases for the
|
|
790 previous function spellings.
|
144
|
791
|
142
|
792 * hm--html-menus/hm--html-keys.el: Define obsolete aliases for the
|
|
793 previous variable spellings.
|
|
794
|
|
795 * prim/obsolete.el (define-obsolete-variable-alias): Fix docstring
|
|
796 spelling.
|
|
797 (define-compatible-variable-alias): Ditto.
|
|
798
|
|
799 * tm/tm-vm.el (vm-unsaved-message): Symbol doesn't exist any
|
|
800 more.
|
|
801
|
|
802 Tue May 6 21:33:19 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
803
|
|
804 * mule/mule-files.el (write-region): Correct docstring.
|
|
805
|
|
806 * prim/files-nomule.el (write-region): Correct docstring.
|
|
807
|
|
808 Mon May 5 12:26:41 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
809
|
|
810 * prim/about.el (about-xemacs-xref): Infodock Associates is now
|
|
811 Altrasoft.
|
|
812
|
|
813 Sat May 3 16:32:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
814
|
|
815 * efs/dired.el (dired-chown-program): chown program is in /bin on
|
|
816 Linux.
|
|
817
|
|
818 Fri May 2 20:04:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
819
|
|
820 * egg/egg.el: paren.el needed at bytecompile time for
|
|
821 `pos-visible-in-window-safe' defsubst.
|
|
822
|
|
823 * pcl-cvs/pcl-cvs.el (cvs-update): Inhibit dialog box usage in
|
|
824 call to cvs-do-update as this bombs when this function is invoked
|
|
825 from a menu.
|
|
826
|
140
|
827 Wed Apr 30 18:06:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
828
|
|
829 * prim/loadup.el: Put features.elc in the dump list.
|
|
830
|
|
831 * prim/about.el (about-xemacs): Change date.
|
|
832
|
|
833 Tue Apr 29 18:51:31 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
834
|
|
835 * mule/mule-files.el (buffer-file-coding-system-alist): Regexp for
|
|
836 handling info files didn't match the right pattern.
|
|
837
|
|
838 Sun Apr 27 18:09:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
839
|
|
840 * prim/sound.el (load-sound-file): Fix typo.
|
|
841
|
138
|
842 Sat Apr 26 16:25:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
843
|
|
844 * utils/lib-complete.el: Make conformant to Lisp coding standards
|
|
845 MULE-ize by allowing for coding system argument.
|
|
846
|
|
847 Fri Apr 25 08:39:50 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
848
|
|
849 * modes/sh-script.el (sh-indent-line): Deal with pathological case
|
|
850 of indenting a first line containing a `#' as first non-white
|
|
851 space character.
|
|
852
|
|
853 Thu Apr 24 18:40:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
854
|
|
855 * comint/telnet.el (telnet-mode-map): Correct Emacs synch typo.
|
|
856
|
|
857 * rmail/rmail.el (rmail-get-new-mail): display-time-string is not
|
|
858 necessarily a string.
|
|
859
|
|
860 Thu Apr 24 11:08:28 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
861
|
|
862 * packages/balloon-help.el:
|
|
863 - default background color now grey80 to match XEmacs default.
|
|
864 - default border width is now 1.
|
|
865 - default font is now "variable"
|
|
866 - balloon-help can now handle variable width fonts.
|
|
867 - loading balooon-help no longer turns on balloon-help-mode.
|
|
868 - new `balloon-help' command.
|
|
869 - changes to the font/background/foreground variables now affect
|
|
870 the help frame at next display.
|
|
871 - help frame should now pop up on the correct display if XEmacs
|
|
872 is running with multiple devices open.
|
|
873 - Customized, courtesy of Hrvoje.
|
|
874 - don't use the padding lines that were needed for 19.12.
|
|
875 Compatibility with older XEmacs versions is hereby disavowed.
|
|
876 - xclock frame name hack is gone.
|
|
877
|
136
|
878 Wed Apr 23 10:56:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
879
|
|
880 * prim/files.el (hack-local-variables-prop-line): Mistakenly
|
|
881 returned t when enable-local-variables was nil.
|
|
882
|
|
883 * psgml/psgml-charent.el (sgml-display-char-list-filename): Move
|
|
884 iso88591.map to a proper location.
|
|
885
|
|
886 * prim/sound.el (load-sound-file): Make sure sound files are read
|
|
887 as binary files.
|
|
888
|
|
889 Tue Apr 22 02:05:38 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
890
|
|
891 * packages/vc.el (vc-directory): Set text properties.
|
|
892
|
|
893 * psgml/psgml-xemacs.el (sgml-xemacs-get-popup-value): Allow for
|
|
894 interactive commands.
|
|
895
|
|
896 Mon Apr 21 15:15:12 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
897
|
|
898 * prim/minibuf.el (input-error): New error type.
|
|
899 (read-from-minibuffer): Use it.
|
|
900
|
|
901 * comint/comint.el (comint-exec-hook): Do not Customize due to
|
|
902 interactions with setting language environment in MULE.
|
|
903
|
|
904 Sun Apr 20 09:36:19 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
905
|
|
906 * packages/info.el (Info-footnote-tag): Changing the footnote tag
|
|
907 from the default "Note" is broken.
|
|
908
|
|
909 Tue Apr 22 07:01:20 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
910
|
|
911 * prim/keydefs.el (global-map): Bind it to `C-z'.
|
|
912
|
|
913 * prim/frame.el (suspend-emacs-or-iconify-frame): New function.
|
|
914
|
134
|
915 Fri Apr 18 16:45:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
916
|
|
917 * utils/skeleton.el (skeleton-pair-insert-maybe): Guard test with
|
|
918 existence check on mark-active too.
|
|
919 (skeleton-proxy): Ditto.
|
|
920 (skeleton-proxy-new): Ditto.
|
|
921
|
|
922 Fri Apr 18 09:26:24 1997 Dave Gillespie <daveg@synaptics.com>
|
|
923
|
|
924 * cl/cl-macs.el (values): New setf-method.
|
|
925
|
|
926 Thu Apr 17 21:29:57 1997 Bob Weiner <weiner@infodock.com>
|
|
927
|
|
928 * packages/avoid.el (mouse-avoidance-kbd-command): Correct
|
|
929 detection of keypress.
|
|
930
|
|
931 Thu Apr 17 21:20:04 1997 Michael McNamara <mac@silicon-sorcery.com>
|
|
932
|
|
933 * modes/verilog-mode.el: Changes to 2.25
|
|
934 1) Autoindent a new declaration according to the previous
|
|
935 declaration, if any. Only use the previous one, don't try to re
|
|
936 line things up.
|
|
937 2) Include "Customize Verilog-Mode" in the Verilog menu bar. Make it
|
|
938 safe to do so, even if the underlying emacs does not yet support
|
|
939 custom.
|
|
940 3) Include keybinding C-c C-b for reporting bugs.
|
|
941 4) Include keybinding C-c i for reindenting declarations.
|
|
942
|
|
943 * modes/verilog-mode.el: Changes to 2.24
|
|
944 Cleaned up menubar items; added submit bug report there, for
|
|
945 example.
|
|
946
|
|
947 * modes/verilog-mode.el: Changes to 2.23
|
|
948 1) Support custom (XEmacs) or defvar method of customization.
|
|
949 2) fix verilog-pretty declarations
|
|
950 3) add support so folks turning up the complexity of commenting don't
|
|
951 get errors (they don't get any more complexity either)
|
|
952
|
|
953 * modes/verilog-mode.el: Changes to 2.22
|
|
954 1) Moved installation hints to the web page.
|
|
955 2) Added support for XEmacs's custom variable setting package.
|
|
956 3) Added variables to separatly control indentation of
|
|
957 module level items (always, initial. etc)
|
|
958 declarations
|
|
959 behavorial (the begin in the task & function declaration
|
|
960 4) Attempted to shorten comments and lisp so that the %@* NT
|
|
961 mailers won't turn long comments into extra code.
|
|
962 5) Used make-regexp to optimize many regular expressions so that they
|
|
963 are no longer backtrack.
|
|
964 6) fixed bugs
|
|
965 a) a newline on a blank line no longer generates two new lines.
|
|
966 b) a semicolon on a comment no longer auto indents
|
|
967 c) lines like ''else if (a) begin''
|
|
968 no longer confuse auto commenter
|
|
969 d) a number of other bugs which fail to come to mind...
|
|
970 7) Added support for menu pulldowns on FSF and XEmacs
|
|
971 8) Added support for XEmacs v20
|
|
972 9) Changed verilog-comment-region to insert comments that Verilog-XL
|
|
973 doesn't b*tch about.
|
|
974 10) Eliminated auto lineup of declarations upon typing newline of
|
|
975 semicolon. (Cheers all around) Now instead there is a command, and
|
|
976 also a menu pulldown, which lines up indentations around point.
|
|
977 11) Added verilog-submit-bug-report
|
|
978
|
126
|
979 Mon Apr 14 13:06:10 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
980
|
|
981 * utils/autoload.el (generate-file-autoloads-1): Turn off local
|
|
982 variable processing.
|
|
983
|
|
984 * prim/files.el (hack-local-variables-prop-line): Respect setting
|
|
985 of enable-local-variables.
|
|
986
|
|
987 * vm/vm-startup.el (vm-session-initialization): Remove for
|
|
988 production version.
|
|
989
|
|
990 * utils/smtpmail.el (smtpmail-send-it): Forgot quote.
|
|
991 (smtpmail-deduce-address-list): case-fold-search mistakenly set
|
|
992 before buffer change.
|
|
993
|
|
994 Sun Apr 13 14:49:34 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
995
|
|
996 * x11/x-menubar.el (default-menubar): Added `send-pr' to Help
|
|
997 menu.
|
|
998
|
|
999 * modes/make-mode.el (makefile-font-lock-keywords): Correct old,
|
|
1000 restored :-( 19.14 makefile-space-face lossage.
|
|
1001
|
|
1002 Sat Apr 12 23:20:31 1997 David Moore <dmoore@ucsd.edu>
|
|
1003
|
|
1004 * packages/font-lock.el (c-font-lock-keywords-1): Performance
|
|
1005 tuned regexps.
|
|
1006
|
|
1007 Sat Apr 12 21:32:37 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1008
|
|
1009 * prim/about.el (about-xemacs): Update printed release date.
|
|
1010
|
|
1011 * calendar/appt.el (install-display-time-hook): Friends don't let
|
|
1012 Friends quote lambda functions.
|
|
1013
|
124
|
1014 Fri Apr 11 11:50:14 1997 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
|
1015
|
|
1016 * tm/tm-vm.el: tm-vm/use-original-url-button:
|
|
1017 - Default is now t (principle of least surprise).
|
|
1018 (tm-vm/build-preview-buffer):
|
|
1019 - Bind vm-message-pointer in Preview-buffer.
|
|
1020 - X-Face was not displayed for a certain set of enabling variables.
|
|
1021 Calls to (vm-xemacs-p) were removed.
|
|
1022
|
|
1023 Sat Apr 12 05:27:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1024
|
|
1025 * modes/list-mode.el (list-mode-item-mouse-selected): Sometimes
|
|
1026 event-closest-point returns nil.
|
|
1027
|
|
1028 * comint/telnet.el (telnet-check-software-type-initialize):
|
|
1029 Restore 19.14 initialization of telnet-prompt-pattern for Unix.
|
|
1030 (rsh): Allow a way to get back old password-less behavior.
|
|
1031
|
|
1032 * edebug/edebug.el (edebug-read-and-maybe-wrap-form): Protect
|
|
1033 against pathological recursive calls.
|
|
1034
|
|
1035 * prim/loadup.el: add cus-start as dumped package.
|
|
1036
|
|
1037 * packages/vc.el (vc-directory): Dired requires a list not a
|
|
1038 string of space separated names.
|
|
1039
|
|
1040 * utils/live-icon.el (live-icon-colour-name-from-face): `face' may
|
|
1041 be a list of faces since it is generated by `extent-face'.
|
|
1042
|
|
1043 Fri Apr 11 21:12:57 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1044
|
|
1045 * packages/ispell.el: Don't attempt creation of the menubar unless
|
|
1046 XEmacs has been compiled with menubars.
|
|
1047
|
|
1048 * prim/simple.el (yank-pop): mark-marker needs optional force
|
|
1049 parameter to activate the region (suggested by Jamie Zawinski).
|
|
1050
|
|
1051 Fri Apr 11 17:47:26 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1052
|
|
1053 * packages/apropos.el (apropos): Add support for faces, widgets,
|
|
1054 and user options.
|
|
1055 (apropos-print): Ditto.
|
|
1056
|
|
1057 Fri Apr 11 01:23:45 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1058
|
|
1059 * prim/loadup.el (running-xemacs): Declare. This variable is the
|
|
1060 new canonical way of determining whether you're running under
|
|
1061 XEmacs.
|
|
1062
|
122
|
1063 Thu Apr 10 13:23:14 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1064
|
124
|
1065 * packages/font-lock.el (font-lock-apply-highlight): Remove
|
|
1066 support for back to back font hack (and restore correct
|
|
1067 fontification of `int a, b, c;'). Patch from Anders Lindgren.
|
|
1068
|
122
|
1069 * prim/about.el (about-xemacs-xref): Forgot to link David Moore's
|
|
1070 picture (oops).
|
|
1071
|
|
1072 Thu Apr 10 12:30:29 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1073
|
|
1074 * efs/dired-faces.el (dired): Move to environment group.
|
|
1075
|
120
|
1076 Wed Apr 9 19:45:46 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1077
|
122
|
1078 * x11/x-menubar.el (default-menubar): Inline definition of
|
|
1079 customize menu.
|
120
|
1080
|
|
1081 Wed Apr 9 10:45:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1082
|
|
1083 * prim/about.el (about-xemacs-xref): Add Jan Vroonhof to list of
|
|
1084 contributors.
|
|
1085 (about-xemacs-xref): Add MORIOKA Tomohiko's bio.
|
|
1086 (about-xemacs-xref): Add Per Abrahamsen.
|
|
1087
|
|
1088 Tue Apr 8 12:57:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1089
|
|
1090 * modes/lisp-mode.el (eval-defun): Evaluate defcustom in defconst
|
|
1091 style instead of defvar style (patch derived from Emacs 19.35/Lars
|
|
1092 Magne Ingebrigtsen).
|
|
1093
|
|
1094 Mon Apr 7 16:38:43 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1095
|
|
1096 * prim/frame.el (temp-buffer-shrink-to-fit): Default to nil since
|
|
1097 this feature has gotten broken.
|
|
1098
|
|
1099 Sun Apr 6 06:56:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1100
|
|
1101 * modes/outl-mouse.el (outline-down-arrow-mask): Set up arrow
|
|
1102 glyphs to display on when no X11 support is available.
|
|
1103
|
|
1104 * modes/outline.el (outline-install-menubar): short circuit if no
|
|
1105 menubars are available.
|
|
1106
|
|
1107 * x11/x-menubar.el (default-menubar): Use xmine not mine.
|
|
1108
|
|
1109 * prim/help.el (describe-variable): Some doc strings weren't being
|
|
1110 terminated with a newline.
|
|
1111
|
|
1112 Sat Apr 5 20:20:00 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1113
|
|
1114 * prim/about.el (about-xemacs-xref): Correct Jareth Hein's links.
|
|
1115
|
|
1116 Sat Apr 5 13:18:05 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
1117
|
|
1118 * packages/etags.el (tags-query-replace): Fixed DELIMITED argument
|
|
1119 bug. `with-caps-disable-folding' moved to isearch-mode.el.
|
|
1120
|
|
1121 * packages/info.el (Info-search): Use `with-caps-disable-folding'.
|
|
1122
|
118
|
1123 Sat Apr 5 09:32:43 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1124
|
|
1125 * utils/finder-inf.el: Regenerated.
|
|
1126
|
|
1127 * utils/finder.el (finder-known-keywords): Add mule keyword.
|
|
1128
|
|
1129 Tue Apr 1 14:08:04 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1130
|
|
1131 * prim/winnt.el: New file. Derived from Emacs 19.34, adapted by
|
|
1132 Marc Paquette.
|
|
1133
|
|
1134 * prim/faces.el (set-face-stipple): Allow usage of a pixmap
|
|
1135 (suggested by Per Abrahamsen).
|
|
1136
|
|
1137 * mule/canna.el (running-xemacs): Move to the top.
|
|
1138
|
|
1139 * prim/cmdloop.el (y-or-n-p-minibuf): Add protection in case user
|
|
1140 hits something that can't be bound to a key.
|
|
1141
|
|
1142 Tue Apr 1 11:25:33 1997 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
1143
|
|
1144 * bytecomp/bytecomp.el (char-after): Correct coding of calling
|
|
1145 sequence.
|
|
1146
|
|
1147 Mon Mar 31 21:36:47 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1148
|
|
1149 * prim/faces.el (set-face-stipple): New function.
|
|
1150
|
|
1151 Sat Mar 29 14:52:02 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1152
|
|
1153 * gnats/send-pr.el (send-pr:submit-pr): Pass send-pr:datadir in
|
|
1154 the environment to send-pr.
|
|
1155 (send-pr::insert-template): Ditto.
|
|
1156 (send-pr:default-site): Default submission address is at xemacs.org.
|
|
1157
|
116
|
1158 Fri Jul 19 12:01:51 1996 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
1159
|
|
1160 * packages/info.el (Info-elisp-ref): Look first in lispref, then
|
|
1161 elisp.
|
|
1162
|
|
1163 * packages/func-menu.el (fume-function-name-regexp-bibtex): `,'
|
|
1164 isn't allowed.
|
|
1165
|
|
1166 * packages/etags.el (list-tags): Interactive argument should be an
|
|
1167 existing file name.
|
|
1168
|
|
1169 Wed Mar 26 22:33:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1170
|
|
1171 * Remove ns lisp directory.
|
|
1172 * Remove vms lisp directory.
|
|
1173
|
|
1174 Tue Mar 25 12:22:57 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1175
|
|
1176 * prim/files.el (file-remote-p): Update doc string.
|
|
1177
|
|
1178 * packages/terminal.el (te-stty-string): Fix definition for Linux.
|
|
1179
|
|
1180 Mon Mar 24 23:43:53 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1181
|
|
1182 * prim/files.el (file-remote-p): Correct documentation and allow
|
|
1183 for `allow-remote-paths' to control loading of efs.
|
|
1184
|
|
1185 Sun Mar 23 16:58:08 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
1186
|
|
1187 * packages/etags.el (with-caps-disable-folding): New macro.
|
|
1188 (find-tag-internal): Use it.
|
|
1189 (tags-search): Use it.
|
|
1190 (tags-query-replace): Use it. Case bug corrected.
|
|
1191
|
|
1192 Mon Mar 24 00:47:38 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1193
|
|
1194 * x11/x-menubar.el (popup-mode-menu): Change guard when stripping
|
|
1195 keywords to be more robust.
|
|
1196
|
|
1197 Sun Mar 23 00:26:53 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1198
|
|
1199 * prim/startup.el (splash-hack-version-string): Correct for case
|
|
1200 of hosts with '-' in the names.
|
|
1201
|
|
1202 Sat Mar 22 14:25:47 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
1203
|
|
1204 * modes/sendmail.el (user-mail-address): Require cus-edit.
|
|
1205 Fix when scope.
|
|
1206
|
|
1207 Sat Mar 22 14:25:47 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
1208
|
|
1209 * calendar/diary-lib.el (diary-countdown): New function.
|
|
1210 (fancy-diary-display): Use modeline-buffer-identification.
|
|
1211
|
|
1212 * calendar/appt.el (appt-diary-entries): Do not display diary.
|
|
1213 (appt-check): Display diary buffer at midnight.
|
|
1214
|
114
|
1215 Fri Mar 21 19:16:46 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1216
|
|
1217 * mule/mule-coding.el (enable-multibyte-characters): MULE
|
116
|
1218 compatible variable.
|
114
|
1219
|
|
1220 Thu Mar 20 13:28:17 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1221
|
|
1222 * bytecomp/bytecomp.el (byte-compile-output-docform): Ebola fix.
|
|
1223 (byte-compile-lambda): Ebola fix.
|
|
1224
|
|
1225 * prim/obsolete.el (following-char): Make this turkey obsolete.
|
|
1226 (preceding-char): Ditto. (Suggested by Richard Mlynarik).
|
|
1227
|
|
1228 Wed Mar 19 10:12:09 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1229
|
|
1230 * modes/sendmail.el (sendmail-send-it): Use function for
|
|
1231 user-mail-address.
|
|
1232 (user-mail-address): Autoload.
|
|
1233
|
|
1234 * pcl-cvs/pcl-cvs.el (cvs-changelog-ours-p): Use function for
|
|
1235 user-mail-address.
|
|
1236
|
|
1237 * prim/startup.el (load-init-file): Only set user-mail-address if
|
|
1238 non-interactive.
|
|
1239
|
|
1240 * utils/smtpmail.el (smtpmail-send-it): Use function for
|
|
1241 user-mail-address.
|
|
1242 (smtpmail-via-smtp): Ditto.
|
|
1243
|
|
1244 * packages/add-log.el (add-log-mailing-address): Use new function
|
|
1245 to obtaion email address.
|
|
1246 (add-change-log-entry): Ditto.
|
|
1247
|
|
1248 * prim/device.el (device-pixel-depth): New alias for
|
|
1249 `device-bitplanes'.
|
|
1250
|
|
1251 * comint/comint-xemacs.el (comint): Fix typo in defgroup.
|
|
1252
|
|
1253 Tue Mar 18 11:16:28 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1254
|
|
1255 * prim/loadup.el: ls-lisp doesn't exist now.
|
|
1256
|
|
1257 * comint/comint-xemacs.el (comint): Touch up fixes from Per
|
|
1258 Abrahamsen.
|
|
1259
|
|
1260 * prim/glyphs.el (subwindow-image-instance-p): Change doc string
|
|
1261 to reflect unimplemented status.
|
|
1262
|
112
|
1263 Mon Mar 17 15:34:06 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1264
|
|
1265 * comint/comint.el (comint-input-setup): Require comint-xemacs.
|
|
1266
|
|
1267 * utils/autoload.el (autoload-snarf-defcustom): Don't snarf from
|
|
1268 auto-autoloads.el.
|
|
1269
|
|
1270 * comint/comint-xemacs.el: New file. Contains face declarations
|
|
1271 for comint.
|
|
1272
|
|
1273 * comint/comint.el: Remove inline defface.
|
|
1274
|
110
|
1275 Sat Mar 15 15:14:06 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1276
|
|
1277 * prim/loadup.el: Add prim/auto-customize.elc to dumped files.
|
|
1278
|
|
1279 * utils/autoload.el (generated-custom-file): New variable.
|
|
1280 (autoload-snarf-defcustom): New function. Grab Customization as
|
|
1281 we look for autoload cookies. (based on code by Per Abrahamsen).
|
|
1282 (update-file-autoloads): Use it.
|
|
1283 (autoload-save-customization): New function (based on code by Per
|
|
1284 Abrahamsen).
|
|
1285 (batch-update-autoloads): Use it.
|
|
1286
|
|
1287 Fri Mar 14 19:59:36 1997 Bob Weiner <weiner@infodock.com>
|
|
1288
|
|
1289 * packages/jka-compr.el (jka-compr-installed-p): Simplify.
|
|
1290
|
|
1291 Fri Mar 14 17:24:30 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1292
|
|
1293 * modes/sendmail.el: Correct vm macro hack.
|
|
1294 (query-user-mail-address): New customizable variable.
|
|
1295 (user-mail-address): New function, use it. (Courtesy of Per
|
|
1296 Abrahamsen <abraham@dina.kvl.dk>).
|
|
1297
|
|
1298 Thu Mar 13 18:49:50 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1299
|
|
1300 * x11/x-menubar.el (popup-mode-menu): Do something more correct
|
|
1301 when combining a global popup menu and a local mode menu.
|
|
1302
|
|
1303 Thu Mar 13 08:36:35 1997 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
1304
|
|
1305 * packages/crypt.el (crypt-unix-to-dos-region): Correct DOC string.
|
|
1306
|
|
1307 Wed Mar 12 13:46:21 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1308
|
|
1309 * prim/obsolete.el (char=): Make alias for common lisp
|
|
1310 compatibility.
|
|
1311
|
|
1312 Mon Mar 10 09:44:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1313
|
|
1314 * prim/simple.el (set-fill-column): Clean up docstring.
|
|
1315
|
|
1316 * x11/x-menubar.el (save-options-non-customized-face-list): Allow
|
|
1317 save-options to save faces declared with defface macro.
|
|
1318
|
|
1319 * packages/vc.el: diff-switches is autoloaded again in diff.el.
|
|
1320
|
|
1321 * packages/diff.el (diff-switches): Default to "-c".
|
|
1322
|
|
1323 Sun Mar 9 18:44:59 1997 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
1324
|
|
1325 * prim/help.el (describe-function-1): Add missing stream arguments
|
|
1326 to terpri and princ.
|
|
1327
|
|
1328 Sun Mar 9 15:38:29 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1329
|
|
1330 * prim/modeline.el (modeline-minor-mode-menu): Evaluate minor
|
|
1331 modes in context of correct buffer.
|
|
1332
|
|
1333 * prim/help.el (locate-library): Synched with Emacs 19.35.
|
|
1334
|
|
1335 * packages/icomplete.el (icomplete-get-keys): Make it work.
|
|
1336
|
|
1337 * prim/about.el: Add Jens Lautenbacher's picture.
|
|
1338
|
|
1339 Sun Mar 9 12:38:53 1997 Noah Friedman <friedman@prep.ai.mit.edu>
|
|
1340
|
|
1341 * utils/eldoc.el (eldoc-pre-command-refresh-echo-area): Use
|
|
1342 eldoc-display-message-p, not eldoc-display-message-no-interference-p.
|
|
1343
|
108
|
1344 Sat Mar 8 11:20:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1345
|
110
|
1346 * prim/startup.el (startup-splash-frame-body): More text tweaking.
|
|
1347
|
108
|
1348 * x11/x-faces.el (*try-oblique-before-italic-fonts*): New user
|
|
1349 variable. Allow trying oblique fonts ahead of italic fonts (from
|
|
1350 Raymond Toy).
|
|
1351 (x-make-font-italic): Use it.
|
|
1352
|
|
1353 * prim/obsolete.el (window-system): Make it compatible not
|
|
1354 obsolete.
|
|
1355
|
|
1356 Fri Oct 11 14:21:05 1996 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
1357
|
110
|
1358 * packages/hyper-apropos.el (hypropos-get-doc): Put font names etc in
|
108
|
1359 parentheses if instantiation uses fallback.
|
|
1360 (hypropos-face-history): New variable.
|
|
1361 (hyper-describe-face): New function.
|
|
1362 (hyper-where-is): New command.
|
|
1363 (hypropos-read-function-symbol): New function.
|
|
1364 (hyper-describe-key): New command.
|
|
1365 (hyper-describe-key-briefly): New command.
|
|
1366 (hypropos-read-variable-symbol): New function.
|
|
1367 (hyper-set-variable): New command.
|
|
1368 (hypropos-set-variable): Changed to work with buffer-locals.
|
|
1369
|
|
1370 Fri Jul 19 12:01:51 1996 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
1371
|
110
|
1372 * packages/hyper-apropos.el: Massive changes--the original knew nothing
|
108
|
1373 about buffer-locals and local-bindings.
|
|
1374 (hypropos-shrink-window): New user option.
|
|
1375 (hypropos-ref-buffer): New variable.
|
|
1376 (hypropos-regexp-history): New variable.
|
|
1377 (hyper-apropos): Better interactive version.
|
|
1378 (hypropos-grok-variables): Omit OBSOLETE stuff.
|
|
1379 (hyper-describe-variable): Additional ARG, better interactive
|
|
1380 version.
|
|
1381 (hyper-describe-function): Ditto.
|
|
1382 (hypropos-last-help): Without prefix arg, just display buffer.
|
|
1383 (hypropos-insert-face): New function.
|
|
1384 (hypropos-insert-keybinding): New function.
|
|
1385 (hypropos-get-doc): Additional ARG, display documentation for
|
|
1386 faces, complete change.
|
|
1387 (hypropos-this-symbol): Using better regexp.
|
|
1388
|
|
1389 Fri Mar 7 10:44:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1390
|
|
1391 * x11/x-menubar.el (default-menubar): Reorganize again undoing
|
|
1392 previous change. Customize submenu moved to top of options menu.
|
|
1393 Edit faces restored to edit-faces and renamed to Browse faces.
|
|
1394
|
|
1395 Thu Mar 6 08:43:27 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1396
|
|
1397 * x11/x-menubar.el (options-menu): New variable.
|
|
1398 (default-menubar): Use it.
|
|
1399
|
|
1400 * prim/about.el (view-less): Explicit require.
|
|
1401
|
|
1402 Wed Mar 5 18:03:02 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1403
|
|
1404 * prim/cleantree.el: New file based on suggestion by David Moore,
|
|
1405 and derived from Gnus nnml code.
|
|
1406
|
|
1407 Tue Mar 4 01:19:37 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1408
|
|
1409 * edebug/edebug.el (edebug-compute-previous-result): Don't treat
|
|
1410 numbers as chars.
|
|
1411
|
|
1412 Wed Mar 5 10:11:55 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1413
|
|
1414 * prim/startup.el (splash-hack-version-string): New function to
|
|
1415 narrow the output of (emacs-version) for the splash screen.
|
|
1416 (splash-frame-present): Use it.
|
|
1417
|
|
1418 Tue Mar 4 19:52:10 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1419
|
|
1420 * packages/supercite.el (sc-name-filter-alist): (Idea from Bob
|
|
1421 Weiner). Update to handle names like Michael Sperber
|
|
1422 [Mr. Preprocessor].
|
|
1423
|
|
1424 Mon Mar 3 17:50:04 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1425
|
|
1426 * prim/faces.el (init-face-from-resources): New variable.
|
|
1427 (init-face-from-resources): Use it.
|
|
1428 (init-device-faces): Use it.
|
|
1429 (init-frame-faces): Use it.
|
|
1430 (make-empty-face): New function.
|
|
1431
|
|
1432 * x11/x-faces.el (x-init-face-from-resources): Made second
|
|
1433 argument optional, and added a third argument.
|
|
1434 (make-face-x-resource-internal): New alias.
|
|
1435
|
104
|
1436 Mon Mar 3 14:45:16 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1437
|
106
|
1438 * prim/loadup.el: Remove custom.elc.
|
|
1439
|
104
|
1440 * prim/simple.el (newline): Attempt to not add newline to a
|
|
1441 previous end-open extent.
|
|
1442
|
|
1443 Sun Mar 2 10:10:31 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1444
|
|
1445 * hm--html-menus/tmpl-minor-mode.el (tmpl-sign): Remove nul byte.
|
|
1446
|
|
1447 * site-load.el: Move site-packages to the top level.
|
|
1448
|
|
1449 Sun Mar 2 01:37:04 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1450
|
|
1451 * utils/mail-extr.el (all-top-level-domains): Added "hr" domain.
|
|
1452
|
|
1453 * packages/ps-print.el (ps-print-color-p): Default to nil.
|
|
1454
|
|
1455 * x11/x-menubar.el (default-menubar): Changed menubar entry for
|
|
1456 color printing.
|
|
1457
|
|
1458 * prim/faces.el (init-other-random-faces): Use gray65 for
|
|
1459 zmacs-region and primary-selection background.
|
|
1460
|
|
1461 * x11/x-faces.el (x-init-global-faces): New default background
|
|
1462 gray80.
|
|
1463
|
|
1464 Sat Mar 1 14:38:14 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1465
|
|
1466 * packages/diff.el: (diff): Autoload.
|
|
1467 (diff-backup): Autoload.
|
|
1468 (diff-switches): Autoload.
|
|
1469
|
|
1470 Sat Mar 1 01:09:08 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1471
|
|
1472 * packages/tar-mode.el (tar-mode-map): Removed extraneous C-c
|
|
1473 binding of tar-copy.
|
|
1474
|
|
1475 * prim/keydefs.el: Don't disable upcase-region and
|
|
1476 downcase-region.
|
|
1477
|
|
1478 Fri Feb 28 11:22:29 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1479
|
|
1480 * prim/obsolete.el (char-to-int): Define as alias to `char-int'.
|
|
1481
|
|
1482 * prim/help.el (describe-function-1): Show annotation contents if
|
|
1483 they exist.
|
|
1484
|
|
1485 * packages/man.el (Manual-mode): Don't turn off scrollbars if
|
|
1486 XEmacs doesn't have them to begin with.
|
|
1487
|
|
1488 * prim/keydefs.el: Don't disable eval-expression by default now
|
|
1489 that it is harder to type.
|
|
1490
|
|
1491 Thu Feb 27 13:06:41 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1492
|
|
1493 * prim/subr.el (with-string-as-buffer-contents): Moved from
|
|
1494 mule/mule-coding.el.
|
|
1495
|
|
1496 * mule/mule-coding.el: Remove with-string-as-buffer-contents.
|
|
1497
|
|
1498 * prim/format.el (format-insert-file): Correct wrong order of args
|
|
1499 passed to format-decode.
|
|
1500
|
|
1501 * prim/startup.el (load-user-init-file): Allow XEmacs to read a
|
|
1502 bytecompiled .emacs if it exists.
|
|
1503
|
|
1504 Thu Feb 27 17:41:57 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1505
|
|
1506 * subr.el (eval-after-load): Enable.
|
|
1507 (eval-next-after-load): Ditto.
|
|
1508
|
|
1509 Thu Feb 27 10:59:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1510
|
|
1511 * prim/subr.el (with-temp-buffer): New function from Emacs 19.35,
|
|
1512 courtesy of Erik Naggum <erik@naggum.no>.
|
|
1513
|
|
1514 Fri Feb 28 22:17:03 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1515
|
|
1516 * prim/isearch-mode.el: Added "_" to the `interactive' forms of
|
|
1517 most functions.
|
|
1518 (isearch-mode-map): Define M-y.
|
|
1519 (isearch-yank-kill): New function.
|
|
1520
|
|
1521 * prim/keydefs.el: Don't bind `C-x C-n' to `set-goal-column';
|
|
1522 don't disable `set-goal-column'.
|
|
1523
|
|
1524 * mule/mule-init.el (ctl-x-map): Use `C-x C-n' as mule-prefix,
|
|
1525 instead of `C-x C-k'.
|
|
1526
|
102
|
1527 Wed Feb 26 18:09:56 1997 Andreas Jaeger <aj@arthur.pfalz.de>
|
|
1528
|
|
1529 * x11/x-menubar.el (default-menubar): `FAQ' should be `FAQ
|
|
1530 (local)' in Help menu.
|
|
1531
|
|
1532 Mon Feb 24 18:33:38 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
1533
|
|
1534 * mule/mule-debug.el (describe-coding-system): Ported from
|
|
1535 Mule to XEmacs.
|
|
1536
|
|
1537 * mule/mule-x-init.el (x-use-halfwidth-roman-font): New
|
|
1538 function:
|
|
1539 "Maybe set charset registry of the 'ascii charset to ROMAN-REGISTRY.
|
|
1540
|
|
1541 Do this only if:
|
|
1542 - the current display is an X device
|
|
1543 - the displayed width of FULLWIDTH-CHARSET is twice the displayed
|
|
1544 width of the 'ascii charset, but only when using ROMAN-REGISTRY.
|
|
1545
|
|
1546 Traditionally, Asian characters have been displayed so that they
|
|
1547 occupy exactly twice the screen space of ASCII (`halfwidth')
|
|
1548 characters. On many systems, e.g. Sun CDE systems, this can only be
|
|
1549 achieved by using a national variant roman font to display ASCII."
|
|
1550
|
100
|
1551 Sun Feb 23 12:56:28 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1552
|
|
1553 * edebug/edebug.el: Synch up with Emacs 19.34.
|
|
1554
|
|
1555 * prim/itimer-autosave.el (auto-save-timeout): Increase to 960.
|
|
1556
|
|
1557 Sat Feb 22 17:11:31 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1558
|
|
1559 * prim/loadup.el: Dump new file itimer-autosave.el.
|
|
1560
|
|
1561 Sat Feb 22 17:06:32 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1562
|
|
1563 * prim/itimer.el: Cleanup, removal of autosave cruft.
|
|
1564
|
|
1565 Fri Feb 21 09:41:44 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1566
|
|
1567 * prim/simple.el (line-move-ignore-invisible): Reverse previous
|
|
1568 change to make this default to nil again.
|
|
1569
|
|
1570 Thu Feb 20 14:30:50 1997 Jamie Zawinski <jwz@netscape.com>
|
|
1571
|
|
1572 * prim/files.el (hack-local-variables-prop-line): New version.
|
|
1573
|
|
1574 Thu Feb 20 11:14:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1575
|
|
1576 * prim/files.el: Delete definition of dired-kept-versions.
|
|
1577
|
|
1578 * prim/about.el (about-xemacs-xref): Added Kyle's picture. :-)
|
|
1579
|
|
1580 Wed Feb 19 15:47:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1581
|
|
1582 * packages/vc.el (diff-switches): Restore since this global
|
|
1583 variable went away with the passing of ange-ftp.
|
|
1584
|
|
1585 * utils/autoload.el (generate-file-autoloads-1): Don't let
|
|
1586 find-file-hooks be run.
|
|
1587 (update-file-autoloads): Ditto.
|
|
1588 (update-autoloads-from-directory): Ditto.
|
|
1589
|
|
1590 * x11/x-menubar.el (default-menubar): Correct unguarded reference
|
|
1591 to fast-lock-mode variable.
|
|
1592
|
|
1593 Wed Feb 19 08:04:02 1997 Noah Friedman <friedman@prep.ai.mit.edu>
|
|
1594
|
110
|
1595 * utils/eldoc.el (eldoc-message-commands): Doc fixes.
|
100
|
1596 (eldoc-message): Make function, not macro.
|
|
1597
|
110
|
1598 * utils/eldoc.el (eldoc-last-message): New internal variable.
|
100
|
1599 (eldoc-mode): Initialize it to nil.
|
|
1600 (eldoc-message): Use it.
|
|
1601 (eldoc-print-current-symbol-info): Use it.
|
|
1602
|
110
|
1603 * utils/eldoc.el (eldoc-pre-command-refresh-echo-area): New function.
|
100
|
1604 (eldoc-mode): Put it on pre-command-hook if in XEmacs or using
|
|
1605 idle timers in Emacs.
|
|
1606
|
110
|
1607 * utils/eldoc.el (eldoc-message-commands-table-size): New constant.
|
100
|
1608 (eldoc-add-command): Use it to initialize eldoc-message-commands.
|
|
1609
|
110
|
1610 * utils/eldoc.el (eldoc-display-message-no-interference-p): New
|
|
1611 function.
|
100
|
1612 (eldoc-display-message-p): Use it.
|
|
1613
|
110
|
1614 * utils/eldoc.el (eldoc-print-fnsym-args, eldoc-print-var-docstring):
|
100
|
1615 Arg sym no longer optional.
|
|
1616 Do not initialize arg if nil.
|
|
1617
|
110
|
1618 * utils/eldoc.el (eldoc-forward-sexp-safe): Function deleted.
|
100
|
1619 (eldoc-beginning-of-sexp): New function.
|
|
1620 (eldoc-fnsym-in-current-sexp): Use eldoc-beginning-of-sexp.
|
|
1621 Use eldoc-current-symbol to get symbol at point.
|
|
1622
|
110
|
1623 * utils/eldoc.el
|
|
1624 (eldoc-function-argstring-from-docstring-method-table): Forge
|
|
1625 docstrings for `and', `or', `list', `+', and `-'.
|
100
|
1626
|
110
|
1627 * utils/eldoc.el (eldoc-add-command-completions): New function.
|
100
|
1628 (eldoc-add-command): Take list of args.
|
|
1629 No longer interactive.
|
|
1630 (eldoc-remove-command-completions): New function.
|
|
1631 (eldoc-remove-command): Take list of args.
|
|
1632 No longer interactive.
|
|
1633
|
110
|
1634 * utils/eldoc.el: Initialize eldoc-message-commands using
|
100
|
1635 eldoc-add-command-completions.
|
|
1636
|
110
|
1637 * utils/eldoc.el (eldoc-display-message-p): New function.
|
100
|
1638 Return nil if cursor-in-echo-area, or using idle timers and a
|
|
1639 command is still active.
|
|
1640 (eldoc-print-current-symbol-info): Use eldoc-display-message-p.
|
|
1641
|
|
1642 Tue Feb 18 14:20:01 1997 David Byers <davby@ida.liu.se>
|
|
1643
|
|
1644 * packages/paren.el (paren-highlight): Minor typo correction.
|
|
1645
|
|
1646 Tue Feb 18 13:05:33 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1647
|
|
1648 * prim/loadup.el: Dump new file custom-xmas.
|
|
1649
|
|
1650 Mon Feb 17 21:01:38 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1651
|
|
1652 * prim/help.el (function-compatible-p): New function.
|
|
1653 (function-compatibility-doc): New function.
|
|
1654 (describe-function-1): Use them.
|
|
1655 (variable-compatible-p): New function.
|
|
1656 (variable-compatibility-doc): New function.
|
|
1657 (describe-variable): Use them.
|
|
1658
|
|
1659 Mon Feb 17 19:12:55 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1660
|
|
1661 * prim/obsolete.el (x-color-values): Added for Emacs
|
|
1662 compatibility.
|
|
1663
|
|
1664 Mon Feb 17 18:11:24 1997 Michael Kifer <kifer@CS.SunySB.EDU>
|
|
1665
|
|
1666 * prim/files.el (file-remote-p): Force load of EFS if not already
|
|
1667 loaded.
|
|
1668
|
|
1669 Mon Feb 17 17:45:23 1997 Bob Weiner <weiner@infodock.com>
|
|
1670
|
|
1671 * modes/lisp-mode.el (eval-last-sexp): Do something special if
|
|
1672 evaluating (interactive ...).
|
|
1673
|
|
1674 Sun Feb 16 21:49:18 1997 Bjorn Victor <Bjorn.Victor@DoCS.UU.SE>
|
|
1675
|
|
1676 * utils/facemenu.el (facemenu-adjust-face-sizes): Strip size when
|
|
1677 face is neither nil nor cons.
|
|
1678
|
|
1679 Sun Feb 16 14:26:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1680
|
|
1681 * prim/loadup.el: Try not dumping font.elc.
|
|
1682
|
|
1683 * prim/obsolete.el (display-column-mode): Remove column.el and
|
|
1684 leave a forwarding address.
|
|
1685
|
|
1686 Sat Feb 15 23:21:11 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1687
|
|
1688 * prim/minibuf.el (read-from-minibuffer): Don't put evaluated
|
|
1689 expressions in the minibuffer history list.
|
|
1690
|
|
1691 Sat Feb 15 22:57:11 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1692
|
|
1693 * packages/scroll-in-place.el (scroll-signal-boundary-error):
|
|
1694 Allow user to suspend error signals.
|
|
1695
|
|
1696 Sat Feb 15 21:43:49 1997 John Turner <turner@branagh.ta52.lanl.gov>
|
|
1697
|
|
1698 * packages/column.el (current-line): Correct defaults for starting
|
|
1699 at 1, remove an obsolete variable.
|
|
1700
|
|
1701 Sat Feb 15 20:17:46 1997 Hal Peterson <hrp@netstar.com>
|
|
1702
|
|
1703 * packages/vc.el (vc-backend-print-log): Change `cvs rlog' to
|
|
1704 `cvs log'
|
|
1705
|
|
1706 Mon Feb 17 02:01:27 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1707
|
|
1708 * utils/edmacro.el (edmacro-format-keys): Would bug out on empty
|
|
1709 macro.
|
|
1710
|
|
1711 Mon Feb 17 02:01:27 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1712
|
|
1713 * utils/edmacro.el (edmacro-format-keys): Would bug out on empty
|
|
1714 macro.
|
|
1715 (edmacro-fix-menu-commands): Would bug out on 'control, etc.
|
|
1716 (edmacro-events-to-keys): New function.
|
|
1717 (edmacro-format-keys): Use it.
|
|
1718 (edmacro-finish-edit): Compare to macros, not strings.
|
|
1719 (edmacro-fkeys): New function.
|
|
1720 (edmacro-format-keys): Use it.
|
|
1721 (edit-kbd-macro): Tweak.
|
|
1722
|
98
|
1723 Sat Feb 15 13:58:14 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1724
|
|
1725 * packages/info.el: Don't call switch-to-buffer if the Info frame
|
|
1726 is being deleted.
|
|
1727
|
|
1728 Sat Feb 15 12:07:46 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1729
|
|
1730 * prim/simple.el (previous-line): Allow escape from signaled error
|
|
1731 on buffer boundary.
|
|
1732 (next-line): Ditto.
|
|
1733
|
|
1734 Sat Feb 15 11:05:29 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1735 * utils/redo.el: made before and after status messages so that
|
|
1736 the user is aware if a long action is still being processed.
|
|
1737
|
|
1738 rolled version number up to 1.00, since the package seems to be
|
|
1739 stable.
|
|
1740
|
|
1741 cosmetic changes so the file could be included in the XEmacs
|
|
1742 distribution.
|
|
1743
|
|
1744 Sat Feb 15 11:13:05 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1745
|
|
1746 * prim/simple.el (line-move-ignore-invisible): Change default to
|
|
1747 t.
|
|
1748
|
|
1749 Sat Feb 15 01:04:21 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1750
|
|
1751 * prim/macros.el: Removed. Superseded by new version in
|
|
1752 edmacro.el.
|
|
1753
|
|
1754 Fri Feb 14 23:29:16 1997 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
1755
|
|
1756 * modes/executable.el (executable-set-magic): Correct for the #!
|
|
1757 getting lost.
|
|
1758
|
|
1759 Fri Feb 14 23:10:58 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1760
|
|
1761 * prim/modeline.el (modeline-modified-map): Call
|
|
1762 vc-toggle-read-only instead of toggle-read-only to be consistent
|
|
1763 with override of `C-x C-q'.
|
|
1764
|
|
1765 Fri Feb 14 16:11:10 1997 Jonathon Edwards <edwards@intranet.com>
|
|
1766
|
|
1767 * packages/blink-cursor.el (blink-cursor-post-command-hook): stop
|
|
1768 cursor blink momentarily after receiving user input.
|
|
1769
|
|
1770 Fri Feb 14 15:26:38 1997 Jacques Duthen <duthen@club-internet.fr>
|
|
1771
|
|
1772 * x11/x-menubar.el (default-menubar): mine goes into games menu.
|
|
1773
|
|
1774 Thu Feb 13 22:16:09 1997 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
1775
|
|
1776 * prim/files.el (recover-session-finish): Modify for efs.
|
|
1777
|
|
1778 Thu Feb 13 21:23:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1779
|
|
1780 * prim/files.el (file-remote-p): New function.
|
|
1781
|
|
1782 * sunpro/sunpro-load.el: Do not dump mime-setup under any
|
|
1783 circumstances.
|
|
1784
|
|
1785 Thu Feb 13 17:58:09 1997 Richard Mlynarik <mly@adoc.xerox.com>
|
|
1786
|
|
1787 * prim/obsolete.el (insert-before-markers-and-inherit): Correct
|
|
1788 typo.
|
|
1789
|
|
1790 Wed Feb 12 17:48:59 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1791
|
|
1792 * comint/gdb.el (gdb-control-c-subjob): Nuke this loser.
|
|
1793
|
|
1794 Wed Feb 12 13:58:01 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1795
|
|
1796 * utils/edmacro.el: New file.
|
|
1797
|
|
1798 Wed Feb 12 09:00:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1799
|
|
1800 * prim/sound.el (load-sound-file): Update documentation of
|
|
1801 restrictions on what machines XEmacs can play sound on.
|
|
1802
|
|
1803 Tue Feb 11 09:39:25 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1804
|
|
1805 * prim/glyphs.el (init-glyphs): Correct autodetection to find
|
|
1806 GIF89. Look for PNG.
|
|
1807
|
|
1808 Mon Feb 10 21:37:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1809
|
|
1810 * prim/frame.el (show-temp-buffer-in-current-frame): Conditional
|
|
1811 shrink-to-fit behavior on `temp-buffer-shrink-to-fit'.
|
|
1812
|
|
1813 * packages/apropos.el (apropos-print): Ditto.
|
|
1814
|
|
1815 * prim/lisp.el (lisp-complete-symbol): Ditto.
|
|
1816
|
|
1817 * prim/help.el (with-displaying-help-buffer): Ditto.
|
|
1818
|
|
1819 Mon Feb 10 20:58:19 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1820
|
|
1821 * x11/x-toolbar.el: Allow customization of toolbar functions by
|
|
1822 customizable variables.
|
|
1823
|
|
1824 Mon Feb 10 14:58:05 1997 Greg Klanderman <greg@alphatech.com>
|
|
1825
|
|
1826 * comint/gdb.el (gdb-mode): Correct setting of obsolete hook.
|
|
1827
|
|
1828 Sun Feb 9 19:55:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1829
|
|
1830 * prim/obsolete.el (define-compatible-variable-alias): New function.
|
|
1831 (define-compatible-variable-alias): New function.
|
|
1832 .*mode-line.*, frame-parameters, modify-frame-parameters,
|
|
1833 x-display-.* all made compatible not obsolete.
|
|
1834
|
|
1835 * bytecomp/bytecomp.el (byte-compile-variable-ref): Warn for
|
|
1836 compatibility symbols.
|
|
1837 (byte-compile-compatible): New function.
|
|
1838
|
|
1839 * bytecomp/bytecomp-runtime.el (make-compatible): New function.
|
|
1840 (make-compatible-variable): New function.
|
|
1841
|
|
1842 Sun Feb 9 19:14:25 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1843
|
|
1844 * utils/redo.el: New file.
|
|
1845
|
|
1846 * utils/floating-toolbar.el: New file.
|
|
1847
|
|
1848 Sun Feb 9 15:19:46 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1849
|
|
1850 * custom/custom.el: Remove ;;;###autoloads since this file is
|
|
1851 dumped with XEmacs.
|
|
1852
|
|
1853 Sun Feb 9 00:28:20 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
1854
|
|
1855 * custom/widget.el: New file.
|
|
1856
|
|
1857 * custom/widget-example.el: New file.
|
|
1858
|
|
1859 * custom/widget-edit.el: New file.
|
|
1860
|
|
1861 * custom/custom.el: New file.
|
|
1862
|
|
1863 * custom/custom-edit.el: New file.
|
|
1864
|
96
|
1865 Fri Feb 7 03:09:32 1997 Alastair Burt <burt@dfki.uni-sb.de>
|
|
1866
|
|
1867 * bytecomp/bytecomp.el (byte-compile-insert-header): Correct
|
|
1868 typo.
|
|
1869
|
|
1870 Thu Feb 6 17:14:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1871
|
|
1872 * packages/font-lock.el (font-lock-fontify-keywords-region):
|
|
1873 Correct bounds checking in case the keywords regexp is not
|
|
1874 properly anchored.
|
|
1875
|
|
1876 * packages/ps-print.el: Update maintainer address.
|
|
1877
|
|
1878 Thu Feb 6 12:35:39 1997 Bill Dubuque <wgd@martigny.ai.mit.edu>
|
|
1879
|
|
1880 * cl/cl-macs.el (cl-do-proclaim): Correct addition of bound
|
|
1881 variables to `byte-compile-bound-variables'.
|
|
1882
|
|
1883 Thu Feb 6 01:07:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1884
|
|
1885 * bytecomp/bytecomp.el (byte-compile-warn-about-unused-variables):
|
|
1886 Reverse previous patch.
|
|
1887
|
|
1888 * prim/minibuf.el (use-dialog-box): Rename from
|
|
1889 should-use-dialog-box.
|
|
1890 (should-use-dialog-box-p): Use it.
|
|
1891
|
|
1892 * bytecomp/bytecomp.el (byte-compile-warn-about-unused-variables):
|
|
1893 cell is not a cons when the cl declare macro is used.
|
|
1894
|
|
1895 Wed Feb 5 21:37:13 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
1896
|
|
1897 * modes/cperl-mode.el: Provide 'cperl-mode.
|
|
1898
|
94
|
1899 Tue Feb 4 11:51:25 1997 Greg Klanderman <greg@alphatech.com>
|
|
1900
|
|
1901 * modes/make-mode.el: Remove `makefile-runtime-macros-list' from
|
|
1902 `makefile-macro-table'.
|
|
1903
|
|
1904 Tue Feb 4 11:06:33 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1905
|
|
1906 * packages/metamail.el (metamail-region): *junet* coding system
|
|
1907 name changed to 'junet.
|
|
1908
|
|
1909 Mon Feb 3 22:34:09 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
|
|
1910
|
|
1911 * iso/iso-acc.el: Critical Bug fix.
|
|
1912 Add ISO-8859-3 support to iso-acc.el, as suggested by Dale
|
|
1913 Gulledge.
|
|
1914
|
|
1915 Mon Feb 3 17:11:21 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1916
|
|
1917 * modes/make-mode.el (makefile-browser-format-macro-line): Remove
|
|
1918 redundant (and wrong) format statement.
|
|
1919
|
88
|
1920 Fri Jan 31 21:38:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1921
|
|
1922 * psgml/psgml-html.el (html-auto-sgml-entity-conversion): Allow
|
|
1923 user control over automatic sgml entity to ISO-8859-1 conversion.
|
|
1924
|
|
1925 Fri Jan 31 09:50:51 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1926
|
|
1927 * x11/x-toolbar.el (toolbar-mail-commands-alist): Updated with a
|
|
1928 lot of new mailer possiblities.
|
|
1929
|
|
1930 Fri Jan 31 09:28:49 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
1931
|
|
1932 * x11/x-font-menu.el (reset-device-font-menus): Correct guard on
|
|
1933 charset-registry call.
|
|
1934
|
|
1935 Fri Jan 31 00:21:07 1997 Darrell Kindred <dkindred@cmu.edu>
|
|
1936
|
|
1937 * packages/font-lock.el (font-lock-mode): Don't remove the
|
|
1938 `font-lock-pre-idle-hook' from `pre-idle-hook'.
|
|
1939
|
|
1940 Thu Jan 30 22:43:43 1997 David Moore <dmoore@UCSD.EDU>
|
|
1941
|
|
1942 * packages/compile.el: Speed up regexps.
|
|
1943 (compilation-parse-errors): replace re-search-forward with
|
|
1944 something faster.
|
|
1945
|
|
1946 Thu Jan 30 20:33:56 1997 Hvoje Niksic <hniksic@srce.hr>
|
|
1947
|
|
1948 * x11/x-toolbar.el
|
|
1949 (toolbar-open,toolbar-dired,toolbar-save,toolbar-print,toolbar-cut,toolbar-copy,toolbar-paste,toolbar-undo,toolbar-replace):
|
|
1950 New functions.
|
|
1951 (toolbar-news): Allow running without separate frame.
|
|
1952 (toolbar-mail-commands-alist): New variable.
|
|
1953 (toolbar-mail-reader): Ditto.
|
|
1954 (toolbar-mail): Use them.
|
|
1955
|
|
1956 * x11/x-menubar.el: Shorten help menu item names.
|
|
1957
|
|
1958 Thu Jan 30 17:22:15 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
|
|
1959
|
|
1960 * iso/iso-acc.el: Accept accents in isearch.
|
|
1961
|
|
1962 Wed Jan 29 22:25:38 1997 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
1963
|
|
1964 * packages/ps-print.el: Make postscript files generated by
|
|
1965 ps-print conformant to Adobe DSC specification.
|
|
1966
|
86
|
1967 Mon Jan 27 21:45:17 1997 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
1968
|
|
1969 * dired/ange-ftp.el (ange-ftp-write-region): Changes for jka-compr.
|
|
1970
|
|
1971 * packages/jka-compr.el (jka-compr-write-region): Convert to 20.0
|
|
1972 write-region interface.
|
|
1973
|
|
1974 Mon Jan 27 19:09:28 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1975
|
|
1976 * prim/about.el (about-xemacs): Updated to reflect change of
|
|
1977 management.
|
|
1978
|
|
1979 Mon Jan 27 13:25:17 1997 William M. Perry <wmperry@aventail.com>
|
|
1980
|
|
1981 * packages/man.el (Manual-entry-switches): Don't default to -s.
|
|
1982
|
|
1983 Sun Jan 26 16:27:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1984
|
|
1985 * bytecomp/byte-optimize.el (byte-compile-inline-expand):
|
|
1986 Correctly refresh the pointer to a symbol being autoloaded prior
|
|
1987 to inline.
|
|
1988
|
|
1989 Sun Jan 26 13:57:22 1997 Bob Weiner <weiner@infodock.com>
|
|
1990
|
|
1991 * prim/about.el (about-xemacs-xref): Update bio.
|
|
1992
|
|
1993 Sat Jan 25 22:58:15 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1994
|
|
1995 * x11/x-menubar.el (default-menubar): Update ps-paper-type options
|
|
1996 for new ps-print.el.
|
|
1997
|
84
|
1998 Thu Jan 23 01:40:53 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1999
|
|
2000 * psgml/psgml-html.el (html-mode): Set up friendlier syntax
|
|
2001 table.
|
|
2002
|
|
2003 * psgml/psgml.el (sgml-running-xemacs): Remove
|
|
2004 sgml-mode-syntax-table since it has been superseded.
|
|
2005
|
82
|
2006 Thu Jan 9 13:32:01 1997 Jacques Duthen Prestataire <duthen@cegelec-red.fr>
|
|
2007
|
|
2008 * ps-print.el: Merge patch from [simon] Oct 8, 1996 Simon Marshall
|
|
2009 <simon@gnu.ai.mit.edu>
|
|
2010 (ps-print-version): Fix value.
|
|
2011 (cl lisp-float-type): Require them.
|
|
2012 (ps-number-of-columns ps-*-font-size): Try to select defaults
|
|
2013 better suited when `ps-landscape-mode' is non-nil.
|
|
2014 (ps-*-faces): Change default for Font Lock mode faces when
|
|
2015 `ps-print-color-p' is nil.
|
|
2016 (ps-right-header): Replace `time-stamp-yy/mm/dd'
|
|
2017 by `time-stamp-mon-dd-yyyy'.
|
|
2018 (ps-end-file ps-begin-page): Fix bug in page count for Ghostview.
|
|
2019 (ps-generate-postscript-with-faces): Replace `ps-sorter' by
|
|
2020 `car-less-than-car'.
|
|
2021 (ps-plot ps-generate): Replace `%d' by `%3d'.
|
|
2022
|
|
2023 Wed Jan 22 15:32:39 1997 Greg Klanderman <greg@alphatech.com>
|
|
2024
|
|
2025 * modes/rsz-minibuf.el (resize-minibuffer-setup): Resize the
|
|
2026 minibuffer earlier than the first received event.
|
|
2027
|
|
2028 Wed Jan 22 15:29:08 1997 Barry A. Warsaw <bwarsaw@CNRI.Reston.VA.US>
|
|
2029
|
|
2030 * modes/imenu.el (imenu-add-to-menubar): Don't attempt anything if
|
|
2031 menu-bar lookup fails.
|
|
2032
|
|
2033 Wed Jan 22 01:03:42 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2034
|
|
2035 * lisp/x11/x-font-menu.el: Make font menus work better in a
|
|
2036 Japanese environment.
|
|
2037
|
|
2038 Tue Jan 21 19:56:26 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2039
|
|
2040 * lisp/mule/mule-init.el (init-mule): Get Japanese man pages working.
|
|
2041
|
|
2042 Fri Jan 17 17:22:54 1997 Hrvoje Niksic <hniksic@bjesomar.srce.hr>
|
|
2043
|
|
2044 * man.el (Manual-mode): Don't mess with scrollbars if they aren't
|
|
2045 present.
|
|
2046
|
|
2047 Tue Jan 21 19:52:45 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2048
|
|
2049 * utils/timezone.el (timezone-parse-date): Fix Y2K bug.
|
|
2050
|
|
2051 Tue Jan 21 19:32:44 1997 Barry A. Warsaw <bwarsaw@anthem.cnri.reston.va.us>
|
|
2052
|
|
2053 * prim/files.el (hack-local-variables-prop-line): XEmacs should
|
|
2054 not query to set local variables in the -*- line if there aren't
|
|
2055 any to set!
|
|
2056
|
|
2057 Thu Jan 16 18:24:20 1997 Steven L Baur <steve@miranova.com>
|
|
2058
|
|
2059 * psgml/psgml.el: Use newer interface form for nsgmls.
|
|
2060
|
|
2061 Thu Jan 16 04:06:24 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2062
|
|
2063 * comint/telnet.el (rsh): (Mostly) correct dealing with detection
|
|
2064 of password prompt at login.
|
|
2065
|
|
2066 Thu Jan 16 03:28:25 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2067
|
|
2068 * modes/view.el (View-scroll-lines-forward): Correct format typo.
|
|
2069
|
|
2070 Mon Jan 13 22:50:23 1997 David Moore <dmoore@UCSD.EDU>
|
|
2071
|
|
2072 * packages/compile.el: Clean up regexps.
|
|
2073
|
|
2074 Sun Jan 12 20:50:08 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2075
|
|
2076 * modes/m4-mode.el: Changed m4-program to point to /usr/bin/m4.
|
|
2077
|
151
|
2078 Sun Jan 12 18:49:30 1997 $B<i2,(B $BCNI'(B/MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
82
|
2079
|
|
2080 * mule/mule-misc.el: `-columns' -> `-width' and define `-columns'
|
|
2081 alias
|
|
2082 Import definition of `truncate-string-to-width' from Emacs/mule-delta.
|
|
2083
|
|
2084 Sun Jan 12 13:57:11 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2085
|
|
2086 * prim/window.el (shrink-window-if-larger-than-buffer): Don't let
|
|
2087 readjusted window change the buffer order stack.
|
|
2088
|
|
2089 Sat Jan 11 20:12:47 1997 Vinnie Shelton <shelton@icd.teradyne.com>
|
|
2090
|
|
2091 * utils/finder.el (finder-insert-at-column): Correct off-by-one
|
|
2092 error affecting long file names.
|
|
2093
|
80
|
2094 Fri Jan 10 22:27:58 1997 Shane Holder <holder@rsn.hp.com>
|
|
2095
|
|
2096 * utils/bench.el: New version.
|
|
2097
|
|
2098 Fri Jan 10 13:22:26 1997 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
2099
|
|
2100 * packages/man.el (Manual-entry-switches): New variable.
|
|
2101 (Manual-apropos-switches): New variable.
|
|
2102 (Manual-run-formatter): Use them.
|
|
2103
|
|
2104 Thu Jan 9 22:04:42 1997 Greg Klanderman <greg@alphatech.com>
|
|
2105
|
|
2106 * modes/make-mode.el: Allow disabling of suspicious line warnings
|
|
2107 allow macro pickup when a macro is entered normally
|
|
2108 add the runtime macros to the completion list so confirmation is
|
|
2109 not necessary when minibuffer-confirm-incomplete is t.
|
|
2110 (these last two only in effect when makefile-electric-keys=t)
|
|
2111
|
|
2112 Thu Jan 9 11:44:11 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2113
|
|
2114 * mule/mule-files.el (file-coding-system-alist): Default to 8 bit
|
|
2115 on .el and .info files.
|
|
2116
|
|
2117 Wed Jan 8 20:57:16 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2118
|
|
2119 * prim/help.el (help-mode-quit): Correct typo in docstring.
|
|
2120 (help-mode-quit): Bury help buffer before restoring previous
|
|
2121 window configuration.
|
|
2122
|
|
2123 Wed Jan 8 20:20:01 1997 Joe Nuspl <nuspl@nvwls.cc.purdue.edu>
|
|
2124
|
|
2125 * x11/x-menubar.el (default-menubar): Include enriched.doc in the
|
|
2126 samples in the help menu.
|
|
2127
|
|
2128 Wed Jan 8 20:09:32 1997 Jens Krinke <krinke@ips.cs.tu-bs.de>
|
|
2129
|
|
2130 * x11/x-toolbar.el (toolbar-news-frame-properties): New variable.
|
|
2131 (toolbar-news): Use it.
|
|
2132
|
|
2133 Wed Jan 8 10:11:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2134
|
|
2135 * x11/x-compose.el (global-map): Keysyms use `-' not `_'.
|
|
2136
|
|
2137 Mon Jan 6 18:19:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2138
|
|
2139 * comint/telnet.el (telnet-initial-filter): Enable
|
|
2140 case-fold-search.
|
|
2141 (telnet-maximum-count): Bump up to 6, since 4 does not always
|
|
2142 appear to be enough.
|
|
2143
|
|
2144 Mon Jan 6 08:30:55 1997 Andrew Cohen <cohen@andy.bu.edu>
|
|
2145
|
|
2146 * psgml/psgml-parse.el (sgml-compile-dtd): noconv coding system
|
|
2147 has been renamed to no-conversion.
|
|
2148 (sgml-bdtd-merge): Ditto.
|
|
2149 (sgml-push-to-entity): Ditto.
|
|
2150
|
|
2151 Sun Jan 5 14:35:30 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2152
|
|
2153 * utils/loadhist.el (symbol-file): Make interactive.
|
|
2154
|
|
2155 Sun Jan 5 00:40:02 1997 Bob Weiner <weiner@infodock.com>
|
|
2156
|
|
2157 * packages/avoid.el (mouse-avoidance-mode): autoload.
|
|
2158
|
|
2159 * x11/x-menubar.el (options-menu-saved-forms): Mouse avoidance
|
|
2160 mode option.
|
|
2161
|
78
|
2162 Sat Jan 4 12:25:34 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2163
|
|
2164 * prim/faces.el (init-other-random-faces): Guard against adding
|
|
2165 modeline buffer tty face if no tty support.
|
|
2166
|
|
2167 Fri Jan 3 23:15:22 1997 Greg Klanderman <greg@alphatech.com>
|
|
2168
|
|
2169 * packages/backup-dir.el: Added to distribution.
|
|
2170
|
|
2171 Fri Jan 3 16:20:42 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2172
|
|
2173 * gnus/gnus-setup.el: Updated to gracefully handle installed
|
|
2174 auxilliary packages like tm, and handle eventual integration of
|
|
2175 Red Gnus/Gnus 5.4.
|
|
2176
|
|
2177 Fri Jan 3 14:32:07 1997 Vinnie Shelton <shelton@icd.teradyne.com>
|
|
2178
|
|
2179 * packages/gnuserv.el (gnuserv-frame): Autoload.
|
|
2180
|
|
2181 * x11/x-menubar.el (default-menubar): Add option to control gnuserv
|
|
2182 creating a new frame.
|
|
2183 (options-menu-saved-forms): Ditto.
|
|
2184
|
|
2185 Fri Jan 3 12:18:41 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2186
|
|
2187 * x11/x-mouse.el: Protect creation of scrollbar-pointer-glyph with
|
|
2188 feature test on 'scrollbar.
|
|
2189
|
|
2190 Fri Jan 3 10:37:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2191
|
|
2192 * packages/mic-paren.el (paren-activate): Update to v1.2.
|
|
2193
|
|
2194 Fri Jan 3 10:21:58 1997 Pete Ware <ware@cis.ohio-state.edu>
|
|
2195
|
|
2196 * x11/x-menubar.el (default-menubar): Add require-final-newline
|
|
2197 and next-line-add-newlines as options in the options menu.
|
|
2198 (options-menu-saved-forms): Ditto.
|
|
2199
|
|
2200 Thu Jan 2 18:52:32 1997 Joel Peterson <tarzan@aosi.com>
|
|
2201
|
|
2202 * prim/simple.el (blink-matching-open): Make sure point is visible
|
|
2203 when blinking.
|
|
2204
|
|
2205 Thu Jan 2 11:25:05 1997 Vinnie Shelton <shelton@icd.teradyne.com>
|
|
2206
|
|
2207 * prim/replace.el (occur-mode-mouse-goto): Fix typo in Emacs 19.34
|
|
2208 synch up.
|
|
2209 (occur-mode-map): Ditto.
|
|
2210
|
|
2211 Wed Nov 20 19:40:05 1996 Lennart Staflin <lenst@lysator.liu.se>
|
|
2212
|
|
2213 * psgml-parse.el (sgml-modify-dtd): set sgml-current-tree to
|
|
2214 sgml-top-tree. Needed by sgml-open-element.
|
|
2215
|
|
2216 Mon Nov 11 01:50:40 1996 Lennart Staflin <lenst@lysator.liu.se>
|
|
2217
|
|
2218 * Version 1.0 released.
|
|
2219
|
|
2220 Sun Sep 15 14:07:24 1996 Lennart Staflin <lenst@lysator.liu.se>
|
|
2221
|
|
2222 * psgml.el (sgml-mode): modify mode-line-format with subst, don't
|
|
2223 replicate the whole format in the code.
|
|
2224
|
|
2225 Thu Sep 12 20:27:38 1996 Lennart Staflin <lenst@lysator.liu.se>
|
|
2226
|
|
2227 * psgml-parse.el (sgml-external-file): Try to find system
|
|
2228 identifiers using the sgml-public-map
|
|
2229 if sgml-system-identifiers-are-preferred; this way that flag will
|
|
2230 have effect even if the sgml-public-map contains `%s'.
|
|
2231 (sgml-final): moved to be defined before use.
|
|
2232
|
|
2233 * psgml-dtd.el (sgml-parse-parameter-literal): Try to handle
|
|
2234 character references to character number above 255 by leaving a
|
|
2235 character reference in then parsed entity text.
|
|
2236
|
|
2237 Thu Sep 5 14:11:00 1996 Dave Love <d.love@dl.ac.uk>
|
|
2238
|
|
2239 * psgml-other.el (sgml-set-face-for): Nullify
|
|
2240 {after,before}-change-functions as well as (obsolete)
|
|
2241 {after,before}-change-function.
|
|
2242
|
|
2243 Tue Dec 31 11:34:37 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2244
|
|
2245 * comint/gdb.el (gdb-mode): Require 'cc-mode if not already loaded
|
|
2246 prior to starting gdb.
|
|
2247
|
|
2248 Mon Dec 30 17:59:48 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2249
|
|
2250 * comint/telnet.el (telnet-check-software-type-initialize): Remove
|
|
2251 default in cond (which allows special treatment of password prompt
|
|
2252 to work).
|
|
2253
|
|
2254 Mon Dec 30 09:36:04 1996 Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
|
|
2255
|
|
2256 * packages/gnuserv.el (server-edit): Add option to allow killing
|
|
2257 last visible frame.
|
|
2258
|
|
2259 Sun Dec 29 21:36:44 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2260
|
|
2261 * prim/files-nomule.el: Add trailing newline.
|
|
2262
|
|
2263 Sun Dec 29 18:45:34 1996 James LewisMoss <dres@dres.elam.org>
|
|
2264
|
|
2265 * modes/perl-mode.el: Add (provide 'perl-mode).
|
|
2266
|
|
2267 Sun Dec 29 17:15:57 1996 Martin Buchholz <mrb@eng.sun.com>
|
|
2268
|
|
2269 * ilisp/Makefile (elc): Be a little smarter about recompilation.
|
|
2270
|
|
2271 Sun Dec 29 17:14:27 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2272
|
|
2273 * tm/tm-edit-tipgp.el: Don't unconditionally require tinypgpa.el.
|
|
2274
|
76
|
2275 Sat Dec 28 11:15:55 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2276
|
|
2277 * x11/x-menubar.el (default-menubar): Move Frame-local font menu
|
|
2278 option to Frame Appearance submenu.
|
|
2279
|
|
2280 Fri Dec 27 20:30:00 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2281
|
|
2282 * x11/x-font-menu.el (font-menu-this-frame-only-p): Default to
|
|
2283 nil, because everyone was confused by it defaulting to t.
|
|
2284
|
|
2285 Fri Dec 27 12:30:37 1996 Richard Mlynarik <mly@adoc.xerox.com>
|
|
2286
|
|
2287 * prim/sort.el (sort-subr): Document use of `sort-fold-case'.
|
|
2288 (sort-lines): Ditto.
|
|
2289 (sort-paragraphs): Ditto.
|
|
2290 (sort-pages): Ditto.
|
|
2291 (sort-regexp-fields): Ditto.
|
|
2292 (sort-numeric-fields): Ditto.
|
|
2293 (sort-regexp-fields): Ditto.
|
|
2294 (sort-columns): Ditto.
|
|
2295 (sort-regexp-fields): Use compare-buffer-substrings if available.
|
|
2296
|
|
2297 Fri Dec 27 12:09:23 1996 Noah Friedman <friedman@gnu.ai.mit.edu>
|
|
2298
|
|
2299 * modes/mail-abbrevs.el (mail-abbrev-expand-hook): Prevent abbrev
|
|
2300 expansion from happening multiple times.
|
|
2301
|
|
2302 Fri Dec 27 02:31:15 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2303
|
|
2304 * prim/help.el (help-for-help): Don't confuse help character `b'
|
|
2305 with scrolling character `b' in view-less help buffer.
|
|
2306
|
|
2307 * packages/scroll-in-place.el: Synch with 19.15.
|
|
2308
|
|
2309 Thu Dec 26 15:25:09 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2310
|
|
2311 * x11/x-menubar.el (xemacs-splash-buffer): New function.
|
|
2312 (default-menubar): Use it.
|
|
2313 (default-menubar): Reorganize help menus.
|
|
2314
|
|
2315 * prim/startup.el (startup-message-timeout): More or less disable
|
|
2316 the timeout of the splash screen.
|
|
2317
|
|
2318 * packages/man.el (Manual-use-rosetta-man): For Neal Becker's
|
|
2319 Rosetta Man patch.
|
|
2320 (Manual-nuke-nroff-bs): Use it.
|
|
2321
|
|
2322 Tue Dec 24 12:46:22 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2323
|
|
2324 * prim/frame.el (show-temp-buffer-in-current-frame): Shrink temp
|
|
2325 buffer to fit.
|
|
2326
|
|
2327 Mon Dec 23 15:44:49 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2328
|
|
2329 * utils/delbackspace.el: Correct rebindings so they work properly
|
|
2330 when cc-mode is not dumped with XEmacs.
|
|
2331
|
|
2332 * packages/apropos.el (apropos-print): Minimize size of *Apropos*
|
|
2333 window if it is small.
|
|
2334
|
|
2335 * prim/lisp.el (lisp-complete-symbol): Minimize size of
|
|
2336 *Completions* window.
|
|
2337
|
|
2338 * prim/help.el (with-displaying-help-buffer): (Based on an idea
|
|
2339 from Sudish Joseph) minimize size of displayed help window.
|
|
2340
|
|
2341 * modes/fortran.el (fortran-window-create-momentarily): Fix
|
|
2342 lossage from synch with Emacs 19.34.
|
|
2343 (fortran-abbrev-start): Ditto.
|
|
2344
|
|
2345 Sun Dec 22 15:33:25 1996 Hrvoje Niksic <hniksic@srce.hr>
|
|
2346
|
|
2347 * x11/x-toolbar.el (toolbar-news): Check whether this is the last
|
|
2348 frame before deleting it.
|
|
2349
|
|
2350 Sun Dec 22 00:37:42 1996 Sudish Joseph <sudish@mindspring.com>
|
|
2351
|
|
2352 * eterm/tgud.el (tgud-gdb-complete-filter): Match carriage returns
|
|
2353 as well as linefeeds.
|
|
2354
|
|
2355 * eterm/term.el (term-dynamic-list-completions): Correct Emacsism
|
|
2356 in setting unread-command-events.
|
|
2357
|
|
2358 Sat Dec 21 23:37:02 1996 Bob Weiner <weiner@infodock.com>
|
|
2359
|
|
2360 * packages/font-lock.el: Update Java support.
|
|
2361
|
|
2362 Sat Dec 21 22:48:59 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2363
|
|
2364 * packages/fontl-hooks.el: Add provide (synch with 19.15).
|
|
2365
|
|
2366 * x11/x-toolbar.el: Don't quote lambda macro.
|
|
2367
|
|
2368 * packages/session.el: Removed from distribution.
|
|
2369
|
|
2370 Sat Dec 21 22:37:37 1996 Neal Becker <neal@ctd.comsat.com>
|
|
2371
|
|
2372 * pcl-cvs/pcl-cvs.el: Synched with pcl-cvs.el from cvs-1.9.
|
|
2373
|
74
|
2374 Fri Dec 20 15:19:36 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2375
|
|
2376 * packages/compile.el (compilation-error-regexp-alist): Complete
|
|
2377 fix for lossage on bad regexps.
|
|
2378
|
|
2379 * prim/loadup.el: Remove cc-mode as a dumped package.
|
|
2380
|
|
2381 * prim/glyphs.el (init-glyphs): hscroll-glyph is now builtin.
|
|
2382
|
|
2383 * prim/minibuf.el (minibuffer-complete-word): Correct an ebola
|
|
2384 infection that caused incorrect interpretation of SPC in the
|
|
2385 minibuffer.
|
|
2386
|
|
2387 Thu Dec 19 22:16:47 1996 Heiko Muenkel <muenkel@tnt.uni-hannover.de>
|
|
2388
|
|
2389 * modes/outl-mouse.el (outline-glyph-menu): Remove Hide body item,
|
|
2390 Add Show all item.
|
|
2391
|
|
2392 Thu Dec 19 00:37:59 1996 Bart Robinson <lomew@cs.utah.edu>
|
|
2393
|
|
2394 * prim/files.el: Make enable-local-variables 'ask-me behave sanely.
|
|
2395
|
|
2396 Wed Dec 18 23:10:15 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2397
|
|
2398 * prim/simple.el (next-line-add-newlines): Now defaults to nil.
|
|
2399
|
|
2400 Wed Dec 18 22:56:48 1996 Hrvoje Niksic <hniksic@srce.hr>
|
|
2401
|
|
2402 * utils/bench.el (bench-mark-13): Added.
|
|
2403
|
|
2404 Wed Dec 18 20:26:10 1996 Martin Buchholz <mrb@eng.sun.com>
|
|
2405
|
|
2406 * mule/mule-coding.el: Change charset names.
|
|
2407
|
|
2408 * mule/japanese-hooks.el: Change charset names.
|
|
2409
|
|
2410 * mule/hebrew-hooks.el: Change charset names.
|
|
2411 Remove quail hooks.
|
|
2412
|
|
2413 * mule/greek-hooks.el: Change charset names.
|
|
2414 Remove quail hooks.
|
|
2415
|
|
2416 * mule/european-hooks.el ((make-char 'latin-iso8859-1 32)): Change
|
|
2417 charset names.
|
|
2418 Remove quail hooks.
|
|
2419
|
|
2420 * mule/cyrillic-hooks.el (cyrillic-iso8859-5): Use instead of cyrillic.
|
|
2421 Remove quail hooks.
|
|
2422
|
|
2423 * mule/chinese-hooks.el (chinese-gb2312): Fix chinese syntax tables.
|
|
2424 Use chinese-gb2312.
|
|
2425 Remove quail hooks.
|
|
2426 (chinese): Comment out code for egg.
|
|
2427
|
|
2428 * mule/thai-hooks.el: Use thai-tis620.
|
|
2429 (thai): Prefer macro definition of lambda.
|
|
2430
|
|
2431 * sunpro/sunpro-init.el (sunpro-startup): Guard against Sun
|
|
2432 censorship.
|
|
2433
|
|
2434 * prim/obsolete.el (wholenump): New obsolete alias.
|
|
2435
|
|
2436 * prim/simple.el (comment-indent-function): Use macro definition
|
|
2437 of (lambda () ...).
|
|
2438
|
|
2439 * prim/replace.el (list-matching-lines): Remove redundant
|
|
2440 (message (format ...))
|
|
2441
|
|
2442 * modes/cc-mode.el: Readd autoloads (prior to removing cc-mode as
|
|
2443 a dumped package).
|
|
2444
|
|
2445 Wed Dec 18 11:09:45 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2446
|
|
2447 * comint/telnet.el: Synch up to 19.15 & Emacs 19.34.
|
|
2448 (telnet-check-software-type-initialize): Cleanup from Synch.
|
|
2449
|
|
2450 Sat Dec 14 17:39:17 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2451
|
|
2452 * packages/buff-menu.el (list-buffers-directory): autoload.
|
|
2453
|
|
2454 Fri Dec 13 16:53:14 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2455
|
|
2456 * electric/ebuff-menu.el (electric-buffer-list): Restore behavior
|
|
2457 of using prefix argument.
|
|
2458
|
|
2459 * emulators/crisp.el (crisp-mode-map): Rename kp_.* keysyms to
|
|
2460 kp-\1.
|
|
2461
|
|
2462 * emulators/tpu-edt.el: Ditto.
|
|
2463
|
|
2464 * x11/x-win-sun.el: Ditto.
|
|
2465
|
|
2466 * x11/x-iso8859-1.el: Ditto.
|
|
2467
|
|
2468 * term/tvi970.el: Ditto.
|
|
2469
|
|
2470 * term/news.el: Ditto.
|
|
2471
|
|
2472 * term/lk201.el: Ditto.
|
|
2473
|
|
2474 * term/linux.el: Ditto.
|
|
2475
|
|
2476 * prim/keydefs.el: Ditto.
|
|
2477
|
|
2478 * prim/events.el: Ditto.
|
|
2479
|
|
2480 * packages/icomplete.el (icomplete-get-keys): Ditto.
|
|
2481
|
|
2482 * games/gomoku.el (gomoku-mode-map): Ditto.
|
|
2483
|
|
2484 * games/blackbox.el (blackbox-mode-map): Ditto.
|
|
2485
|
|
2486 Fri Dec 13 09:40:27 1996 Sudish Joseph <sudish@mindspring.com>
|
|
2487
|
|
2488 * prim/minibuf.el (next-history-element): Remove kludge test on
|
|
2489 minibuffer-history-sexp-flag.
|
|
2490
|
|
2491 * x11/x-init.el (init-post-x-win): Fix hooks for gnuattached ttys
|
|
2492 on XEmacsen started on X displays.
|
|
2493
|
|
2494 Thu Dec 12 16:05:53 1996 Raymond Toy <toy@rtp.ericsson.se>
|
|
2495
|
|
2496 * ilisp/ilisp-out.el (ilisp-find-lower-window): Correct XEmacs
|
|
2497 version check to look at major numbers.
|
|
2498 (ilisp-find-top-left-most-window): Ditto.
|
|
2499
|
|
2500 Thu Dec 12 15:21:43 1996 Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
|
|
2501
|
|
2502 * utils/mail-extr.el (mail-extract-address-components): Don't
|
|
2503 automatically downcase extracted elements. It violates standards.
|
|
2504
|
|
2505 Thu Dec 12 14:46:47 1996 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
2506
|
|
2507 * x11/x-menubar.el (buffers-menu-filter): The buffer menu was
|
|
2508 shortened to `buffers-menu-max-size' items even if
|
|
2509 `buffers-menu-submenus-for-groups-p' is non-nil.
|
|
2510
|
|
2511 Let `buffers-menu-submenus-for-groups-p' be an integer : if there
|
|
2512 are more buffers than this value, use submenus, otherwise not.
|
|
2513
|
|
2514 * packages/vc.el (vc-rename-this-file): New function (was missing,
|
|
2515 but referred to on the menubar).
|
|
2516
|
|
2517 * packages/compile.el (compilation-font-lock-keywords): `defvar'
|
|
2518 instead of `defconst'!
|
|
2519
|
|
2520 * prim/mouse.el (default-mouse-track-normalize-point): Double
|
|
2521 click mouse-1 on sexpr selects the sexpr.
|
|
2522
|
|
2523 * x11/x-menubar.el (options-menu-saved-forms): Fix bug in
|
|
2524 `save-options-menu-settings'.
|
|
2525
|
|
2526 Thu Dec 12 14:25:21 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2527
|
|
2528 * prim/simple.el (forward-to-indentation): Do not deactivate zmacs
|
|
2529 region on usage.
|
|
2530 (backward-to-indentation): Ditto.
|
|
2531
|
|
2532 Thu Dec 12 14:22:55 1996 Christoph Wedler <wedler@fmi.uni-passau.de>
|
|
2533
|
|
2534 * prim/lisp.el (backward-up-list): Do not deactivate zmacs region
|
|
2535 on usage.
|
|
2536
|
|
2537 Wed Dec 11 20:26:21 1996 Barry A. Warsaw <bwarsaw@CNRI.Reston.VA.US>
|
|
2538
|
|
2539 * prim/files.el (set-auto-mode): Require a #! signature to set
|
|
2540 mode based on interpreter.
|
|
2541
|
|
2542 Wed Dec 11 13:25:50 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2543
|
|
2544 * packages/man.el (Manual-use-rosetta-man): Restore Neal Becker's
|
|
2545 Rosetta Man Patch.
|
|
2546 (Man-cleanup-manpage): Use it.
|
|
2547
|
|
2548 * prim/simple.el (yank): Corrected a mistaken synch with Emacs
|
|
2549 19.34.
|
|
2550
|
|
2551 * modes/eiffel3.el (eiffel-mode-syntax-table): Quote the semicolon
|
|
2552 syntax entry so update-autoloads doesn't barf.
|
|
2553
|
|
2554 * packages/buff-menu.el (Buffer-menu-mode-map): Correct mouse key
|
|
2555 bindings.
|
|
2556
|
|
2557 Tue Dec 10 21:24:04 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2558
|
|
2559 * packages/ps-print.el (ps-do-despool): Allow dynamic expansion of
|
|
2560 `ps-lpr-switches'.
|
|
2561
|
|
2562 * packages/lpr.el (print-region-1): Allow dynamic expansion of
|
|
2563 `lpr-switches'.
|
|
2564
|
72
|
2565 Tue Dec 10 18:30:01 1996 Rod Whitby <rwhitby@asc.sps.mot.com>
|
|
2566
|
|
2567 * modes/vhdl-mode.el: New File.
|
|
2568
|
|
2569 Tue Dec 10 17:59:35 1996 Shane Holder <holder@rsn.hp.com>
|
|
2570
|
|
2571 * utils/bench.el: New file. Utility for benchmarking emacs
|
|
2572 performance.
|
|
2573
|
|
2574 Tue Dec 10 10:11:55 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2575
|
|
2576 * electric/ebuff-menu.el (electric-buffer-menu-mode-map): Correct
|
|
2577 bad 19.34 synch patch.
|
|
2578
|
|
2579 * utils/pretty-print.el: New File.
|
|
2580
|
|
2581 Sun Dec 8 13:59:40 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2582
|
|
2583 * prim/files-nomule.el: Documentation corrections.
|
|
2584
|
|
2585 * prim/files.el: Synch to 19.15/Emacs 19.34.
|
|
2586
|
|
2587 Sat Dec 7 18:48:34 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2588
|
|
2589 * packages/hexl.el (hexl-mode-map): Corrected obsolescent key
|
|
2590 names introduced in 19.15-b2.
|
|
2591
|
|
2592 Fri Dec 6 20:17:47 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2593
|
|
2594 * games/yow.el: Sync to GNU Emacs 19.34.
|
|
2595
|
|
2596 * games/studly.el: Documentation fixes.
|
|
2597
|
|
2598 * games/spook.el: Sync to GNU Emacs 19.34.
|
|
2599
|
|
2600 * games/mpuz.el: Sync to GNU Emacs 19.34.
|
|
2601
|
|
2602 * games/life.el: Sync to GNU Emacs 19.34.
|
|
2603
|
|
2604 * games/hanoi.el: Sync to GNU Emacs 19.34.
|
|
2605
|
|
2606 * games/flame.el: Documentation fixes.
|
|
2607
|
|
2608 * games/dunnet.el: Sync to GNU Emacs 19.34.
|
|
2609
|
|
2610 * games/doctor.el: Sync to GNU Emacs 19.34.
|
|
2611
|
|
2612 * games/dissociate.el: Sync to GNU Emacs 19.34.
|
|
2613
|
|
2614 * games/cookie1.el: Sync to GNU Emacs 19.34.
|
|
2615
|
|
2616 * games/conx.el: Documentation fixes.
|
|
2617
|
|
2618 * games/blackbox.el: Sync to GNU Emacs 19.34.
|
|
2619
|
|
2620 * games/NeXTify.el: Documentation fixes.
|
|
2621
|
|
2622 * packages/man.el: New file/replacement from Emacs 19.34.
|
|
2623
|
|
2624 * packages/man-xref.el: New file from Emacs 19.35.
|
|
2625
|
|
2626 * utils/smtpmail.el: New file from Emacs 19.34.
|
|
2627
|
151
|
2628 Fri Dec 6 09:28:04 1996 $B<i2,(B $BCNI'(B/MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
72
|
2629
|
|
2630 * prim/startup.el (set-default-load-path): Set default-load-path
|
|
2631 dynamically since file-detect.el is dumped with XEmacs.
|
|
2632
|
|
2633 Thu Dec 5 20:37:32 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2634
|
|
2635 * emulators/tpu-mapper.el: Total replacement with version in GNU
|
|
2636 Emacs 19.34.
|
|
2637
|
|
2638 * emulators/tpu-extras.el: Total replacement with version in GNU
|
|
2639 Emacs 19.34.
|
|
2640
|
|
2641 * emulators/tpu-edt.el: Total replacement with version in GNU Emacs
|
|
2642 19.34.
|
|
2643
|
|
2644 * comint/history.el: Documentation fixes.
|
|
2645
|
|
2646 * comint/gdb.el: Documentation fixes.
|
|
2647
|
|
2648 * comint/dbx.el: Documentation fixes.
|
|
2649
|
|
2650 * comint/background.el: Documentation fixes.
|
|
2651
|
|
2652 * rmail/rmail-xemacs.el: Documentation fixes.
|
|
2653
|
|
2654 * rmail/rmail-kill.el: Documentation fixes.
|
|
2655
|
|
2656 * emulators/ws-mode.el: Synch up to Emacs 19.34.
|
|
2657
|
|
2658 * emulators/teco.el: Documentation cleanup.
|
|
2659
|
|
2660 * emulators/mlsupport.el: Synch up to Emacs 19.34.
|
|
2661
|
|
2662 * emulators/mlconvert.el: Synch up to Emacs 19.34.
|
|
2663
|
|
2664 * emulators/edt-vt100.el: New file from Emacs 19.34.
|
|
2665
|
|
2666 * emulators/edt-pc.el: New file from Emacs 19.34.
|
|
2667
|
|
2668 * emulators/edt-mapper.el: New file from Emacs 19.34.
|
|
2669
|
|
2670 * emulators/edt-lk201.el: New file from Emacs 19.34.
|
|
2671
|
|
2672 * emulators/edt.el: Synched up to Emacs 19.34.
|
|
2673
|
|
2674 Thu Dec 5 12:09:19 1996 Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
|
|
2675
|
|
2676 * prim/replace.el (match-string): Use a function instead of a
|
|
2677 macro to be compatible with .elc files compiled under Emacs.
|
|
2678
|
|
2679 Thu Dec 5 09:50:12 1996 Bob Weiner <weiner@infodock.com>
|
|
2680
|
|
2681 * utils/id-select.el: New file -- Version 1.4.3.
|
|
2682
|
|
2683 Thu Dec 5 09:17:53 1996 Gary D. Foster <Gary.Foster@corp.sun.com>
|
|
2684
|
|
2685 * emulators/crisp.el: New file.
|
|
2686
|
|
2687 * emulators/scroll-lock.el: New file.
|
|
2688
|
|
2689 Thu Dec 5 00:15:59 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2690
|
|
2691 * prim/help.el: A callable library-type function should not
|
|
2692 contain an unprotected print statement. This change implements my
|
|
2693 version of Erik Naggum's statement about locate-library being less
|
|
2694 chatty in Emacs 19.35.
|
|
2695
|
|
2696 Wed Dec 4 22:00:49 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2697
|
|
2698 * utils/flow-ctrl.el: Synch up to Emacs 19.34.
|
|
2699
|
|
2700 * utils/forms.el: Synch up to Emacs 19.34.
|
|
2701
|
|
2702 * packages/column.el: Allow column numbers to start at one.
|
|
2703
|
|
2704 * prim/userlock.el: Synch up to Emacs 19.34.
|
|
2705
|
|
2706 * prim/paragraphs.el: Synch up to Emacs 19.34.
|
|
2707
|
|
2708 * prim/page.el: Synch up to Emacs 19.34.
|
|
2709
|
|
2710 * prim/options.el: Synch up to Emacs 19.34.
|
|
2711
|
|
2712 * prim/novice.el: Synch up to Emacs 19.34.
|
|
2713
|
|
2714 * prim/rect.el: Sync up to Emacs 19.34.
|
|
2715
|
|
2716 * prim/reposition.el: Synch up to Emacs 19.34.
|
|
2717
|
|
2718 * prim/replace.el: Synch up to Emacs 19.34.
|
|
2719
|
|
2720 * prim/register.el: Synch up to Emacs 19.34.
|
|
2721
|
|
2722 * prim/indent.el: Synch up to Emacs 19.34.
|
|
2723
|
|
2724 * prim/subr.el: Synch up to Emacs 19.34.
|
|
2725
|
|
2726 * prim/simple.el: Synch up to Emacs 19.34.
|
|
2727
|
|
2728 * prim/debug.el: Synch up to Emacs 19.34.
|
|
2729
|
|
2730 * edebug/cl-specs.el: Comment formatting changes.
|
|
2731
|
|
2732 * edebug/cl-read.el: Protect advisement of eval-region from being
|
|
2733 evaluated more than once.
|
|
2734
|
|
2735 Comment formatting changes.
|
|
2736
|
|
2737 * edebug/advise-eval-region.el: New File. Separate out advise for
|
|
2738 eval-region so it is only evaluated once.
|
|
2739
|
|
2740 * packages/icomplete.el: Fix a bug in locating command bound to key.
|
|
2741
|
|
2742 icomplete-exhibit needs to be called in the setup-hook.
|
|
2743
|
|
2744 * packages/apropos.el: Correct a typo in button binding.
|
|
2745
|
|
2746 Fixes the bug where if apropos-label-face is actually defined as
|
|
2747 face, apropos bombs with an error
|
|
2748
|
|
2749 Do a (provide 'apropos), like all packages should.
|
|
2750
|
|
2751 Provides an apropos-mode-hook for Apropos Mode buffers (otherwise
|
|
2752 customization is unnecessarily painful).
|
|
2753
|
|
2754 Redefines the default faces for the various apropos faces so they
|
|
2755 come out in color by default (defaults are based on various
|
|
2756 standard font-lock faces).
|
|
2757
|
|
2758 * version.el: Bumped up to b31.
|
|
2759
|
|
2760
|