XEmacs 21.2.47 (Zephir).
[chise/xemacs-chise.git.1] / lisp / ChangeLog
1 2001-04-14  Stephen J. Turnbull  <stephen@xemacs.org>
2
3         * XEmacs 21.2.47 "Zephir" is released.
4
5 2001-04-02  Jan Vroonhof  <jan.vroonhof@ntlworld.com>
6
7         * dialog.el (make-dialog-box): Disable dialog box titles until
8         we get them working.
9
10 2001-03-30  Ben Wing  <ben@xemacs.org>
11
12         * help.el:
13         * help.el (Help-princ-face):
14         * help.el (Help-prin1-face):
15         * help.el (frob-help-extents):
16         * help.el (describe-function-1):
17         * help.el (describe-variable):
18         Avoid using font-lock faces, which may not be defined.
19         Instead, use hyper-apropos faces, and make sure they're
20         defined as necessary by using `require'. (It's not so safe
21         to do this for font-lock.) In any case, we will eventually
22         be merging this functionality into hyper-apropos.
23
24         * loaddefs.el (completion-ignored-extensions):
25         Fix documentation.
26         
27         * menubar-items.el (menu-truncate-list): Removed.
28         * menubar-items.el (Menubar-items-truncate-list): New.
29         * menubar-items.el (default-menubar):
30         Fix errors if grep or compile command is too long.  Rename helper
31         function to be less visible.
32
33 2001-03-23  Martin Buchholz  <martin@xemacs.org>
34
35         * byte-optimize.el (byte-optimize-minus):
36         Fix mis-byte-compilation of (- 0 x) --> (- (- x))
37
38 2001-03-26  Hrvoje Niksic  <hniksic@arsdigita.com>
39
40         * dumped-lisp.el (preloaded-file-list): Load mule/latin.el when
41         Mule is available.
42
43         * mule/latin.el: New file.
44
45 2001-03-11  Ben Wing  <ben@xemacs.org>
46
47         * auto-save.el:
48         * auto-save.el (auto-save-directory):
49         * auto-save.el (make-auto-save-file-name):
50         * auto-save.el (auto-save-file-name-p): New.
51
52         Merge in improvements from other definition of
53         make-auto-save-file-name in files.el.
54         
55         * auto-save.el (auto-save-original-name):
56         * auto-save.el (auto-save-name-in-fixed-directory):
57         * auto-save.el (auto-save-unslashify-name): Removed.
58         * auto-save.el (auto-save-slashify-name): Removed.
59         * auto-save.el (auto-save-reserved-chars): New.
60         * auto-save.el (auto-save-escape-name): New.
61         * auto-save.el (auto-save-unhex): New.
62         * auto-save.el (auto-save-unescape-name): New.
63
64         Change algorithm for encoding filenames in auto-save names to be
65         entirely safe with all filesystems and all possible characters in
66         a filename, and 100% reversible. (Essentially, uses
67         quoted-printable as the encoding.)
68         
69         * auto-save.el (recover-all-files):
70
71         Use insert-directory rather than calling ls directly -- fixes
72         things under Windows.
73
74         * files.el:
75         * files.el (convert-standard-filename): Substitute FSF's
76         definition for this (we had nothing here before).
77         
78         * files.el (backup-buffer): Warning fix.
79         
80         * files.el (make-backup-file-name):
81         * files.el (find-backup-file-name):
82         Fix error in calling sequence to auto-save-file-name-p.
83         
84         * files.el (recover-file):
85         Use insert-directory rather than calling ls directly -- fixes
86         things under Windows.
87
88         * files.el (make-auto-save-file-name): Removed.
89         * files.el (auto-save-file-name-p): Removed.
90         auto-save is always dumped so no sense in having a definition
91         that will always be overwritten with another.
92         
93         * files.el (insert-directory):
94         * win32-native.el:
95         * win32-native.el (debug-mswindows-process-command-lines):
96         * win32-native.el (original-make-auto-save-file-name): Removed.
97         * win32-native.el (make-auto-save-file-name): Removed.
98
99
100 2001-03-21  Martin Buchholz <martin@xemacs.org>
101
102         * XEmacs 21.2.46 "Urania" is released.
103
104 2001-03-16  Stephen J. Turnbull  <stephen@xemacs.org>
105
106         * menubar-items.el (default-menubar): Update sample.emacs to
107         sample.init.el and adjust accelerators.
108
109 2001-02-02  Stephen J. Turnbull  <stephen@xemacs.org>
110
111         * build-report.el (build-report): Improve docstring.
112
113 2001-03-15  Stephen J. Turnbull  <stephen@xemacs.org>
114
115         * ChangeLog: Log GTK merge.
116
117         * gutter-items.el:
118         * mwheel.el:
119         * sound.el:
120         * startup.el:
121         Revert gratuitous whitespace changes.
122
123 2001-03-07  Ben Wing  <ben@xemacs.org>
124
125         * help.el:
126         * help.el (key-or-menu-binding):
127         * help.el (Help-find-file): New.
128         * help.el (describe-beta):
129         * help.el (describe-copying):
130         * help.el (describe-project):
131         * help.el (view-emacs-news):
132         * help.el (view-sample-init-el): New.
133         * help.el (Help-princ-face): New.
134         * help.el (Help-prin1-face): New.
135         * help.el (help-symbol-function-context-menu):
136         * help.el (help-symbol-variable-context-menu):
137         * help.el (help-symbol-function-and-variable-context-menu):
138         * help.el (frob-help-extents):
139         * help.el (describe-function-1):
140         * help.el (describe-variable):
141
142         Add coloring in Help buffers, correspondent with hyperlinks.
143         View files in view-mode rather than Fundamental.
144         Remove separators from context menus -- now handled in generic code.
145         Add `Find Tag' to context menu.
146         
147         * menubar.el (popup-mode-menu):
148
149         Rewrite code that outputs the popup menu to (a) put more specific
150         entries first, (b) be more robust, (c) output the proper context
151         menu separators automatically (the context menu functionality is
152         new and currently used only by Help).
153
154 2001-03-10  William M. Perry  <wmperry@aventail.com>
155
156         * dialog-gtk.el (gtk-make-dialog-box-internal): Forgot to rewrite
157         this function when converting from the 21.1 GTK branch.  Now
158         supports file, password, question, and color built-in dialogs.
159
160 2001-03-06  Ben Wing  <ben@xemacs.org>
161
162         * keydefs.el:
163         * keydefs.el (global-map):
164         Add commented-out change of M-k (for 21.5).
165         
166         * menubar-items.el (default-menubar):
167         Fix items to control kill-line behavior; add items for
168         shifted motion.
169         
170         * simple.el:
171         * simple.el (kill-whole-line):
172         * simple.el (historical-kill-line): Removed.
173         * simple.el (kill-line): Removed.
174         * simple.el (kill-entire-line): New.
175         * simple.el (kill-line-1): New.
176         * simple.el (backward-kill-line):
177         Undo kill-whole-line == always changes.  Add new function
178         kill-entire-line to unconditionally delete the current line.
179         Add comments describing the lamentable state of affairs of
180         the kill-line functions and variables.
181
182 2001-03-02  Ben Wing  <ben@xemacs.org>
183
184         * simple.el:
185         * simple.el (beginning-of-buffer):
186         * simple.el (end-of-buffer):
187         * simple.el (mark-ring-unrecorded-commands):
188         * simple.el (signal-error-on-buffer-boundary):
189         * simple.el (shifted-motion-keys-select-region):
190         * simple.el (unshifted-motion-keys-deselect-region):
191         * simple.el (motion-keys-for-shifted-motion): New.
192         * simple.el (handle-pre-motion-command):
193         * simple.el (handle-post-motion-command):
194         * simple.el (forward-char-command):
195         * simple.el (backward-char-command):
196         * simple.el (scroll-up-command):
197         * simple.el (scroll-down-command):
198         * simple.el (next-line):
199         * simple.el (previous-line):
200         * simple.el (backward-block-of-lines):
201         * simple.el (forward-block-of-lines):
202         * simple.el (backward-word):
203         * simple.el (mark-word):
204
205         Augment documentation of the most common motion commands to make
206         note of the shifted-motion support.  Improve the support to (a)
207         properly document how it works and why it's done in the fashion it
208         is, and (b) allow the keystrokes that trigger it to be customized.
209
210         Correct error in the customize specification of
211         mark-ring-unrecorded-commands.
212
213 2001-03-02  Ben Wing  <ben@xemacs.org>
214
215         * font-lock.el:
216         * font-lock.el (font-lock-pending-extent-table): Removed.
217         * font-lock.el (font-lock-pending-buffer-table): New.
218         * font-lock.el (font-lock-pre-idle-hook):
219         * font-lock.el (font-lock-after-change-function):
220         * font-lock.el (font-lock-fontify-pending-extents):
221         * font-lock.el (font-lock-lisp-like):
222
223         Fix handling of pending extents to avoid excessive slowness (N^2
224         behavior) when making lots of buffer changes between redisplays,
225         such as when saving the Options.
226
227 2001-03-09  William M. Perry  <wmperry@aventail.com>
228
229         * device.el:
230         * dragdrop.el:
231         * dumped-lisp.el:
232         * faces.el:
233         * frame.el:
234         * gnuserv.el:
235         * loadup.el:
236         * menubar-items.el:
237         * minibuf.el:
238         The Great GTK Merge.
239
240         * ChangeLog.GTK:
241         * dialog-gtk.el:
242         * gdk.el:
243         * generic-widgets.el:
244         * glade.el:
245         * gnome-widgets.el:
246         * gnome.el:
247         * gtk-compose.el:
248         * gtk-extra.el:
249         * gtk-faces.el:
250         * gtk-ffi.el:
251         * gtk-file-dialog.el:
252         * gtk-font-menu.el:
253         * gtk-glyphs.el:
254         * gtk-init.el:
255         * gtk-iso8859-1.el:
256         * gtk-marshal.el:
257         * gtk-mouse.el:
258         * gtk-package.el:
259         * gtk-password-dialog.el:
260         * gtk-select.el:
261         * gtk-widget-accessors.el:
262         * gtk-widgets.el:
263         * gtk.el:
264         widgets-gtk.el:
265         The Great GTK Merge: new files.
266
267 2001-03-05  Stephen J. Turnbull  <stephen@xemacs.org>
268
269         * generic-widgets.el: Don't require gtk (a built-in feature) at
270         top level.  Don't execute the last sexp unless (featurep 'gtk).
271
272 2001-02-28  Stephen J. Turnbull  <stephen@xemacs.org>
273
274         * mule/mule-init.el (auto-language-alist): Split zh into GB and BIG5.
275
276 2001-02-23  Martin Buchholz <martin@xemacs.org>
277
278         * XEmacs 21.2.45 "Thelxepeia" is released.
279
280 2001-01-25  Jason R. Mastaler  <jason@xemacs.org> 
281  
282         * about.el (xemacs-hackers): update my entry. 
283         * about.el (about-maintainer-info): ditto. 
284         * about.el (about-hackers): ditto. 
285
286 2001-02-20  Jan Vroonhof  <jan@xemacs.org>
287
288         * about.el (about-maintainer-info): More vanity info about
289         yours truly.
290
291 2001-02-20  Adrian Aichner  <adrian@xemacs.org>
292
293         * build-report.el (build-report-destination): xemacs-build-reports
294         has moved to SourceForge, where mailing list name length is
295         restricted, hence the name change to
296         xemacs-buildreports@xemacs.org.
297         * build-report.el (build-report-keep-regexp): Update default.
298         * build-report.el (build-report-delete-regexp): Ditto.
299         * build-report.el (build-report-make-output-files): Ditto.
300
301 2001-02-19  Craig Lanning  <lanning@scra.org>
302
303         * lisp-mode.el: Add indentation specifications for following
304         Common Lisp forms: handler-case, handler-bind, with-slots,
305         with-open-file, with-open-stream, print-unreadable-object.
306
307 2001-02-18  Matt Tucker  <tuck@whistlingfish.net>
308
309         * font-lock.el (font-lock-set-defaults-1):
310         Move initialization of `font-lock-cache-position' so that it's set
311         even if font-lock-keywords is already defined.
312
313 2001-02-17  Matt Tucker  <tuck@whistlingfish.net>
314
315         * autoload.el (generate-file-autoloads-1):
316         Use `emacs-lisp-mode-syntax-table' instead of
317         `lisp-mode-syntax-table'.
318         * lisp-mode.el (lisp-mode-syntax-table):
319         Get rid of old checks for `parse-partial-sexp' version.
320         Make `|' (pipe) string delimiter instead of punctuation.
321
322 2001-02-16  Martin Buchholz  <martin@xemacs.org>
323
324         * window.el (save-selected-window):
325         Use gensym for better macro hygiene.
326
327 2001-02-06  Mike Sperber <mike@xemacs.org>
328
329         * dump-paths.el:
330         * startup.el (startup-setup-paths): Set and use
331         `mule-lisp-directory'.
332         (startup-setup-paths-warning): Ditto.
333
334         * setup-paths.el (paths-find-mule-lisp-directory): Added.
335         (paths-construct-load-path): Consider `mule-lisp-directory'.
336
337 2001-02-07  Matt Tucker  <tuck@whistlingfish.net>
338
339         * font-lock.el: Syntax table improvements used.  A few random
340         changes are not specified below.
341         (font-lock-fontify-string-delimiters):
342         (font-lock-syntactic-keywords):
343         (font-lock-cache-state nil):
344         (font-lock-cache-position):
345         New variables.
346         (font-lock-set-syntax):
347         (font-lock-apply-syntactic-highlight):
348         (font-lock-fontify-syntactic-anchored-keywords):
349         (font-lock-fontify-syntactic-keywords-region):
350         (font-lock-eval-keywords):
351         New functions.
352         (font-lock-remove-face):
353         (font-lock-fontify-syntactically-region):
354         Use syntax properties.
355
356 2001-02-08  Martin Buchholz <martin@xemacs.org>
357
358         * XEmacs 21.2.44 "Thalia" is released.
359
360 2001-01-16  Mike Sperber <mike@xemacs.org>
361
362         * startup.el (normal-top-level): Work even if no installation root
363         is found.
364
365 2001-01-30  Andy Piper  <andy@xemacs.org>
366
367         * gutter-items.el (progress-abort-glyph): remove instantiator.
368         (set-progress-abort-instantiator): new function.
369         (abort-progress-feedback): use it.
370
371         * gutter.el (set-gutter-dirty-p): new function.
372
373 2001-01-30  Didier Verna  <didier@xemacs.org>
374
375         * mwheel.el (mwheel-scroll): unwind-protect the selected window.
376
377 2001-01-24  Didier Verna  <didier@xemacs.org>
378
379         * sound.el (sound-extension-list): give a better default value.
380         * sound.el (load-sound-file): improve the doc string, also find
381         files given by absolute names, pass a real extension list to
382         `locate-file'.
383
384 2001-01-26  Martin Buchholz <martin@xemacs.org>
385
386         * XEmacs 21.2.43 "Terspichore" is released.
387
388 2001-01-20  Klaus Frank <klausf@i3.informatik.rwth-aachen.de>
389
390         * gnuserv.el (gnuserv-process-filter): Robuster handling of error
391         messages from gnuserv.
392
393 2001-01-20  Martin Buchholz <martin@xemacs.org>
394
395         * XEmacs 21.2.42 "Poseidon" is released.
396
397 2001-01-12  Andy Piper  <andy@xemacs.org>
398
399         * package-get.el (package-get-custom): call
400         package-net-update-installed-db.
401
402         * package-ui.el (pui-install-selected-packages): call
403         package-net-update-installed-db.
404
405         * package-net.el (package-net-update-installed-db): use
406         packages-package-list so that we reflect reality.
407
408         * packages.el (packages-package-list): Make docstring reflect
409         reality.
410
411         * package-net.el (package-net-convert-index-to-ini): exclude mule entries.
412
413         * postinstall.cc (do_postinstall): don't pick up shells if cygwin
414         isn't installed.
415
416 2001-01-17  Andy Piper  <andy@xemacs.org>
417
418         * wid-edit.el (widget-activation-glyph-mapper): activate or
419         deactivate native widgets.
420         (widget-glyph-insert-glyph): record instantiator.
421         (widget-push-button-value-create): use it.
422
423         * gui.el (gui-button-action): new function. Make button's domain
424         buffer current when calling.
425         (make-gui-button): update to use gui-button-action.
426
427 2001-01-16  Didier Verna  <didier@xemacs.org>
428
429         * menubar-items.el (default-menubar): add an entry for modeline
430         horizontal scrolling in Options -> Display.
431
432 2001-01-17  Steve Youngs  <youngs@xemacs.org>
433
434         * package-get.el (package-get-require-signed-base): Set to nil
435         by default.
436
437 2001-01-17  Martin Buchholz <martin@xemacs.org>
438
439         * XEmacs 21.2.41 "Polyhymnia" is released.
440
441 2001-01-16  Mike Sperber <mike@xemacs.org>
442
443         * setup-paths.el (paths-core-load-path-depth): Stopgap bump to
444         catch lisp/mule/.
445
446 2001-01-14  Mike Sperber <mike@xemacs.org>
447
448         * startup.el (maybe-create-compatibility-dot-emacs):
449         (maybe-unmigrate-user-init-file):
450         (unmigrate-user-init-file): Created.
451         (maybe-migrate-user-init-file): Offer creation of compatibility
452         .emacs.
453         Some doc fixes wrt init file location.
454
455 2001-01-15  Golubev I. N.  <gin@mo.msk.ru>
456
457         * faces.el (face-frob-from-locale-first): new variable.
458         (frob-face-font-2): Honor tags arg while trying to use
459         standard-face-mapping.  When face-frob-from-locale-first is set,
460         first try to set face inheriting from frobbed-face.
461
462 2001-01-15  Didier Verna  <didier@xemacs.org>
463
464         * about.el (xemacs-hackers): update my entry.
465         * about.el (about-url-alist): ditto.
466         * about.el (about-maintainer-info): ditto.
467         * about.el (about-hackers): ditto.
468
469 2001-01-15  Martin Buchholz  <martin@xemacs.org>
470
471         The byte compiler has been badly broken for a year,
472         by the patch of 1999-12-06.
473         * byte-optimize.el (byte-optimize-form-code-walker):
474         Bug was: the byte compiler was making this erroneous optimization:
475         (progn (or (foo)) (bar)) ==> (bar)
476
477 2000-11-20  Mike Sperber <mike@xemacs.org>
478
479         * setup-paths.el (paths-core-load-path-depth): Split
480         `paths-load-path-depth' in two for site and core lisp.  Don't
481         recurse into core.
482         * setup-paths.el (paths-construct-load-path): Use.
483
484 2001-01-10  Andy Piper  <andy@xemacs.org>
485
486         * package-net.el (package-net-cygwin32-binary-size): new variable
487         (package-net-win32-binary-size): ditto.  add much needed
488         commentary.
489
490         * gutter-items.el (buffers-tab-items): correct off-by-one error
491         for buffers-tab-max-size.
492
493 2001-01-08  Martin Buchholz <martin@xemacs.org>
494
495         * XEmacs 21.2.40 is released.
496
497 2001-01-06  Stephen J. Turnbull  <stephen@xemacs.org>
498
499         * mule/hebrew.el: Fix comments and typos.
500         mule/japanese.el: Fix comments, typos, and 8-bit character encoding.
501
502 2001-01-06  Stephen J. Turnbull  <stephen@xemacs.org>
503
504         * ChangeLog.1: move ancient log from fill.el.
505
506         * dump-paths.el:
507         paragraphs.el:
508         mule/mule-category.el:
509         Miscellaneous typo fixes and slight doc clarifications.
510
511         * mule/mule-ccl.el:  Correct file name in header.
512
513 2000-12-31  Martin Buchholz <martin@xemacs.org>
514
515         * XEmacs 21.2.39 is released.
516
517 2000-12-27  Martin Buchholz  <martin@xemacs.org>
518
519         * byte-optimize.el (byte-optimize-cond):
520         (byte-optimize-cond-1): New.
521         Rewrite `cond' in terms of `if' and `or', which are easier to optimize.
522         Optimizes (cond (x nil)) ==> nil.
523         Provide better diagnostic on malformed expr like (cond foo).
524
525 2000-12-20  Stephen J. Turnbull  <stephen@xemacs.org>
526
527         * mule/mule-coding.el:
528         mule/mule-cmds.el (reset-language-environment,
529         set-language-environment-coding-systems):
530         Safer default coding-priority-list, corresponding to src/file-coding.h.
531
532 2000-12-03  Jorma Laaksonen <jorma.laaksonen@hut.fi>
533
534         * package-admin.el: Allow package removal from
535         early-package-load-path.
536
537 2000-12-15  Andreas Jaeger  <aj@suse.de>
538
539         * about.el (about-maintainer-info): Update my entry.
540
541 2000-12-11  Matt Tucker  <tuck@whistlingfish.net>
542
543         * packages.el (locate-library): Add support for bzip2
544         compressed .el files.
545
546 2000-12-12  Andy Piper  <andy@xemacs.org>
547
548         * package-net.el: new file.
549
550 2000-12-01  Enrico Scholz  <enrico.scholz@informatik.tu-chemnitz.de>
551
552         * font-lock.el: Add missing C++ keywords.
553
554 2000-12-08  Adrian Aichner  <adrian@xemacs.org>
555
556         * simple.el (indent-for-comment): Preserve indentation of comments
557         starting in column 0, as documented in (Info-goto-node
558         "(xemacs)Comments").  Update docstring accordingly.
559
560 2000-12-05  Martin Buchholz <martin@xemacs.org>
561
562         * XEmacs 21.2.38 is released.
563
564 2000-12-04  Didier Verna  <didier@xemacs.org>
565
566         * mouse.el (default-mouse-track-set-point-in-window): remove
567         spurious '+' operation detected by Martin.
568
569
570 2000-12-01  Martin Buchholz  <martin@xemacs.org>
571
572         * cl-extra.el (coerce):
573         Implement char to integer coercion.
574         Remove extraneous (numberp) test.
575
576         * byte-optimize.el (byte-compile-splice-in-already-compiled-code):
577         Perform lapcode inlining if the value of `byte-optimize' is 'byte.
578         (byte-optimize-predicate):
579         Warn if evaluating constant expression signals an error.
580         (byte-optimize-form): Small simplification.
581
582         * cl-macs.el (cl-do-proclaim): small efficiency improvement.
583
584 2000-11-30  Martin Buchholz  <martin@xemacs.org>
585
586         * byte-optimize.el:
587         (byte-optimize-minus):
588         (byte-optimize-plus):
589         (byte-optimize-mult):
590         (byte-optimize-quo):
591         Use (car (last x)) instead of (last x) to get last elt!
592         Use `byte-optimize-predicate' to optimize `%'.
593         Move optimizations for special numeric args to bytecomp.el.
594         * bytecomp.el (byte-compile-associative): Remove.
595         (byte-compile-max): New.
596         (byte-compile-min): New.
597         Properly handle erroneous calls: (max) (min).
598         (byte-compile-plus): New.
599         (byte-compile-minus):
600         It's easiest to handle 0, +1 and -1 args here.
601         (byte-compile-mult): New.
602         It's easiest to handle 1, -1 and 2 args here.
603         (byte-compile-quo):
604         It's easiest to handle 0, +1 and -1 args here.
605         Issue byte-compiler warning when dividing by zero.
606
607         Byte-compiler arithmetic improvements.
608         Better optimize these expressions in the obvious way:
609         (+ x y 1)   -->  varref x varref y add add1
610         (+ x y -1)  -->  varref x varref y add sub1
611         (- x y 0)   -->  (- x y)
612         (- 0 x y)   -->  (- (- x) y)
613         (% 42 19)   --> compile-time constant
614         (/ 42 19)   --> compile-time constant
615         (* (foo) 2) --> foo call dup plus
616
617         Optimize away arithmetic operations (+ x) (* x) (/ x 1)
618         unless (declaim (optimize (safety 3)))
619         or (setq byte-compile-delete-errors nil).
620
621 2000-11-28  Stephen J. Turnbull  <stephen@xemacs.org>
622
623         * paragraphs.el (paragraph-separate, forward-sentence):  Clarify
624         docstrings.
625
626 2000-11-08  Stephen J. Turnbull  <stephen@xemacs.org>
627
628         * startup.el (command-line-do-help):  Add documentation of
629         portable dumper switches.
630
631 2000-11-22  Andy Piper  <andy@xemacs.org>
632
633         * x-mouse.el (x-init-pointer-shape): use cursor-font explicitly.
634
635         * glyphs.el (init-glyphs): don't use autodetect for strings.
636
637 2000-11-28  Martin Buchholz  <martin@xemacs.org>
638
639         * byte-optimize.el (byte-optimize-char-before):
640         (byte-optimize-backward-char):
641         (byte-optimize-backward-word):
642         Fix incorrect optimizations for these sorts of expressions:
643         (let ((x nil)) (backward-char x))
644
645 2000-11-21  Martin Buchholz  <martin@xemacs.org>
646
647         * byte-optimize.el:
648         * byte-optimize.el (byte-optimize-backward-char): New.
649         * byte-optimize.el (byte-optimize-backward-word): New.
650         Make backward-word and backward-char as efficient as forward versions.
651
652         * bytecomp.el (byte-compile-no-args-with-one-extra):
653         * bytecomp.el (byte-compile-one-arg-with-one-extra):
654         * bytecomp.el (byte-compile-two-args-with-one-extra):
655         * bytecomp.el (byte-compile-zero-or-one-arg-with-one-extra):
656         * bytecomp.el (byte-compile-one-or-two-args-with-one-extra):
657         * bytecomp.el (byte-compile-two-or-three-args-with-one-extra):
658         Check if extra arg is constant nil, and if so, use byte-coded call.
659
660         * simple.el (backward-word):
661         * simple.el (mark-word):
662         * simple.el (kill-word):
663         * simple.el (backward-kill-word):
664         Make COUNT argument optional, for consistency with forward-char et al.
665
666         * abbrev.el (abbrev-string-to-be-defined):
667         * abbrev.el (inverse-abbrev-string-to-be-defined):
668         * abbrev.el (inverse-add-abbrev):
669         * abbrev.el (expand-region-abbrevs):
670         * buff-menu.el (Buffer-menu-execute):
671         * indent.el (move-to-left-margin):
672         * indent.el (indent-relative):
673         * indent.el (move-to-tab-stop):
674         * info.el (Info-reannotate-node):
675         * lisp-mode.el (lisp-indent-line):
676         * lisp.el (end-of-defun):
677         * lisp.el (move-past-close-and-reindent):
678         * misc.el (copy-from-above-command):
679         * mouse.el (default-mouse-track-scroll-and-set-point):
680         * page.el (forward-page):
681         * paragraphs.el (forward-paragraph):
682         * paragraphs.el (end-of-paragraph-text):
683         * picture.el (picture-forward-column):
684         * picture.el (picture-self-insert):
685         * rect.el (extract-rectangle-line):
686         * simple.el (newline):
687         * simple.el (fixup-whitespace):
688         * simple.el (backward-delete-char-untabify):
689         * simple.el (transpose-chars):
690         * simple.el (transpose-preceding-chars):
691         * simple.el (do-auto-fill):
692         * simple.el (indent-new-comment-line):
693         * simple.el (blink-matching-open):
694         * view-less.el (cleanup-backspaces):
695         * wid-edit.el (widget-transpose-chars):
696         * term/bg-mouse.el (bg-insert-moused-sexp):
697         Use more readable (backward-FOO n) instead of (forward-FOO -n).
698
699         * info.el (Info-fontify-node):
700         * simple.el (backward-delete-function):
701         Use canonical delete-backward-char instead of backward-delete-char.
702
703 2000-11-20  Andy Piper  <andy@xemacs.org>
704
705         * gutter-items.el (update-tab-in-gutter): don't barf if there are
706         no buffers.
707
708 2000-11-20  Andy Piper  <andy@xemacs.org>
709
710         * gutter-items.el (update-tab-in-gutter): don't give popup frames
711         buffer tabs.
712
713 2000-11-18  Martin Buchholz  <martin@xemacs.org>
714
715         * cl-macs.el: Correctly optimize plusp minusp oddp evenp.
716         (proclaim inline...) was shadowing compiler-macros.
717
718 2000-11-17  Martin Buchholz  <martin@xemacs.org>
719
720         * bytecomp.el (byte-compile-eval): New.
721         (byte-compile-initial-macro-environment): Use byte-compile-eval.
722         Keeps this promise made in Lispref:
723         "If a file being compiled contains a `defmacro' form, the macro is
724         defined temporarily for the rest of the compilation of that file."
725
726 2000-11-09  Martin Buchholz  <martin@xemacs.org>
727
728         * cl.el (floatp-safe):
729         (plusp):
730         (minusp):
731         (oddp):
732         (evenp):
733         (cl-abs):
734         Use a better parameter name than `x'.
735
736         * cl-macs.el (check-type): Make continuable.  Change documentation
737         to require PLACE, but accept any form for compatibility.
738
739         * abbrev.el (define-abbrev): Use check-type.
740         * font-menu.el (font-menu-change-face): Use check-type.
741         * menubar.el (relabel-menu-item): Use check-type.
742         * itimer.el: Fix typo.
743
744 2000-11-10  Yoshiki Hayashi  <yoshiki@xemacs.org>
745
746         * info.el (Info-extract-menu-node-name): Comma is a delimiter.
747
748 2000-11-14  Martin Buchholz <martin@xemacs.org>
749
750         * XEmacs 21.2.37 is released.
751
752 2000-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
753
754         * code-cmds.el: Provide the feature.
755
756 2000-07-21  Jan Vroonhof  <jan@xemacs.org>
757
758         * dumped-lisp.el (preloaded-file-list): Load code-cmds.el
759
760         * code-cmds.el: New file
761         * mule/mule-cmds.el:
762         * mule/mule-misc.el
763         (coding-keymap): New keymap. Define coding system keyboard
764         commands on file-coding builds too.
765         (coding-system-change-eol-conversion):
766         (universal-coding-system-argument):
767         (set-default-coding-systems):
768         (prefer-coding-system): Moved from mule-cmds.el
769         (set-buffer-process-coding-system): Moved from mule-misc.el
770
771 2000-09-15  Stephen Carney <carney@scubadoo.com>
772
773         * etags.el (buffer-tag-table-files): Use append instead of nconc.
774
775 2000-11-09  Steve Youngs  <youngs@xemacs.org>
776
777         * package-get.el (package-get-download-sites): Add a pre-release
778         site for experimental packages.
779
780         * auto-autoloads.el: Regenerated.
781
782 2000-08-01  Andy Piper  <andy@xemacs.org>
783
784         * gutter-items.el (buffers-tab-omit-function): reference
785         buffers-tab-select-visible-buffers.
786         (buffers-tab-filter-functions): new variable, by default uses
787         buffers-tab-selection-function and buffers-tab-omit-function.
788         (select-buffers-tab-buffers-by-mode): invert arguments.
789         (buffers-tab-select-visible-buffers): new function. Invert calling
790         of buffers-menu-omit-invisible-buffers.
791         (buffers-tab-items): rewrite to use
792         buffers-tab-filter-functions. Rewrite docstring.
793         (gutter-buffers-tab-extent): delete.
794         (add-tab-to-gutter): always build a new extent when adding the
795         tabs.
796         (update-tab-in-gutter): make gutter dirty when orientation
797         changes.
798
799 2000-11-07  Martin Buchholz  <martin@xemacs.org>
800
801         * bytecomp.el (byte-compile-defvar-or-defconst):
802         Only do loadhist recording if defvar form includes a value.
803
804 2000-11-02  Martin Buchholz  <martin@xemacs.org>
805
806         * bytecomp.el (byte-compile-initial-macro-environment):
807         `eval-when-compile' should not compile its body.
808
809 2000-11-02  Stephen J. Turnbull  <stephen@xemacs.org>
810
811         * mule/cyrillic.el: Add Windows 1251 code page encoding (by
812         Sergey Groznyh <gsm@fct.ru> in <863diqaygu.fsf@fct.ru>).  Fix
813         some Japanese English.  Remove some ancient FSF comments, and
814         improve docstrings.  Use symbols not vectors for tables.
815
816 2000-11-03  Martin Buchholz  <martin@xemacs.org>
817
818         * keymap.el:
819         (local-key-binding):
820         (global-key-binding):
821         Add an optional `accept-defaults' parameter, just like `lookup-key'.
822
823         * lisp.el:
824         (backward-sexp): Slightly simpler code.
825         (mark-sexp): Make arg optional, like FSF Emacs.
826         (forward-list): Slightly simpler code.
827         (backward-list): Slightly simpler code.
828         (down-list):  Make arg optional, like FSF Emacs.
829         (up-list):  Make arg optional, like FSF Emacs.
830         (backward-up-list):  Make arg optional, like FSF Emacs.
831         (kill-sexp):  Make arg optional, like FSF Emacs.
832         (backward-kill-sexp):  Make arg optional, like FSF Emacs.
833
834         * font-menu.el (font-menu-change-face):
835         Take continuable errors into account.
836
837         * abbrev.el:
838         * abbrev.el (clear-abbrev-table):
839         * abbrev.el (define-abbrev-table):
840         * abbrev.el (define-abbrev):
841         * abbrev.el (insert-abbrev-table-description):
842         * apropos.el (apropos-documentation-check-doc-file):
843         * apropos.el (apropos-documentation-check-elc-file):
844         * buff-menu.el (list-buffers):
845         * buff-menu.el (list-buffers-noselect):
846         * bytecomp.el (byte-recompile-directory):
847         * bytecomp.el (batch-byte-compile):
848         * cl-macs.el (typep):
849         * code-files.el (find-coding-system-magic-cookie):
850         * code-files.el (insert-file-contents):
851         * cus-edit.el (customize-set-variable):
852         * cus-edit.el (customize-save-variable):
853         * cus-face.el (custom-set-face-font-size):
854         * cus-face.el (custom-set-face-update-spec):
855         * cus-face.el (custom-reset-faces):
856         * custom.el (custom-check-theme):
857         * custom.el (copy-upto-last):
858         * fill.el (canonically-space-region):
859         * fill.el (fill-paragraph):
860         * fill.el (fill-region):
861         * fill.el (find-space-insertable-point):
862         * fill.el (justify-current-line):
863         * faces.el (face-spec-update-all-matching):
864         * faces.el (set-face-stipple):
865         * files-nomule.el (insert-file-contents):
866         * files.el (insert-file-contents-literally):
867         * files.el (hack-local-variables-last-page):
868         * files.el (basic-save-buffer):
869         * files.el (insert-directory):
870         * font-menu.el (font-menu-change-face):
871         * font.el (font-spatial-to-canonical):
872         * format.el (format-encode-region):
873         * format.el (format-insert-file):
874         * format.el (format-replace-strings):
875         * gutter.el (set-gutter-element):
876         * help.el (key-or-menu-binding):
877         * help.el (describe-bindings):
878         * help.el (with-syntax-table):
879         * indent.el (indent-rigidly):
880         * indent.el (delete-to-left-margin):
881         * info.el:
882         * info.el (Info-extract-dir-entry-from):
883         * info.el (Info-build-dir-anew):
884         * info.el (Info-rebuild-dir):
885         * info.el (Info-batch-rebuild-dir):
886         * info.el (Info-read-subfile):
887         * info.el (Info-build-node-completions):
888         * info.el (Info-extract-menu-node-name):
889         * isearch-mode.el (isearch-range-invisible):
890         * isearch-mode.el (isearch-restore-invisible-extents):
891         * itimer.el (itimerp):
892         * itimer.el (itimer-live-p):
893         * keymap.el:
894         * keymap.el (substitute-key-definition):
895         * keymap.el (read-command-or-command-sexp):
896         * keymap.el (local-key-binding):
897         * keymap.el (global-key-binding):
898         * keymap.el (global-set-key):
899         * keymap.el (local-set-key):
900         * ldap.el:
901         * ldap.el (ldap-add-entries):
902         * ldap.el (ldap-delete-entries):
903         * lisp.el (backward-sexp):
904         * lisp.el (mark-sexp):
905         * lisp.el (forward-list):
906         * lisp.el (backward-list):
907         * lisp.el (down-list):
908         * lisp.el (backward-up-list):
909         * lisp.el (up-list):
910         * lisp.el (kill-sexp):
911         * lisp.el (backward-kill-sexp):
912         * menubar.el (add-menu-button):
913         * menubar.el (add-submenu):
914         * menubar.el (delete-menu-item):
915         * menubar.el (relabel-menu-item):
916         * mouse.el (narrow-window-to-region):
917         * obsolete.el (define-obsolete-variable-alias):
918         * obsolete.el (store-substring):
919         * package-admin.el:
920         * package-admin.el (package-admin-install-function):
921         * package-admin.el (package-admin-install-function-mswindows):
922         * package-admin.el (package-admin-default-install-function):
923         * package-get.el (package-get-update-base-entries):
924         * packages.el (packages-load-package-dumped-lisps):
925         * packages.el (packages-collect-package-dumped-lisps):
926         * printer.el (generic-print-buffer):
927         * printer.el (generic-print-region):
928         * replace.el (occur-mode-mouse-goto):
929         * replace.el (perform-replace):
930         * select.el (get-selection-no-error):
931         * simple.el:
932         * simple.el (newline):
933         * simple.el (open-line):
934         * simple.el (edit-and-eval-command):
935         * simple.el (goto-line):
936         * simple.el (undo):
937         * simple.el (kill-region):
938         * simple.el (copy-region-as-kill):
939         * simple.el (kill-ring-save):
940         * simple.el (set-mark):
941         * simple.el (next-line):
942         * simple.el (previous-line):
943         * simple.el (line-move):
944         * simple.el (set-goal-column):
945         * simple.el (comment-region):
946         * subr.el:
947         * subr.el (putf):
948         * syntax.el (modify-syntax-entry):
949         * syntax.el (map-syntax-table):
950         * view-less.el (view-file):
951         * view-less.el (view-buffer):
952         * view-less.el (view-file-other-window):
953         * window-xemacs.el (backward-other-window):
954         * window.el:
955         * window.el (one-window-p):
956         * window.el (walk-windows):
957         * window.el (window-list):
958         * x-mouse.el (x-mouse-kill):
959         * x-select.el (x-get-cutbuffer):
960         * x-select.el (x-store-cutbuffer):
961         * term/bg-mouse.el (bg-mouse-line-to-center):
962         * term/sun-mouse.el (window-line-end):
963         * term/sun-mouse.el (sun-select-region):
964         * term/sun.el (kill-region-and-unmark):
965         * mule/mule-category.el:
966         * mule/mule-category.el (modify-category-entry):
967         * mule/mule-category.el (char-category-list):
968         * mule/mule-coding.el (coding-system-force-on-output):
969         * mule/mule-misc.el (coding-system-put):
970         Docstring arglist/Texinfo fixes.  See man/ChangeLog for details.
971
972 2000-11-02  Stephen J. Turnbull  <stephen@xemacs.org>
973
974         * cus-face.el: Typo fixes and tiny clarifications.
975         * custom.el: ditto
976
977 2000-10-27  Yoshiki Hayashi  <yoshiki@xemacs.org>
978
979         * startup.el (auto-save-list-file-prefix): Moved to fileio.c.
980         * startup.el (normal-top-level): Setup auto-save-list-file-name
981         if auto-save-list-file-prefix is non-nil.
982
983 2000-10-25  Yoshiki Hayashi  <yoshiki@xemacs.org>
984
985         * files.el (auto-mode-alist): Allow mixed case suffix for idlwave-mode.
986
987 2000-01-05  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
988
989         * hyper-apropos.el (hyper-apropos-this-symbol): Don't always
990         get symbol at point-min.
991
992 2000-10-24  Didier Verna  <didier@xemacs.org>
993
994         * info.el (Info-emacs-info-file-name): defconst it.
995         * info.el (Info-footnote-tag): defcustom it.
996         * info.el (Info-no-description-string): ditto.
997         * info.el (Info-find-node): adapt to new semantics of
998         'Info-suffixed-file (don't do the case variants stuff).
999         * info.el (Info-insert-dir): rewrite the dir file variants code.
1000         * info.el (Info-directory-files): New. Return the list of info
1001         files in a directory.
1002         * info.el (Info-dir-outdated-p): use it.
1003         * info.el (Info-parse-dir-entries): ditto.
1004         * info.el (Info-build-dir-anew): don't restrict to files ending
1005         with a ".info.*" extension.
1006         * info.el (Info-set-mode-line): ditto.
1007         * info.el (Info-read-subfile): adapt to new semantics of
1008         'Info-suffixed-file (append 'exact argument).
1009         * info.el (Info-all-case-regexp): New. Return a regexp matching a
1010         string independently of the case.
1011         * info.el (Info-suffixed-file): use it (match all possible case
1012         for the file name).
1013         * info.el (Info-insert-file-contents): code cleanup.
1014         * info.el (Info-rebuild-dir): cosmetics only. Fit code in 80
1015         columns.
1016         * info.el (Info-batch-rebuild-dir): ditto.
1017         * info.el (Info-read-node-name-1): ditto.
1018         * info.el (Info-search): ditto.
1019         * info.el (Info-fontify-node): ditto.
1020
1021
1022 2000-10-24  Didier Verna  <didier@xemacs.org>
1023
1024         * process.el (shell-command): when called from a program, avoid
1025         'push-mark's "mark-set" message.
1026
1027 2000-10-15  MIYASHITA Hisashi  <himi@m17n.org>
1028
1029         * mule/thai-xtis.el (tis-620): Specify coding-system's ccl-program
1030         by a symbol, not by a vector.
1031         * mule/vietnamese.el (vscii): Likewise.
1032         (viscii): Likewise.
1033         * mule/cyrillic.el (koi8-r): Likewise.
1034
1035         * mule/chinese.el (chinese-big5-1): Specify charset's ccl-program
1036         by a symbol, not by a vector.
1037         (chinese-big5-2): Likewise.
1038         * mule/ethiopic.el (ethiopic): Likewise.
1039         * mule/vietnamese.el (vietnamese-viscii-lower): Likewise.
1040         (vietnamese-viscii-upper): Likewise.
1041
1042 2000-10-12  Yoshiki Hayashi  <yoshiki@xemacs.org>
1043
1044         * files.el (auto-mode-alist): Remove obsolete entry for html3-mode.
1045
1046 2000-10-13  Yoshiki Hayashi  <yoshiki@xemacs.org>
1047
1048         * byte-optimize.el (byte-optimize-car): New function.
1049         (byte-optimize-cdr): Ditto.
1050
1051 2000-10-12  Yoshiki Hayashi  <yoshiki@xemacs.org>
1052
1053         * byte-optimize.el: Partial synch with FSF 20.7.
1054         Optimize constant concatenation.
1055         Add keymapp as a side effect free function.  It is a built-in.
1056         (byte-after-unbind-pos): Remove byte-equal.
1057
1058 2000-10-13  Gunnar Evermann  <ge204@eng.cam.ac.uk>
1059
1060         * update-elc-2.el: Quote regexps correctly.
1061
1062 2000-10-05  MIYASHITA Hisashi  <himi@m17n.org>
1063
1064         * mule/mule-ccl.el: Sync up with Emacs 21.0.90.
1065         (ccl-compile): Apply integerp, not integer-or-char-p to
1066         check the type of the buffer magnification
1067         (ccl-compile-write-string): Encode a string with binary
1068         coding system.
1069         (ccl-compile-write-repeat): Likewise.
1070
1071 2000-09-25  Robert Pluim  <rpluim@bigfoot.com>
1072
1073         * buff-menu.el:
1074         * bytecomp.el:
1075         * coding.el:
1076         * faces.el:
1077         * files.el:
1078         * fill.el:
1079         * float-sup.el:
1080         * font-lock.el:
1081         * help.el:
1082         * iso8859-1.el:
1083         * loaddefs.el:
1084         * menubar-items.el:
1085         * menubar.el:
1086         * modeline.el:
1087         * msw-font-menu.el:
1088         * paragraphs.el:
1089         * paths.el:
1090         * replace.el:
1091         * simple.el:
1092         * sound.el:
1093         * startup.el:
1094         * version.el:
1095         * x-faces.el:
1096         * x-font-menu.el:
1097         Remove purecopy.
1098
1099 2000-10-03  Daniel Pittman  <daniel@rimspace.net>
1100
1101         * simple.el (do-auto-fill): Use the function pointer to by
1102         `comment-line-break-function', not `indent-new-comment-line'. This
1103         fixes an issue with cc-mode comment continuation.
1104
1105 2000-10-11  Martin Buchholz  <martin@xemacs.org>
1106
1107         * simple.el (turn-on-auto-fill):  Add (interactive).
1108         * mwheel.el (mwheel-install): Add (interactive).
1109         * font-lock.el (turn-on-font-lock): Add (interactive).
1110         (turn-off-font-lock): Add (interactive).
1111
1112 2000-10-03  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
1113
1114         * packages.el (packages-special-base-regexp): Add `man'.
1115
1116 2000-10-08  Adrian Aichner  <adrian@xemacs.org>
1117
1118         * wid-edit.el (widget-specify-active): map over extents in current
1119         buffer like `widget-specify-inactive' does.  Mapping over the
1120         inactive extent object does not work since the current extent is
1121         ignored by `map-extents'.
1122
1123 2000-10-04  Martin Buchholz <martin@xemacs.org>
1124
1125         * XEmacs 21.2.36 is released.
1126
1127 2000-09-22  Martin Buchholz  <martin@xemacs.org>
1128
1129         * byte-optimize.el (byte-optimize-lapcode): Add an optimizer pass.
1130         Optimize the compiled-function-constants vector by byte-code
1131         reference counts.
1132
1133 2000-09-25  Robert Pluim  <rpluim@bigfoot.com>
1134
1135         * build-report.el (build-report-delete-regexp): quote value in
1136         defcustom
1137
1138 2000-09-24  Adrian Aichner  <aichner@ecf.teradyne.com>
1139
1140         * build-report.el (build-report): Don't bind srcdir which we don't
1141         use in `multiple-value-bind' to avoid the only byte-compiler
1142         warning.
1143
1144 2000-09-23  Adrian Aichner  <aichner@ecf.teradyne.com>
1145
1146         * build-report.el: Requires cl and custom now.
1147         build-report-version is determined by XEmacs version -- remove
1148         build-report-version*.
1149         * build-report.el (build-report-version): Removed.
1150         * build-report.el (build-report-installation-version-regexp): New.
1151         * build-report.el (build-report-version-file-regexp): New.
1152         * build-report.el (build-report-installation-srcdir-regexp): New.
1153         * build-report.el (build-report-destination): Offer
1154         xemacs-build-reports and xemacs-beta.
1155         * build-report.el (build-report-keep-regexp): Adjusted.
1156         * build-report.el (build-report-delete-regexp): Adjusted.
1157         * build-report.el (build-report-make-output-dir): New.
1158         * build-report.el (build-report-installation-file): Replace use of
1159         `concat' with `expand-file-name'.
1160         * build-report.el (build-report-make-output-file): Removed.
1161         * build-report.el (build-report-make-output-files): New.
1162         * build-report.el (build-report-subject): Identify as
1163         user-variable with "*...".
1164         * build-report.el (build-report-prompts): Ditto.
1165         * build-report.el (build-report-version-file): New.
1166         * build-report.el (build-report-file-encoding): Identify as
1167         user-variable with "*...".
1168         * build-report.el (build-report-make-output-get): New.
1169         * build-report.el (build-report-insert-header): Report
1170         emacs-version and system-configuration instead of
1171         build-report-version.
1172         * build-report.el (build-report-insert-make-output): Add file
1173         argument.
1174         * build-report.el (build-report-insert-installation-file):
1175         Re-indent.
1176         * build-report.el (build-report-keep): Change docstring,
1177         re-indent.
1178         * build-report.el (build-report-delete): Ditto.
1179         * build-report.el (build-report-installation-data): New.
1180         * build-report.el (build-report-version-file-data): New.
1181
1182 2000-09-20  Martin Buchholz  <martin@xemacs.org>
1183
1184         * byte-optimize.el (byte-optimize-lapcode):
1185         Fix the optimization of using the first 5 elements of the
1186         constants vector for variables.
1187         (byte-optimize-lapcode): Fix another ancient broken optimization.
1188
1189 2000-09-19  Martin Buchholz  <martin@xemacs.org>
1190
1191         * *: Spelling mega-patch
1192
1193 2000-09-19  Martin Buchholz  <martin@xemacs.org>
1194
1195         * easymenu.el: doc fixes.
1196         (easy-menu-do-define): Use backquote.
1197         (easy-menu-change):
1198         (easy-menu-add):
1199         `when' seems much clearer than `if' here.
1200         (easy-menu-remove):
1201         (easy-menu-add-item):
1202         (easy-menu-item-present-p):
1203         (easy-menu-remove-item):
1204         Wrap using (when (featurep 'menubar) ...)
1205
1206 2000-09-16  Martin Buchholz  <martin@xemacs.org>
1207
1208         * bytecomp.el (displaying-byte-compile-warnings):
1209         Revert Ben's change to this function below so that the compile log
1210         is displayed properly for users of the "popper" package.
1211
1212 2000-09-12  Martin Buchholz  <martin@xemacs.org>
1213
1214         * window.el (save-selected-window): Use backquote.
1215
1216         * bytecomp.el (byte-compile-file-form-defvar-or-defconst):
1217         Renamed from `byte-compile-file-form-defvar'.
1218         * bytecomp.el (byte-compile-defvar-or-defconst):
1219         Only cons onto current-load-list in top-level forms.
1220         Else this leaks a cons cell every time a defun is called.
1221         Renamed from `byte-compile-defvar', for clarity.
1222         Warn when docstring of defvar is not a string.
1223         Use consistent error messages.
1224         Better comments.
1225
1226 2000-09-11  Martin Buchholz  <martin@xemacs.org>
1227
1228         * simple.el (set-variable):
1229         Remove unneeded defvar by rearranging order of let* forms.
1230
1231         * mule/mule-ccl.el (ccl-get-next-code):
1232         * menubar-items.el (bookmark-menu-filter):
1233         (language-environment-menu-filter):
1234         (tutorials-menu-filter):
1235         * toolbar-items.el (toolbar-compile):
1236         * byte-optimize.el (disassemble-offset):
1237         Use (declare (special ...)) instead of `defvar'.
1238
1239         * cl-macs.el (cl-do-proclaim):
1240         Fix (declare (special ...)) warning suppression syntax.
1241
1242 2000-07-22  Golubev I. N. <gin@mo.msk.ru>
1243
1244         * info.el (Info-tag-table-marker):
1245         (Info-tag-table-buffer):
1246         (Info-find-file-node):
1247         (Info-read-subfile):
1248         (Info-build-node-completions):
1249         (Info-search):
1250         (Info-mode):
1251         Multiple info buffer support.
1252
1253 2000-08-28  Oscar Figueiredo  <oscar@cpe.fr>
1254
1255         * ldap.el (ldap-decode-entry): New defun
1256         (ldap-search-entries): Use it in order to decode DN-prefixed
1257         entries properly
1258
1259 2000-08-23  Daniel Pittman <daniel@danann.net>
1260
1261         * mule/mule-cmds.el (coding-system-change-eol-conversion):
1262         Use `eq', not `=', to compare symbols.
1263
1264 2000-07-30  Ben Wing  <ben@xemacs.org>
1265
1266         * bytecomp.el (byte-compile-report-error):
1267         * bytecomp.el (displaying-byte-compile-warnings):
1268         if stack-trace-on-error is set, send out a backtrace when
1269         an error is encountered that stops byte compilation.  this
1270         should make it much much easier to track down those curious
1271         problems.  also undo the kludge of using a separate "*Show*"
1272         buffer for display when there's a temp-buffer-show-function;
1273         we can avoid this by just being a little smarter.
1274
1275         * dialog-items.el:
1276         * dialog-items.el (search-dialog-regexp): New.
1277         * dialog-items.el (search-dialog-callback):
1278         * dialog-items.el (make-search-dialog):
1279         add a regexp option to the dialog and clean up a bit.
1280
1281         * dialog.el:
1282         * dialog.el (yes-or-no-p-dialog-box):
1283         * dialog.el (get-dialog-box-response):
1284         * dialog.el (make-dialog-box):
1285         * dialog.el (dialog-box-finish): New.
1286         * dialog.el (dialog-box-cancel): New.
1287         * dialog.el (internal-make-dialog-box-exit): New.
1288         implement [properly!] the :modal property of the new dialog box
1289         interface.  this is the first time xemacs has ever had *proper*
1290         modal dialog boxes, giving the standard window-system feedback.
1291         (e.g. under windows, clicking on a disabled frame causes a beep
1292         and makes the dialog box flash three times.)
1293
1294         * dragdrop.el: header keyword frobbing.
1295
1296         * dumped-lisp.el (preloaded-file-list):
1297         renamed winnt.el to win32-native.el.
1298
1299         * faces.el (face-property):
1300         * faces.el (set-face-property):
1301         * faces.el (frob-face-property):
1302         * faces.el (frob-face-font-2):
1303         * faces.el (make-face-bold):
1304         * faces.el (make-face-italic):
1305         * faces.el (make-face-bold-italic):
1306         * faces.el (make-face-unbold):
1307         * faces.el (make-face-unitalic):
1308         * faces.el (make-face-smaller):
1309         * faces.el (make-face-larger):
1310         clean up the implementation of these so that window-system-specific
1311         methods are called only on objects belonging to that window system.
1312         previously, you could have [e.g.] mswindows-make-face-bold called
1313         on font object of device type `stream', which is not good and
1314         explains the subtle errors Adrian was getting when byte-compiling
1315         something that required 'term. (Adrian, now you can use stack-trace-
1316         on-error to find the exact place where things are going wrong instead
1317         of having to laboriously binary-search your way through.)
1318
1319         * finder.el (finder-known-keywords):
1320         cleaned up -- properly sorted, clarified the meanings of many of
1321         the keywords, and added a few -- mswin, gui, content, build, www,
1322         user, services.  the last two try to distinguish between a package
1323         that's used directly by the user, and a package that provides
1324         support services to other packages.
1325
1326         * font-lock.el (lisp-font-lock-keywords-2):
1327         update list of lisp control structures to include everything,
1328         including new ones i introduced.
1329
1330         * gutter.el: header keyword frobbing.
1331
1332         * isearch-mode.el (isearch-ring-adjust1): M-p to recall the most
1333         recent isearch element was not doing so!  you got the second-most-
1334         recent instead.
1335
1336         * lisp-mode.el (construct-lisp-mode-menu):
1337         more menubar cleanups.
1338         * lisp-mode.el (with-selected-window):
1339         make it indent properly.
1340
1341         * menubar-items.el (default-menubar): lots of menubar cleanups.
1342         rearranged the options menu the most, e.g. splitting up the
1343         Keyboard/Mouse menu into a new Editing menu and combining the
1344         separate Scrollbar/Gutter/Toolbar submenus into Display.
1345         Got rid of General, moved items to Editing or new Troubleshooting.
1346         Moved Packages to Tools; doesn't seem to belong under Options.
1347         Added stuff to the Cmds menu, e.g. Change Case.
1348
1349         NB please don't complain about these periodic menubar changes.
1350         Anything like this is necessarily incremental in its construction
1351         -- By constant use you gradually become more and more aware of
1352         better and better ways to group menu items.  When we eventually
1353         move the options menu to a property sheet, the existing structure
1354         will probably be preserved fairly well.
1355
1356         * minibuf.el (next-history-element): fix problems with pressing
1357         down arrow in repeat-complex-command.
1358
1359         * modeline.el:
1360         * modeline.el (modeline-3d-p): New.
1361         added custom variable for controlling the 3d modeline.  the
1362         corresponding Options item has been present for a long time,
1363         but commented out with "fix me!" comments.  it's fixed now.
1364
1365         * obsolete.el (add-menu):
1366         remove bogus gettexts.
1367
1368         * process.el (shell-quote-argument):
1369         handle this correctly under Windows native with COMMAND.COM/CMD.EXE.
1370         For bash under Windows native, see below.
1371
1372         * simple.el:
1373         * simple.el (display-warning-buffer):
1374         Fixed the handling of warning display to eliminate the annoying
1375         *Show* buffer, like was done for byte-compiler output above.
1376
1377         * simple.el (debug-print): New.
1378         Simple function for sending debug messages to the console and/or
1379         other debug places.
1380
1381         * subr.el (replace-in-string):
1382         Rewrite this function to avoid N^2 behavior with large strings --
1383         catastrophic with the new Windows selection code! (Apparently the
1384         author of this function didn't realize there was a fun
1385         replace-match that could make his life much easier, because we
1386         duplicated the entire logic.  The new version is smaller, easier
1387         to understand, much more robust, and has extended features --
1388         those of replace-match.)
1389
1390         * window.el:
1391         * window.el (with-selected-window): New.
1392         An obvious complement to the existing `with-selected-frame' and
1393         `with-current-buffer'.
1394
1395         * win32-native.el: Renamed from winnt.el.
1396         Added a great deal of stuff for properly handling process quoting,
1397         somewhat modeled on Kirill's original model (which i later threw
1398         away).  We should now finally have correctly working process arg
1399         quoting/dequoting so that the final app gets exactly what we
1400         intended.  Because the mechanism is in Lisp, it's easily
1401         extendible. (For those running bash and running the native
1402         version, I tried hard to do what I thought was correct.  But more
1403         thought is needed, and ideally the volunteer work of people with
1404         these configurations that they generally run on.)
1405
1406         * x-font-menu.el (x-font-menu-font-data):
1407         Put in defvar's to fix byte-compiler warnings.
1408
1409 2000-08-01 Alastair J. Houghton <ajhoughton@lineone.net>
1410
1411         * select.el (selection-coercion-alist): Initialise.
1412         * select.el (select-coerce-to-text): New.
1413         * select.el (select-coerce): New.
1414         New functions to perform type and value coercion.
1415
1416         * select.el (select-buffer-killed-default): Keep data if it was
1417         on the clipboard.
1418
1419 2000-08-02  Martin Buchholz  <martin@xemacs.org>
1420
1421         * menubar-items.el (default-menubar): Fix typo.
1422         (default-menubar): `lambda' was mispelled as `lamda'.
1423
1424 2000-07-31  Yoshiki Hayashi  <yoshiki@xemacs.org>
1425
1426         * window.el (shrink-window-if-larger-than-buffer): Remove
1427         edge checking code.
1428
1429 2000-07-31  Yoshiki Hayashi  <yoshiki@xemacs.org>
1430
1431         * paths.el (gnus-local-domain): Removed.
1432         (gnus-local-organization): Ditto.
1433         (gnus-startup-file): Ditto.
1434
1435 2000-07-13  Yoshiki Hayashi  <yoshiki@xemacs.org>
1436
1437         * files.el (auto-mode-alist): Add .spec for RPM.
1438
1439 2000-07-31  Andy Piper  <andy@xemacs.org>
1440
1441         * gutter-items.el (update-tab-in-gutter): deprecate :properties.
1442
1443 2000-07-31  Yoshiki Hayashi  <yoshiki@xemacs.org>
1444
1445         * dragdrop.el (experimental-dragdrop-drop-url-default): Use function
1446         browse-url.
1447         * help.el (xemacs-www-page): Ditto.
1448         (xemacs-www-faq): Ditto.
1449         * menubar-items.el (default-menubar): Ditto.
1450
1451         * wid-edit.el (widget-url-link-action): Ditto.
1452         From: Kenichi OKADA <okada@opaopa.org>.
1453
1454 2000-07-31  Martin Buchholz  <martin@xemacs.org>
1455
1456         * finder.el (finder-commentary): Add autoload cookie.
1457
1458 2000-07-28  Adrian Aichner  <aichner@ecf.teradyne.com>
1459
1460         * files.el (insert-file-contents-literally): Fix second let
1461         binding for `coding-system-for-read' to `coding-system-for-write'
1462         as suggested by Dan Holmsand <dan@innehallsbolaget.com>.
1463
1464 1999-06-15  Jan Vroonhof  <vroonhof@math.ethz.ch>
1465
1466         * files.el (insert-file-contents-literally): Use binary coding
1467         system (from Morioka san).
1468         (insert-file-contents-literally): Make file-name-handler method.
1469
1470 2000-07-26  Martin Buchholz  <martin@xemacs.org>
1471
1472         * cl-macs.el (get-selection): Add defsetf.
1473
1474 2000-07-25  Steve Youngs  <youngs_s@ozlinx.com.au>
1475
1476         * x-init.el (x-activate-region-as-selection): replace obsolete
1477         function x-own-selection with own-selection.
1478         (ow-find): replace obsolete functions x-get-selection and
1479         x-get-clipboard with get-selection and get-clipboard.
1480         (init-post-x-win): replace obsolete function x-disown-selection
1481         with disown-selection.
1482
1483 2000-07-20  Mike Sperber  <mike@xemacs.org>
1484
1485         * startup.el (load-user-init-file): Only try to load init file if
1486         it exists.
1487
1488 2000-07-10  Andy Piper  <andy@xemacs.org>
1489
1490         * dialog-items.el: sync with Ben's patch.
1491
1492         * gutter-items.el (buffers-tab-switch-to-buffer): remove now-bogus
1493         comment.
1494         (progress-text-glyph): deleted.
1495         (progress-layout-glyph): make completely minimal.
1496         (progress-gauge-glyph): ditto.
1497         (progress-display-style): fix to handle dynamic instantiator
1498         changes.
1499         (progress-text-instantiator): new.
1500         (progress-layout-instantiator): new.
1501         (progress-gauge-instantiator): new.
1502         (set-progress-display-instantiator): renamed and changed from
1503         set-progress-display-style.
1504         (progress-abort-glyph): use instantiator not glyph.
1505         (append-progress-display): use set-progress-display-instantiator
1506         and set-glyph-image.
1507         (abort-progress-display): ditto.
1508         (raw-append-progress-display): ditto.
1509
1510 2000-07-20  Ben Wing  <ben@xemacs.org>
1511
1512         * code-files.el: Move Mule-specific code to mule-coding.el.
1513
1514 2000-07-15  Ben Wing  <ben@xemacs.org>
1515
1516         * autoload.el:
1517         Fixed comments.
1518
1519         * cmdloop.el:
1520         * cmdloop.el (yes-or-no-p):
1521         * cmdloop.el (y-or-n-p):
1522         Make these functions use should-use-dialog-box-p and not be
1523         overridden in dialog.el.
1524
1525         * cus-dep.el:
1526         * cus-dep.el (Custom-make-dependencies): Removed.
1527         * cus-dep.el (Custom-make-dependencies-1): New.
1528         * cus-dep.el (Custom-make-one-dependency): New.
1529         New entry point for use in Makefiles, to avoid excessive
1530         invocations.
1531
1532         * cus-edit.el (custom-variable-reset-saved):
1533         * cus-edit.el (custom-variable-reset-standard):
1534         * cus-edit.el (custom-save-resets):
1535         Fix bytecompiler warnings.
1536
1537         * dialog.el:
1538         * dialog.el (yes-or-no-p-dialog-box):
1539         * dialog.el (yes-or-no-p-maybe-dialog-box): Removed.
1540         * dialog.el (y-or-n-p-maybe-dialog-box): Removed.
1541         * dialog.el (get-dialog-box-response):
1542         * dialog.el (message-or-box):
1543         * dialog.el (make-dialog-box):
1544         * dialog.el (popup-dialog-box): New.
1545         Avoid yes-or-no-p bogosities.
1546         Create a general function `make-dialog-box' to encapsulate all
1547         dialog box methods; easily extendible.  popup-dialog-box now obsolete.
1548
1549         * dumped-lisp.el (preloaded-file-list):
1550         Add dialog-items.  Clean up.  Group files by types.
1551
1552         * easymenu.el (easy-menu-add):
1553         * easymenu.el (easy-menu-remove):
1554         Account for accelerators.
1555
1556         * extents.el:
1557         * extents.el (extent-list): New args, like in map-extents.
1558         * extents.el (extent-at-event): New.
1559         * extents.el (extents-at-event): New.
1560
1561         * font-lock.el:
1562         * font-lock.el (font-lock-mode):
1563         * font-lock.el (font-lock-default-fontify-buffer):
1564         * font-lock.el (font-lock-default-unfontify-region):
1565         * font-lock.el (font-lock-fontify-syntactically-region):
1566         * font-lock.el (font-lock-fontify-keywords-region):
1567         Use new progress-feedback names.
1568
1569         * font-lock.el (java-font-lock-identifier-regexp):
1570         * font-lock.el (java-font-lock-class-name-regexp):
1571         Fix bytecompiler warnings.
1572
1573         * gutter-items.el:
1574         * gutter-items.el (progress-display-use-echo-area): Removed.
1575         * gutter-items.el (progress-feedback-use-echo-area): New.
1576         * gutter-items.el (progress-display-popup-period): Removed.
1577         * gutter-items.el (progress-feedback-popup-period): New.
1578         * gutter-items.el (set-progress-display-style): Removed.
1579         * gutter-items.el (set-progress-feedback-style): New.
1580         * gutter-items.el (progress-display-style): Removed.
1581         * gutter-items.el (progress-feedback-style): New.
1582         * gutter-items.el (progress-stack):
1583         * gutter-items.el (progress-displayed-p): Removed.
1584         * gutter-items.el (progress-feedbacked-p): New.
1585         * gutter-items.el (clear-progress-display): Removed.
1586         * gutter-items.el (clear-progress-feedback): New.
1587         * gutter-items.el (progress-display-clear-when-idle): Removed.
1588         * gutter-items.el (progress-feedback-clear-when-idle): New.
1589         * gutter-items.el (remove-progress-display): Removed.
1590         * gutter-items.el (remove-progress-feedback): New.
1591         * gutter-items.el (progress-display-dispatch-non-command-events): Removed.
1592         * gutter-items.el (progress-feedback-dispatch-non-command-events): New.
1593         * gutter-items.el (append-progress-display): Removed.
1594         * gutter-items.el (append-progress-feedback): New.
1595         * gutter-items.el (abort-progress-display): Removed.
1596         * gutter-items.el (abort-progress-feedback): New.
1597         * gutter-items.el (raw-append-progress-display): Removed.
1598         * gutter-items.el (raw-append-progress-feedback): New.
1599         * gutter-items.el (display-progress-display): Removed.
1600         * gutter-items.el (display-progress-feedback): New.
1601         * gutter-items.el (current-progress-display): Removed.
1602         * gutter-items.el (current-progress-feedback): New.
1603         * gutter-items.el (current-progress-display-label): Removed.
1604         * gutter-items.el (current-progress-feedback-label): New.
1605         * gutter-items.el (progress-display): Removed.
1606         * gutter-items.el (progress-feedback): New.
1607         Replace "progress-display" with "progress-feedback" globally.
1608
1609         * gutter-items.el (lprogress-display): Removed.
1610         * gutter-items.el (progress-feedback-with-label): New.
1611         Rename lprogress-display ==> progress-feedback-with-label.
1612
1613         * gutter-items.el (search-dialog-direction): Removed.
1614         * gutter-items.el (search-dialog-text): Removed.
1615         * gutter-items.el (search-dialog-callback): Removed.
1616         * gutter-items.el (make-search-dialog): Removed.
1617         Move to dialog-items.el.
1618
1619         * help.el:
1620         * help.el (help-mode-quit):
1621         * help.el (mode-for-help): New.
1622         * help.el (help-sticky-window): New.
1623         * help.el (help-window-config): New.
1624         * help.el (with-displaying-help-buffer):
1625         * help.el (function-at-event): New.
1626         * help.el (help-symbol-regexp): New.
1627         * help.el (help-symbol-run-function-1): New.
1628         * help.el (help-symbol-run-function): New.
1629         * help.el (help-symbol-function-context-menu): New.
1630         * help.el (help-symbol-variable-context-menu): New.
1631         * help.el (help-symbol-function-and-variable-context-menu): New.
1632         * help.el (frob-help-extents): New.
1633         * help.el (describe-function-1):
1634         * help.el (variable-at-point):
1635         * help.el (variable-at-event): New.
1636         * help.el (describe-variable):
1637         Major overhaul.
1638         - Make functions and variables be mousable.
1639         - Middle button hyperlinks.
1640         - New context-menu entries.
1641
1642         * keydefs.el:
1643         * keydefs.el (global-map):
1644         New key bindings to move lines up and down.
1645
1646         * lisp-mode.el:
1647         * lisp-mode.el (construct-lisp-mode-menu): New.
1648         * lisp-mode.el (emacs-lisp-mode-popup-menu):
1649         * lisp-mode.el (lisp-interaction-mode-menubar-menu):
1650         * lisp-mode.el (emacs-lisp-mode-menubar-menu):
1651         * lisp-mode.el (lisp-indent-function): Indent "flet" entries better.
1652         Make popup and menubar menus be different.  Popup menu uses
1653         clicked location and automatically assumes symbol under the mouse
1654         for various commands.
1655
1656         * menubar-items.el:
1657         * menubar-items.el (bookmark-menu-filter): Add accelerators.
1658         * menubar-items.el (buffers-menu-omit-chars-list): Include 'd'.
1659
1660         * menubar-items.el (global-popup-menu): Removed.
1661         * menubar-items.el (mode-popup-menu): Removed.
1662         * menubar-items.el (activate-popup-menu-hook): Removed.
1663         * menubar-items.el (popup-mode-menu): Removed.
1664         * menubar-items.el (popup-buffer-menu): Removed.
1665         * menubar-items.el (popup-menubar-menu): Removed.
1666         Move to menubar.el.
1667
1668         * menubar.el:
1669         * menubar.el (global-popup-menu): New.
1670         * menubar.el (mode-popup-menu): New.
1671         * menubar.el (activate-popup-menu-hook): New.
1672         * menubar.el (last-popup-menu-event): New.
1673         * menubar.el (popup-mode-menu): New.
1674         * menubar.el (popup-buffer-menu): New.
1675         * menubar.el (popup-menubar-menu): New.
1676         * menubar.el (menu-call-at-event): New.
1677         Move non-content functions here.  Add support for context menu
1678         items on extents.
1679
1680         * minibuf.el (minibuffer-history-uniquify):
1681         Typo fix.
1682
1683         * minibuf.el (read-file-name-1):
1684         Call new file dialog box if it exists.
1685
1686         * minibuf.el (mouse-rfn-setup-vars):
1687         Clean up "chop" action.
1688
1689         * mouse.el:
1690         * mouse.el (button2): Now bound to mouse-track.
1691         * mouse.el (click-inside-extent-p):
1692         * mouse.el (point-inside-extent-p):
1693         * mouse.el (point-inside-selection-p):
1694         * mouse.el (mouse-drag-or-yank): Removed.
1695         * mouse.el (mouse-begin-drag-n-drop): New.
1696         * mouse.el (mouse-eval-sexp):
1697         * mouse.el (mouse-track-activate-strokes): New.
1698         * mouse.el (mouse-track-do-activate): New.
1699         * mouse.el (mouse-track):
1700         * mouse.el (default-mouse-track-event-is-with-button): New.
1701         * mouse.el (default-mouse-track-cleanup-hook):
1702         * mouse.el (default-mouse-track-drag-hook):
1703         * mouse.el (default-mouse-track-drag-up-hook):
1704         * mouse.el (default-mouse-track-click-hook):
1705         Merge drag-n-drop into mouse-track.
1706         Add general "activate" support to replace specific button2 kludges.
1707         Use "button modifier" support in mouse-track.
1708
1709         * package-get.el (package-get-dependencies): Fix bytecompiler warnings.
1710
1711         * package-ui.el:
1712         * package-ui.el (pui-menu):
1713         * package-ui.el (pui-popup-context-sensitive): Removed.
1714         Fix bytecompiler warnings.
1715         Clean up popup code a bit.
1716
1717         * select.el (get-selection-no-error): Fix bytecompiler warnings.
1718
1719         * simple.el:
1720         * simple.el (transpose-lines):
1721         * simple.el (transpose-line-up): New.
1722         * simple.el (transpose-line-down): New.
1723         * simple.el (transpose-subr):
1724         * simple.el (transpose-subr-1): Removed.
1725         Clean up, add functions to move lines up and down.
1726
1727         * startup.el (mail-host-address):
1728         * startup.el (user-mail-address):
1729         Customize.
1730
1731         * subr.el:
1732         * subr.el (set-symbol-value-in-buffer): New.
1733         * subr.el (error):
1734         * subr.el (check-argument-type):
1735         * subr.el (defined-error-p): New.
1736         Add structured error support.
1737
1738         * toolbar-items.el (toolbar-compile):
1739         Use new make-dialog-box.
1740
1741         * update-elc.el:
1742
1743         * userlock.el (ask-user-about-lock-dbox):
1744         * userlock.el (ask-user-about-supersession-threat-dbox):
1745         * userlock.el (ask-user-about-lock):
1746         * userlock.el (ask-user-about-supersession-threat):
1747         Use new make-dialog-box.
1748         Add safety checks; use should use-dialog-box-p.
1749
1750         * window-xemacs.el:
1751         * window-xemacs.el (__buffer-dedicated-frame):
1752         * window-xemacs.el (buffer-dedicated-frame): New.
1753         * window-xemacs.el (set-buffer-dedicated-frame): New.
1754         Move dedicated-frame stuff into lisp.
1755
1756 2000-07-18  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
1757
1758         * printer.el (generic-print-region): Do not require that
1759         `printer-name' be set.
1760         (printer-name): Commentary clarification.
1761
1762 2000-07-19  Martin Buchholz <martin@xemacs.org>
1763
1764         * XEmacs 21.2.35 is released.
1765
1766 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
1767
1768         * select.el (selection-coercible-types): Initialise.
1769
1770 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
1771
1772         * select.el (own-clipboard): Bug fix.
1773
1774 2000-07-17  Mike Sperber  <mike@xemacs.org>
1775
1776         * cus-edit.el (custom-migrate-custom-file): Save init file before
1777         continuing.
1778
1779 2000-07-16  Mike Sperber  <mike@xemacs.org>
1780
1781         * startup.el (load-init-file): Remove silly call to
1782         `load-user-custom-file`.
1783         (maybe-migrate-user-init-file): Minor fixes.
1784
1785 2000-07-16  Martin Buchholz  <martin@xemacs.org>
1786
1787         * apropos.el (apropos-documentation-check-doc-file):
1788         `doc' variable should be let-bound, as was presumably intended.
1789
1790         * cus-edit.el (custom-variable-reset-saved):
1791         (custom-variable-reset-standard):
1792         Remove unused variable comment-widget.  Twice.
1793
1794         * toolbar.el (toolbar-blank-press-function):
1795         Add a real defvar with initial value nil and proper docstring.
1796         (press-toolbar-button): No need to check for boundp-ness anymore.
1797
1798         * rect.el (open-rectangle-line): Remove useless (let) form.
1799         Add defvar for pending-delete-mode.
1800
1801         * info.el (Info-find-node): This function needs an autoload cookie.
1802
1803         * mule/mule-x-init.el (x-use-halfwidth-roman-font):
1804         Use let* since the second form referred to the first.
1805
1806 2000-07-16  Adrian Aichner  <aichner@ecf.teradyne.com>
1807
1808         * msw-select.el (mswindows-paste-clipboard): Use `get-clipboard'
1809         instead of removed `mswindows-get-clipboard'.
1810
1811
1812 2000-07-15 Alastair J. Houghton <ajhoughton@lineone.net>
1813
1814         * select.el (select-convert-from-text): New.
1815         * select.el (select-convert-from-length): New.
1816         * select.el (select-convert-from-integer): New.
1817         * select.el (select-convert-from-identity): New.
1818         * select.el (select-convert-from-filename): New.
1819         * select.el (selection-converter-in-alist): Use them.
1820         New converter functions for X.
1821
1822         * select.el (get-selection): Removed comment.
1823
1824         * select.el (own-selection): Removed append code - I thought
1825         I'd already done this, but apparently not...
1826
1827         * select.el: Changed comment about TIMESTAMP.
1828
1829         * select.el (select-convert-in): New.
1830         * select.el (select-convert-out): New.
1831         New functions that get used by select.c.
1832
1833         * select.el (select-buffer-killed-default): New.
1834         * select.el (select-buffer-killed-text): New.
1835         * select.el (selection-buffer-killed-alist): New.
1836         New list and functions that get called if a relevant selection
1837         exists and a buffer gets killed.
1838
1839         * select.el (select-convert-to-targets):
1840         * select.el (select-convert-to-identity): Removed.
1841         * select.el (select-convert-from-identity): Removed.
1842         * select.el (select-converter-out-alist):
1843         Removed _EMACS_INTERNAL selection type.
1844
1845         * x-select.el (xselect-kill-buffer-hook): Removed.
1846         * x-select.el (xselect-kill-buffer-hook-1): Removed.
1847         Removed this X-specific nonesense. Use the generic support
1848         in select.el instead.
1849
1850 2000-07-15  Martin Buchholz  <martin@xemacs.org>
1851
1852         * mule/mule-category.el (defined-category-hashtable):
1853         Use make-hash-table instead of make-hashtable
1854
1855         * buff-menu.el: Byte-compiler warning fix.
1856
1857         * isearch-mode.el (isearch-highlight-all-cleanup):
1858         Remove unused variable `isearch-highlight-all-start'.
1859
1860         * etags.el (add-to-tag-completion-table): Byte-compiler warning fix.
1861
1862         * itimer.el (itimer-edit-mode): Byte-compiler warning fixes.
1863
1864         * cus-dep.el (Custom-make-dependencies):
1865         Add autoload cookie for custom-add-loads to generated custom-load.el.
1866
1867         * autoload.el (autoload-package-name): Warning suppression.
1868         Move defvar prior to first use.
1869
1870         * custom.el: Add autoload for custom-declare-face.
1871         Allow `xemacs -no-autoloads -l bytecomp -f batch-byte-compile ...'
1872         * cl.el (cl-hack-byte-compiler):
1873         Allow `xemacs -no-autoloads -l bytecomp -f batch-byte-compile ...'
1874         to work properly.
1875
1876 2000-07-08  Mike Sperber  <mike@xemacs.org>
1877
1878         * startup.el (load-home-init-file): Added variable.
1879         (maybe-migrate-user-init-file): Added.
1880         (load-user-init-file): Load custom file if different from init
1881         file.
1882
1883         * dumped-lisp.el (preloaded-file-list): Added "cus-file" before
1884         "startup."
1885
1886         * cus-edit.el (custom-migrate-custom-file): Added for migration.
1887         Moved `custom-file'-related code to cus-file.el.
1888
1889         * cus-file.el: New file.
1890
1891 2000-04-01  Mike Sperber  <mike@xemacs.org>
1892
1893         * packages.el (packages-find-package-directories): Added support
1894         for external package hierarchies with in-place installations.
1895
1896         * find-paths.el (paths-root-in-place-p): Added.
1897         (paths-find-emacs-directory): Added support for external
1898         directories with in-place installations.
1899         (paths-find-site-directory): Ditto.
1900
1901         * startup.el (find-user-init-file): Also look for
1902         ~/.xemacs/init.elc? in preference to ~/.emacs.
1903
1904 2000-07-12 Alastair J. Houghton <ajhoughton@lineone.net>
1905
1906         * select.el (own-selection):
1907         * select.el (own-clipboard): Changed `append' parameter to
1908         `how-to-use' parameter.
1909         * select.el (own-selection): Removed icky append code.
1910         * select.el (own-selection, get-selection): Removed extra type
1911         checking.
1912         * select.el (selection-appender-alist):
1913         * select.el (selection-converter-{in|out}-alist): Initialise.
1914         * select.el (select-append-to-*): New.
1915         * select.el (select-convert-from-*): New.  New functions to append
1916         data and convert data from external type.
1917
1918 2000-07-12  Stef Epardaud  <stef@lunatech.com>
1919
1920         * font-lock.el: Javadoc enhancements.
1921
1922 2000-07-06  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
1923
1924         * printer.el (generic-print-region): Compose job name from buffer
1925         name.
1926
1927 2000-07-06  Yoshiki Hayashi  <yoshiki@xemacs.org>
1928
1929         * font-lock.el (font-lock-fontify-pending-extents): Call
1930         font-lock-fontify-region instead of font-lock-fontify-buffer
1931         to avoid unnecessary progress gauges.
1932
1933 2000-07-06  Craig Lanning  <lanning@scra.org>
1934
1935         * custom-load.el (faces):
1936
1937         * finder.el (finder-compile-keywords): from Dan Holmsand, make sure
1938         dir is a regex.
1939
1940         * process.el (call-process-internal): from Dan Holmsand, use binary
1941         coding systems so that jka-compr works.
1942
1943 2000-07-07  Ben Wing  <ben@xemacs.org>
1944
1945         * font-lock.el: Undo previous change.  Unfortunately, some
1946         files actually use the variables directly in their init code
1947         without quoting them.
1948
1949 2000-07-07  Ben Wing  <ben@xemacs.org>
1950
1951         * font-lock.el (defvar font-lock-*-face): Removed.
1952
1953         * font-lock.el (font-lock-apply-highlight): Bind these face vars
1954         only when necessary.
1955
1956 2000-06-30  Charles G Waldman  <cgw@alum.mit.edu>
1957
1958         * cl-macs.el: fix cl-transform-function-property kludge
1959         so that it does not require a random feature.
1960
1961 2000-06-09  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
1962
1963         * files.el (auto-mode-alist): allow .make extension for Makefiles,
1964         as in Linux kernel "Rules.make".
1965
1966 2000-06-29  Gunnar Evermann  <ge204@eng.cam.ac.uk>
1967
1968         * build-report.el (build-report): Add autoload cookie.
1969
1970 2000-06-21  Charles G Waldman  <cgw@alum.mit.edu>
1971
1972         * package-ui.el (defgroup pui):  Correct a misspelling
1973         (pui-toggle-package-delete):  Change `seleted' to `selected'
1974
1975 2000-06-12  Jan Vroonhof  <vroonhof@math.ethz.ch>
1976
1977         * package-get.el (package-get-update-base):
1978         (package-get): Use insert-file-contents-literally always.
1979         (package-get-maybe-save-index):
1980         Force coding system for writing to binary.
1981
1982 2000-06-08  Mike Alexander  <mta@arbortext.com>
1983
1984         * code-process.el (call-process-region): If there is no coding
1985         system for the process on process-coding-system-alist use the
1986         coding system of the buffer containing the region.
1987
1988 2000-06-10  Ben Wing  <ben@xemacs.org>
1989
1990         * cmdloop.el (command-error):
1991         If debug-on-error and noninteractive, output backtrace.
1992
1993         * files.el (file-relative-name):
1994         Remove MSDOS references.
1995
1996         * simple.el (line-number): New function, due to non-obvious
1997         behavior/usage of count-lines.
1998
1999         * simple.el (count-lines): document non-obvious usage to get
2000         line number.
2001
2002 2000-06-11  Ben Wing  <ben@xemacs.org>
2003
2004         * faces.el ((featurep 'xpm)):
2005         * x-faces.el (x-init-face-from-resources):
2006         * x-faces.el (x-init-frame-faces):
2007         * x-misc.el (x-init-specifier-from-resources):
2008         * x-misc.el (x-get-resource-and-bogosity-check):
2009         * x-misc.el (x-get-resource-and-maybe-bogosity-check):
2010         * x-mouse.el (x-init-pointer-shape):
2011         * x-scrollbar.el (x-init-scrollbar-from-resources):
2012         Add sixth argument to x-get-resource calls so as to issue warnings
2013         rather than errors on bogus arguments.
2014
2015 2000-06-05  Ben Wing  <ben@xemacs.org>
2016
2017         * compat.el: new file.  provides a clean, non-intrusive way to
2018         define compatibility functions.
2019
2020         * process.el (shell-quote-argument): temporary fix for lack
2021         of nt-quote-process-args.  #### I need to put back the overall
2022         structure of that mechanism but redo the guts of it using the
2023         extra intelligence in the C code.
2024
2025 2000-05-28  Adrian Aichner  <aichner@ecf.teradyne.com>
2026
2027         * package-info.el (pi-md5sum): Calculate MD5 sum just like
2028         `package-get' does in package-get.el, instead of using external
2029         "md5sum" program.
2030
2031         * package-get.el (package-get): Insert package file literally to
2032         make checksum calculation work.
2033
2034 2000-04-18  Hrvoje Niksic  <hniksic@iskon.hr>
2035
2036         * code-files.el (convert-mbox-coding-system): Deleted.
2037         (file-coding-system-alist): Removed reference to
2038         convert-mbox-coding-system.
2039
2040 2000-05-28  Martin Buchholz <martin@xemacs.org>
2041
2042         * XEmacs 21.2.34 is released.
2043
2044 2000-05-20  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
2045
2046         * font-lock.el (font-lock-keywords): Rewrote docstring
2047
2048 2000-05-22  Karl M. Hegbloom  <karlheg@debian.org>
2049
2050         * loadhist.el (unload-feature): handle case where x is both boundp
2051         and fboundp
2052
2053 2000-05-22  Karl M. Hegbloom  <karlheg@debian.org>
2054
2055         * packages.el: It's ok to use built-in macros, but not lisp
2056         defined ones.
2057
2058 2000-05-20  Ben Wing  <ben@xemacs.org>
2059
2060         * font-lock.el:
2061         * font-lock.el (font-lock-message-threshold):
2062         * font-lock.el (font-lock-mode):
2063         * font-lock.el (font-lock-default-fontify-buffer):
2064         * font-lock.el (font-lock-always-fontify-immediately):
2065         * font-lock.el (font-lock-old-extent): Removed.
2066         * font-lock.el (font-lock-old-len): Removed.
2067         * font-lock.el (font-lock-fontify-glumped-region): Removed.
2068         * font-lock.el (font-lock-pending-extent-table): New.
2069         * font-lock.el (font-lock-range-table): New.
2070         * font-lock.el (font-lock-after-change-function):
2071         * font-lock.el (font-lock-after-change-function-1): Removed.
2072         * font-lock.el (font-lock-fontify-pending-extents): New.
2073         * font-lock.el ('font-lock-revert-cleanup): Removed.
2074         * font-lock.el ('font-lock-revert-setup): Removed.
2075         Rewrite deferral code to handle any number of changes, merging
2076         them properly.  Remove hacked-up code for revert-buffer, now
2077         unnecessary.
2078
2079         * menubar-items.el (default-menubar):
2080         In Options->Edit Init File, don't switch to emacs-lisp-mode
2081         unless necessary; doing this turns off font-lock.
2082
2083 2000-05-15  Yoshiki Hayashi  <yoshiki@xemacs.org>
2084
2085         * keydefs.el: Define C-x BS to backward-kill-sentence.
2086
2087 2000-05-15  Yoshiki Hayashi  <yoshiki@xemacs.org>
2088
2089         * files.el (hack-local-variables-prop-line): Use non-greedy
2090         matching to process -*-texinfo-*- -*-.
2091
2092 2000-05-11  Jonathan Marten <jonathan.marten@uk.sun.com>
2093
2094         * minibuf.el (minibuf-directory-files): new function.
2095         (read-file-name-activate-callback): use minibuf-directory-files.
2096         (read-directory-name-internal): ditto.
2097         (mouse-file-display-completion-list): ditto.
2098         (mouse-directory-display-completion-list): ditto.
2099         (read-file-name-internal): remove "./" from completion list unless
2100         explicitly matched, for consistency.
2101
2102 2000-05-11  Ben Wing  <ben@xemacs.org>
2103
2104         * gutter-items.el (gutter-buffers-tab):
2105         * gutter-items.el (add-tab-to-gutter):
2106         * gutter-items.el (update-tab-in-gutter):
2107         * gutter-items.el (remove-buffer-from-gutter-tab): Removed.
2108         * gutter-items.el (append-progress-display):
2109         * gutter-items.el (abort-progress-display):
2110         * gutter-items.el (raw-append-progress-display):
2111         Further fixes.  Use set-glyph-image not set-image-instance-property,
2112         to fix problems with multiple windows in a frame.
2113
2114         * menubar-items.el (tutorials-menu-filter):
2115         Fix typo.
2116
2117         * startup.el (early-error-handler):
2118         Display message box under windows; otherwise, message will disappear
2119         before it can be viewed.
2120
2121         * update-elc.el:
2122         Fix bug in NEEDTODUMP processing.
2123
2124 2000-05-08  Yoshiki Hayashi  <yoshiki@xemacs.org>
2125
2126         * startup.el (lock-directory): Removed.
2127         (superlock-file): Ditto.
2128         (startup-set-paths): Remove lockdir.
2129         (startup-setup-paths-warning): Remove lock-directory.
2130
2131         * setup-paths.el (paths-find-lock-directory): Removed.
2132         (paths-find-superlock-file): Ditto.
2133
2134 2000-05-09  Ben Wing  <ben@xemacs.org>
2135
2136         * faces.el (set-face-property):
2137         * faces.el (set-face-font):
2138         * faces.el (set-face-foreground):
2139         * faces.el (set-face-background):
2140         * faces.el (set-face-background-pixmap):
2141         * faces.el (set-face-underline-p):
2142         * faces.el (set-face-strikethru-p):
2143         * faces.el (set-face-highlight-p):
2144         * faces.el (set-face-dim-p):
2145         * faces.el (set-face-blinking-p):
2146         * faces.el (set-face-reverse-p):
2147         doc string changes.
2148
2149         * glyphs.el:
2150         * glyphs.el (make-image-specifier):
2151         * glyphs.el (glyph-property):
2152         * glyphs.el (set-glyph-image):
2153         * glyphs.el (make-glyph):
2154         * glyphs.el (make-pointer-glyph):
2155         * glyphs.el (make-icon-glyph):
2156         * glyphs.el (widget-image-instance-p): New.
2157         authorship info, lots of doc changes.  New predicate, inadvertently
2158         omitted.  the general principle with specifier docs is now that
2159         the description of instantiators should go with the make-foo-specifier
2160         fun's doc string, rather than in foo-specifier-p.  this follows
2161         conventions elsewhere in XEmacs and in general is a lot more obvious
2162         of a place to look.  sometimes the make-foo-specifier function needs
2163         to be created in the process.
2164
2165         * gutter.el:
2166         * gutter.el (make-gutter-specifier): New.
2167         * gutter.el (make-gutter-size-specifier): New.
2168         * gutter.el (make-gutter-visible-specifier): New.
2169         specifier doc updates according to the conventions specified before.
2170
2171         * objects.el:
2172         * objects.el (make-font-specifier):
2173         * objects.el (make-color-specifier):
2174         * objects.el (make-face-boolean-specifier): New.
2175         specifier doc updates according to the conventions specified before.
2176
2177         * specifier.el:
2178         * specifier.el (set-specifier):
2179         * specifier.el (make-integer-specifier): New.
2180         * specifier.el (make-boolean-specifier): New.
2181         * specifier.el (make-natnum-specifier): New.
2182         * specifier.el (make-generic-specifier): New.
2183         * specifier.el (make-display-table-specifier): New.
2184         specifier doc updates according to the conventions specified before.
2185
2186         * toolbar.el:
2187         * toolbar.el (make-toolbar-specifier): New.
2188         specifier doc updates according to the conventions specified before.
2189
2190 2000-05-09  Ben Wing  <ben@xemacs.org>
2191
2192         * process.el (call-process-internal): Revert to previous version
2193         because Mike's change clashed with a change I did not long before.
2194         Changed progn to prog1 to fix the bug pointed out by Mike Alexander.
2195         Thanks very much Mike for pointing out the bug and submitting a
2196         patch!
2197
2198 2000-04-13  Mike Alexander  <mta@arbortext.com>
2199
2200         * process.el (call-process-internal): Send the correct input buffer
2201         (call-process-internal): Return the exit status of the process
2202
2203 2000-05-07  Ben Wing  <ben@xemacs.org>
2204
2205         * winnt.el:
2206         * winnt.el (nt-quote-args-verbatim): Removed.
2207         * winnt.el (nt-quote-args-prefix-quote): Removed.
2208         * winnt.el (nt-quote-args-backslash-quote): Removed.
2209         * winnt.el (nt-quote-args-double-quote): Removed.
2210         * winnt.el (nt-quote-args-functions-alist): Removed.
2211         * winnt.el (nt-quote-process-args): Removed.
2212         Remove all stuff for argument quoting.  We borrow the code instead
2213         from Emacs 20.6, which is much more careful in its quoting
2214         (e.g. in handling runs of the escape character) and avoids most of
2215         the need for this Lisp mechanism by checking to see whether we're
2216         running a Cygwin or normal program and doing the appropriate
2217         quoting.  If we end up needing such a mechanism, we should add
2218         it by extending the variable `mswindows-quote-process-args' so it
2219         can take an alist of regexps.
2220
2221 2000-05-07  Ben Wing  <ben@xemacs.org>
2222
2223         * keydefs.el:
2224         Restore M-up, M-down to 21.1 state.  Put *ward-sentence on
2225         C-M-left, C-M-right instead.  Define C-M-up, C-M-down to scroll
2226         the window without moving point.
2227
2228         * simple.el:
2229         * simple.el (scroll-up-one): New.
2230         * simple.el (scroll-down-one): New.
2231         Functions for use with C-M-up/down.
2232
2233 2000-05-01  Martin Buchholz <martin@xemacs.org>
2234
2235         * XEmacs 21.2.33 is released.
2236
2237 2000-04-29  Martin Buchholz  <martin@xemacs.org>
2238
2239         * dialog.el (yes-or-no-p-dialog-box):
2240         Fix docstring.
2241         Fix following horrible bug in X11 mode with focus-follows-mouse:
2242           1. Visit two files in two different frames.
2243           2. do File->Revert Buffer in one of those frames.
2244           3. Dialog box appears.
2245           4. Arrange things so that the mouse passes over the *other*
2246              frame, then to the dialog box, and click on "Yes".
2247           5. The file contents end up in the *wrong* buffer!
2248         Add TODO comment.
2249
2250 2000-04-28  Ben Wing  <ben@xemacs.org>
2251
2252         * help.el (describe-installation): correct typo introduced
2253         in last patch: boundp -> fboundp.
2254
2255         * etags.el (buffer-tag-table-list):
2256         canonicalize filenames to Unix format so that tag-table-alist
2257         searching works under Windows.
2258
2259         * autoload.el:
2260         Bowdlerize the supposedly objectionable words
2261         "who couldn't quite manage to cleanly modify batch-update-autoloads".
2262
2263         * gutter-items.el (set-progress-display-style):
2264         * gutter-items.el (search-dialog-callback):
2265         * gutter-items.el (make-search-dialog):
2266         Change to new callback-ex api.
2267
2268 2000-04-26  Bjrn Torkelsson  <torkel@hpc2n.umu.se>
2269
2270         * help.el: (describe-installation): decode-coding-string is not
2271         defined in a non MULE environment.
2272
2273 2000-04-28  Ben Wing  <ben@xemacs.org>
2274
2275         * gutter-items.el (buffer-list-changed-hook):
2276         use it, not record-buffer-hook.
2277
2278         * subr.el (record-buffer-hook): Removed.
2279
2280 2000-04-27  Ben Wing  <ben@xemacs.org>
2281
2282         * gutter-items.el (buffers-tab-switch-to-buffer): do not
2283         use NORECORD option.  Andy will not like this, but the existing
2284         gutter behavior is just wrong, as per this comment:
2285
2286         ;; this used to add the norecord flag to both calls below.
2287         ;; this is bogus because it is a pervasive assumption in XEmacs
2288         ;; that the current buffer is at the front of the buffers list.
2289         ;; for example, select an item and then do M-C-l
2290         ;; (switch-to-other-buffer).  Things get way confused.
2291         ;;
2292         ;; Andy, if you want to maintain the current look, you must
2293         ;;  *uncouple* the gutter order and buffers order.
2294
2295         * loaddefs.el (completion-ignored-extensions): unfuckify.
2296
2297         * bytecomp.el (batch-byte-compile-one-file): new function, used in
2298         xemacs.mak.
2299
2300         * autoload.el (batch-update-one-directory): new function, used in
2301         xemacs.mak.
2302
2303         * loadup.el: set gc-cons-threshold very high unless dumping --
2304         loadup during update-elc is much much much faster.  also do this
2305         when quick-building.
2306
2307         add commented-out code for profiling loadup.
2308
2309
2310         * update-elc.el (preloaded-file-list): add bytecomp.el, since it
2311         is required in order to build xemacs.
2312
2313 2000-04-26  Ben Wing  <ben@xemacs.org>
2314
2315         * loadup.el: don't garbage collect during loadup if quick-build
2316         compile-time option is set.
2317
2318 2000-04-23  Ben Wing  <ben@xemacs.org>
2319
2320         * update-elc.el: compute whether any dumped .el or .elc files
2321         are newer than the dumped exe, and touch the file ../src/NEEDTODUMP
2322         if so.
2323
2324         * update-elc.el (update-elc-files-to-compile): always change
2325         NOBYTECOMPILE in the src directory rather than current dir,
2326         so it will work under NT.
2327
2328         * autoload.el (autoload-trim-file-name): canonicalize to slashes so
2329         the form of this file is identical between Unix and Windows.
2330         (autoload-target-directory): Fixed to be lisp/ not lisp/prim/.
2331         Added comment.
2332         (update-autoloads-from-directory): updated doc string.
2333         updated doc strings in a few other places.
2334
2335 2000-04-18  Yoshiki Hayashi  <yoshiki@xemacs.org>
2336
2337         * bytecomp.el (byte-force-recompile): Fix argument to
2338         byte-recompile-directory.
2339
2340 2000-04-17  Yoshiki Hayashi  <yoshiki@xemacs.org>
2341
2342         * gutter-items.el (progress-display-clear-when-idle): Use
2343         add-one-shot-hook.
2344         * gutter-items.el (clear-progress-display): Adjust number of
2345         arguments.
2346
2347 2000-04-13  Yoshiki Hayashi  <yoshiki@xemacs.org>
2348
2349         * dumped-lisp.el (preloaded-file-list): Always dump select.el.
2350
2351 2000-04-16  Ben Wing  <ben@xemacs.org>
2352
2353         * printer.el: New file.
2354
2355         * dumped-lisp.el (preloaded-file-list): Declare printer.el.
2356
2357         * help.el (describe-installation): Fix decoding for Windows.
2358
2359         * menubar-items.el:
2360         * menubar-items.el (default-menubar):
2361         * menubar-items.el (tutorials-menu-filter): New.
2362         * menubar-items.el (popup-menubar-menu):
2363         Add authorship.  Redo Help menu and Tutorials filter.
2364
2365         * menubar.el: Correct comment.
2366
2367         * modeline.el (modeline-buffer-identification): Correct doc string.
2368
2369         * simple.el:
2370         * simple.el (printing): Removed.
2371         * simple.el (printer-name): Removed.
2372         * simple.el (generic-print-buffer): Removed.
2373         * simple.el (generic-print-region): Removed.
2374         Move generic print code to printer.el.
2375
2376 2000-04-15  Ben Wing  <ben@xemacs.org>
2377
2378         * simple.el (generic-print-region): New.
2379         make this function actually work.
2380         (generic-print-buffer): call generic-print-region.
2381
2382 2000-04-14  Andy Piper  <andy@xemacs.org>
2383
2384         * gutter-items.el (make-search-dialog): avoid unnecessary futzing
2385         by using the new widget-callback-current-channel.
2386         (search-dialog-callback): ditto.
2387
2388 2000-04-12  Andy Piper  <andy@xemacs.org>
2389
2390         * gutter.el (default-gutter-position): moved from gutter-items.el.
2391         (default-gutter-position-changed-hook): ditto.
2392         (gutter-element-visibility-changed-hook): ditto.
2393         (set-gutter-element): ditto.
2394         (remove-gutter-element): ditto.
2395         (set-gutter-element-visible-p): ditto.
2396         (gutter-element-visible-p): ditto.
2397         (init-gutter): ditto.
2398
2399         * dialog.el (make-dialog-box): renamed and moved from
2400         gutter-items.el
2401
2402         * gutter-items.el: move various functions elsewhere.
2403
2404 2000-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2405
2406         * menubar-items.el: Fixed place of parenthesis.
2407
2408 2000-04-12  Ben Wing  <ben@xemacs.org>
2409
2410         * etags.el (find-tag-at-point): New.  Lets you do find-tag
2411                 without constantly being prompted for the tag.
2412         * simple.el: Added a number of section headings, to clarify the
2413                 organization of this file.
2414         * simple.el (activate-region):
2415         * simple.el (region-exists-p):
2416         * simple.el (region-active-p):
2417                 Moved these three function down to the other side of
2418                 the case-changing functions, so they join the rest of
2419                 the region code.
2420         * simple.el (printing): New.
2421         * simple.el (printer-name): New.
2422         * simple.el (generic-print-buffer): New.
2423                 New functions, a very simple prototype for a unified
2424                 printing interface.
2425
2426         * process.el (call-process-internal): Real fix for null BUFFER,
2427                 other problems with BUFFER specs.
2428
2429         * menubar-items.el:
2430                 Fixed up File->Print to use new printing functions.
2431                 Various corrections and expansions to Grep/Compile menus.
2432                 New options for Printing.
2433                 New options for SMTP Mail, the way to send mail under
2434                   MS Windows. (There's also a package patch to make SMTP
2435                   Mail be the default under MSWin.)
2436
2437 2000-04-09  Jeff Miller <jmiller@cablespeed.com>
2438
2439         * menubar-items.el: Selecting Rectangle Mousing from menubar
2440         did not work.  Needed to quote mouse-track-rectangle-p.
2441
2442 2000-04-06  Yoshiki Hayashi  <yoshiki@xemacs.org>
2443
2444         * cl-compat.el (keywordp): Removed.
2445
2446 2000-04-05  Andy Piper  <andy@xemacs.org>
2447
2448         * gutter-items.el (progress-layout-glyph): don't initialize here.
2449         (progress-gauge-glyph): use dynamic sizing.
2450         (set-progress-display-style): new function. Set progress glyphs
2451         appropriately depending on the style.
2452         (progress-display-style): new variable. Custom version of
2453         set-progress-display-style.
2454         (progress-abort-glyph): switch to dynamic sizes.
2455         (search-dialog-text): make the edit field active.
2456
2457 2000-04-04  Andy Piper  <andy@xemacs.org>
2458
2459         * gutter-items.el (make-search-dialog): need to make the search
2460         dialog visible after creation.
2461
2462         * menubar-items.el (default-menubar): use the search dialog for
2463         searching. Remove some extraneous search menu items.
2464
2465         * gutter-items.el (set-gutter-element): allow glyphs to be used as
2466         well as strings.
2467         (make-gutter-only-dialog-frame): allow the user to create the
2468         frame unmapped. Allow the gutter spec to be given as a glyph.
2469         (search-dialog-direction): new variable.
2470         (search-dialog-text): new variable.
2471         (search-dialog-callback): new function. Callback for the search
2472         dialog action.
2473         (make-search-dialog): new function. Create a user-friendly search
2474         dialog.
2475
2476 2000-04-04  Hrvoje Niksic  <hniksic@iskon.hr>
2477
2478         * faces.el (set-face-stipple): Use mswindows-bitmap-file-path
2479         under Windows.
2480
2481 2000-04-01  Andy Piper  <andy@xemacs.org>
2482
2483         * font-lock.el (font-lock-fontify-keywords-region): Calculate
2484         progress more accurately.
2485
2486 2000-02-02  Hirokazu FUKUI  <hfukui@sannet.ne.jp>
2487
2488         * finder.el (finder-compile-keywords): Process readable files only.
2489         Because error in process of .#finder-inf.el when compile xemacs
2490         with --with-clash-detection option.
2491
2492 2000-03-31  Andy Piper  <andy@xemacs.org>
2493
2494         * gutter-items.el (append-progress-display): don't delay after a
2495         successful font-lock.
2496         (make-gutter-only-dialog-frame): new function. Allow users to
2497         create gutter-only dialogs.
2498
2499 2000-03-27  Mike Alexander  <mta@arbortext.com>
2500
2501         * process.el (call-process-internal): Handle a null BUFFER
2502         parameter correctly.
2503
2504 2000-03-28  Andy Piper  <andy@xemacs.org>
2505
2506         * gutter-items.el (abort-progress-display): put strings in the
2507         gutter not extents.
2508         (progress-layout-glyph): signal special 'quit callback.
2509         (progress-display-quit-function): deleted.
2510         (progress-display-stop-callback): deleted.
2511         (progress-display-dispatch-command-events): deleted.
2512         (append-progress-display): remove calls to
2513         progress-display-dispatch-command-events.
2514         (raw-append-progress-display): ditto.
2515
2516 2000-03-23  Hrvoje Niksic  <hniksic@iskon.hr>
2517
2518         * faces.el (set-face-stipple): Rewrite to correctly handle PIXMAP
2519         being a list.  Actually define `stipple-pixmap-p' which is used as
2520         an error predicate.  Correctly handle PIXMAP being either relative
2521         or absolute file name.
2522
2523 2000-03-24  Andy Piper  <andy@xemacs.org>
2524
2525         * gutter-items.el (add-tab-to-gutter): use copy-sequence.
2526         (abort-progress-display): ditto. Don't delete the created extent.
2527         (raw-append-progress-display): ditto.
2528         (progress-display-dispatch-non-command-events): new
2529         function. Encapsulates what we want to do when no command input is
2530         required.
2531         (progress-display-dispatch-command-events): likewise, but disable
2532         for now since it causes too many problems.
2533         (append-progress-display): use them.
2534         (raw-append-progress-display): ditto.
2535         (default-gutter-position-changed-hook): set this rather than
2536         default-gutter-position-changed.
2537         (default-gutter-position-changed-hook): lambda with zero arguments
2538         rather than one.
2539         (raw-append-progress-display): trap errors in pending input since
2540         allowing them to signal will hose the gauge well and
2541         truly. Ideally we would like to delay these until we are more able
2542         to cope.
2543         (append-progress-display): ditto.
2544
2545 2000-03-20  Jeff Miller <jmiller@cablespeed.com>
2546
2547         * lisp/make-docfile.el: call-process-internal is now implemented
2548         in process.el.
2549
2550 2000-03-21  Ben Wing  <ben@xemacs.org>
2551
2552         * mule\mule-cmds.el (set-language-info-alist):
2553         Fix to correspond to new menu arrangement.
2554
2555 2000-03-21  Ben Wing  <ben@xemacs.org>
2556
2557         * process.el:
2558         * process.el (call-process-internal): New.
2559         New implementation of call-process.  Only enabled under NT, so far.
2560         stderr handling not implemented yet in CVS'd C code.
2561
2562 2000-03-20  Ben Wing  <ben@xemacs.org>
2563
2564         * lisp-mode.el:
2565         * lisp-mode.el (lisp-interaction-mode-menubar-menu): New.
2566         * lisp-mode.el (lisp-interaction-mode):
2567         Put back Lisp Interaction menubar for Jan V's sake.
2568
2569         * simple.el:
2570         * simple.el (mark-ring):
2571         * simple.el (dont-record-current-mark): New.
2572         * simple.el (in-shifted-motion-command): New.
2573         * simple.el (mark-ring-unrecorded-commands): New.
2574         * simple.el (mark-ring-max):
2575         * simple.el (set-mark-command):
2576         * simple.el (push-mark):
2577         * simple.el (handle-pre-motion-command):
2578         Implement scheme for not recording unimportant marks.
2579
2580         * subr.el:
2581         * subr.el (function-allows-args): New.
2582         New function function-allows-args.
2583
2584 2000-03-20  Martin Buchholz <martin@xemacs.org>
2585
2586         * XEmacs 21.2.32 is released.
2587
2588 2000-03-20  Andy Piper  <andy@xemacs.org>
2589
2590         * gutter-items.el (update-tab-in-gutter): force selection of the
2591         selected-window if required to do so.
2592         (buffers-tab-items): ditto.
2593         (add-tab-to-gutter): ditto.
2594         (create-frame-hook): use force-selection.
2595         (default-gutter-position-changed): lambdify.
2596         (update-tab-hook): deleted since it was only used in one place.
2597
2598 2000-03-18  Andy Piper  <andy@xemacs.org>
2599
2600         * files.el (find-file-noselect): undo change that shouldn't have
2601         gone in.
2602
2603 2000-03-17  Andy Piper  <andy@xemacs.org>
2604
2605         * buffer.el (switch-to-buffer): use last-nonminibuf-window instead
2606         of selected-window trickery.
2607
2608         * gutter-items.el (update-tab-in-gutter): don't give dedicated
2609         frames tabs.
2610         (progress-display-stop-callback): progress -> progress-display
2611         (progress-display-quit-function): ditto.
2612         (clear-progress-display): ditto.
2613         (remove-progress-display): ditto.
2614         (append-progress-display): ditto.
2615         (abort-progress-display): ditto.
2616         (raw-append-progress-display): ditto.
2617         (display-progress-display): ditto.
2618         (current-progress-display-label): ditto.
2619         (current-progress-display): ditto.
2620         (lprogress-display): ditto and save the buffer
2621         (progress-display): ditto. Otherwise the buffer sometimes gets
2622         changed which confuses font-lock.
2623
2624         * font-lock.el (font-lock-default-fontify-buffer): catch all
2625         errors, not just quit.
2626         (font-lock-mode): progress -> display-progress
2627         (font-lock-default-fontify-buffer): ditto.
2628         (font-lock-fontify-syntactically-region): ditto.
2629         (font-lock-fontify-keywords-region): ditto.
2630
2631 2000-03-14  Hrvoje Niksic  <hniksic@iskon.hr>
2632
2633         * cl.el (gensym): Move to here from cl-macs.el.
2634         (gentemp): Ditto.
2635
2636 2000-03-16  Andy Piper  <andy@xemacs.org>
2637
2638         * font-lock.el (font-lock-mode): use lprogress and friends for
2639         progress management.
2640         (font-lock-default-fontify-buffer): ditto.
2641         (font-lock-fontify-syntactically-region): ditto.
2642         (font-lock-fontify-keywords-region): ditto.
2643         (font-lock-revert-cleanup): fix reverting.
2644         (font-lock-revert-setup): ditto.
2645
2646         * gutter-items.el (progress-use-echo-area): new variable. Use the
2647         echo area for progress gauges if non-nil.
2648         (clear-progress): remove echo area stuff and defer to
2649         clear-message.
2650         (append-progress): dispatch non-command events after each progress
2651         increment. Remove echo area stuff.
2652         (abort-progress): remove echo area stuff and defer to
2653         display-message.
2654         (raw-append-progress): ditto. Dispatch non-command events after
2655         gutter redisplay.
2656         (display-progress): defer echo area stuff to display-message.
2657
2658         * gutter-items.el (clear-progress):
2659         (abort-progress): indentation changes.
2660         (display-progress): don't clear progress.
2661         (append-progress): compare messages with equal.
2662         (raw-append-progress): use dispatch-non-command-events to flush
2663         widget creation events.
2664
2665 2000-03-13  Ben Wing  <ben@xemacs.org>
2666
2667         * abbrev.el:
2668         * abbrev.el (abbrev-string-to-be-defined): New.
2669         * abbrev.el (inverse-abbrev-string-to-be-defined): New.
2670         Changes for use with the menubar.
2671
2672 2000-03-12  Ben Wing  <ben@xemacs.org>
2673
2674         * alist.el (vassoc): moved here from font-menu.el.
2675
2676         * custom.el (defface): typo fix.
2677
2678         * dialog.el (yes-or-no-p-dialog-box):
2679         * dialog.el (message-box):
2680         * files.el (save-some-buffers-1):
2681         Put accelerators in the button names.
2682
2683         * font-lock.el (font-lock-comment-face):
2684         * font-lock.el (font-lock-keyword-face):
2685         * font-lock.el (font-lock-function-name-face):
2686         Fixed some of the colors under MS Windows because the existing
2687         default colors were hardly different from black and needed to be
2688         made lighter.
2689
2690         * font-menu.el:
2691         * font-menu.el (font-menu-split-long-menu):
2692         * font-menu.el (font-menu-family-constructor):
2693         * font-menu.el (font-menu-size-constructor):
2694         * font-menu.el (font-menu-weight-constructor):
2695         * font-menu.el (font-menu-set-font):
2696         vassoc moved to alist.el.
2697         Accelerators added to all menus.
2698         Unused bound var new-props removed.
2699
2700         * keydefs.el: I did a whole lot of rearranging to put things in a
2701         more consistent order and fixed a number of cases where key
2702         combinations involving up, down, left, right and so on were
2703         defined but the corresponding keypad combinations were not
2704         defined.
2705
2706         * lisp-mode.el:
2707         * lisp-mode.el (lisp-interaction-mode-popup-menu):
2708         * lisp-mode.el (emacs-lisp-mode):
2709         * lisp-mode.el (lisp-interaction-mode):
2710         * lisp-mode.el (flet):
2711         Added accelerators onto the menus.
2712         Made all the different versions of the let function be indented
2713         the same way.
2714         Undid Steve's easy-menu-ification, because it makes it impossible
2715         to have the menubar and popup menus different.
2716         Cleaned up the menu; added items for find-function &c and some
2717         indenting, and removed debug-on-*.
2718
2719         * list-mode.el (list-mode-hook):
2720         * list-mode.el (list-mode):
2721         * list-mode.el (completion-setup-hook):
2722         * list-mode.el (display-completion-list):
2723         Added support for the :window-height keyword, which is required
2724         because of other changes that I made for the file dialog box.  I
2725         also made the hook variables list-mode-hook and
2726         completion-setup-hook and also minibuffer-setup-hook in
2727         minibuf.el be permanent-local; see comment in list-mode.el.
2728
2729         * map-ynp.el (map-y-or-n-p):
2730         Added accelerators to the dialog buttons.
2731
2732         * menubar-items.el (menu-truncate-list):
2733         New internal function.
2734         * menubar-items.el (submenu-generate-accelerator-spec):
2735         * menubar-items.el (menu-item-strip-accelerator-spec):
2736         * menubar-items.el (menu-item-generate-accelerator-spec):
2737         New exported functions, for use in auto-generating accelerator specs.
2738
2739         * menubar-items.el:
2740         * menubar-items.el (default-menubar):
2741         * menubar-items.el (maybe-add-init-button):
2742         * menubar-items.el (bookmark-menu-filter):
2743         * menubar-items.el (slow-format-buffers-menu-line):
2744         * menubar-items.el (build-buffers-menu-internal):
2745         * menubar-items.el (language-environment-menu-filter):
2746         * menubar-items.el (default-popup-menu):
2747         * menubar-items.el (popup-buffer-menu):
2748         * menubar-items.el (popup-menubar-menu):
2749         Did a major overhaul on this file, and in fact I'm nowhere near
2750         done working on the menubar, and there will be more patches to
2751         come.  A basic summary of what I've done:
2752
2753         a) I added accelerators to all of the menu items.  For menus that
2754         are auto-generated, such as the buffers menu, the accelerators are
2755         automatically added to the beginning of each line using the
2756         numbers 1 through 9, then zero, and then letters starting with A,
2757         but omitting the letters that are already in use for the fixed
2758         menu items at the top of the buffers menu.  To facilitate adding
2759         accelerators of this kind, I created some new functions
2760         (*-accelerator-spec), which are also being used by other filters
2761         that auto generate lists of things such as ftp sites to download
2762         packages.  If people really don't like these accelerators
2763         appearing at the beginning of the menu items, a variable can be
2764         added to optionally turn them off, but I think this is rather
2765         pointless because other menu items have accelerators and many or
2766         most of the menu users will use the accelerators if the support is
2767         there.
2768
2769         b) I combined the top level Tools and Apps menus into a single
2770         Tools menu, because the distinction between the two is not
2771         obvious, and the items on the menus are not used often enough that
2772         putting some of them onto submenus is a problem.
2773
2774         c) I created two new top level menus called View and Cmds because
2775         there were too many items on the File and Edit menus, and I'm going
2776         to be adding more items to these menus.  In contrast to the Tools
2777         menu, the items on these menus may be used quite often during an
2778         editing session, and so should be available with fewer
2779         keystrokes.
2780
2781         d) I added a number of options to the options menu, including one
2782         for controlling whether the alt key can be used to traverse to
2783         menu items using the accelerators, one for controlling behavior of
2784         control-k, one for controlling how the kill and yank functions
2785         interact with the clipboard, a few additional buffers-menu
2786         options, and various other things.  I also did a bit of
2787         rearranging, for example, combining the keyboard and mouse options
2788         into a single keyboard and mouse submenu to facilitate the
2789         accelerators on that level.
2790
2791         e) I changed the variable buffers-menu-format-buffer-line-function
2792         to take two arguments instead of one, the second argument being
2793         the line number for use in creating an accelerator.  I added a
2794         hack to support existing functions with one argument (although I
2795         doubt that very many of these exist), for backward compatibility.
2796
2797         f) I moved the top level mule menu to be a submenu of the edit
2798         menu.  I think that most of the items on this menu are fairly
2799         useless and there are certainly not enough frequently used items
2800         to justify this being its own top level menu.
2801
2802         g) I combined most of the items in big-menubar.el into the main menu.
2803         If people think the main menu is too big, it would be possible to
2804         create different configurations, some smaller.
2805
2806         * menubar.el (check-menu-syntax):
2807         Deleted some syntax checks that were no longer valid, partly
2808         because of changes that were already made a long time ago, and
2809         partly because of a change I made where I allow the name of the
2810         menu item to be an evaluated expression rather than just a string,
2811         similar to all of the other parameters of a menu item.
2812
2813         * minibuf.el:
2814         * minibuf.el (read-file-name-1):
2815         * minibuf.el (mouse-read-file-name-1):
2816         I made a number of changes to improve the appearance
2817         and functioning of the file dialog box.  They include:
2818
2819         a) Fixing the problem where closing the dialog box by clicking on
2820         the close button of the window didn't properly exit the
2821         minibuffer.
2822
2823         b) Fixing the problem that if you typed part of a file name, and
2824         then clicked on a completion with the mouse, the file was not
2825         correctly selected.
2826
2827         c) Changing the title of the dialog box to reflect the operation
2828         being done in accordance with user interface conventions, rather
2829         than the name of the dialog box buffer, which is rather useless.
2830
2831         d) Remove the words "possible completions are" which didn't
2832         belong.
2833
2834         e) Fix things so that the completions scroll off the end of the
2835         completions windows only to the right, rather than both to the
2836         right and down, which is in accordance with Windows user interface
2837         conventions.
2838
2839         * msw-init.el (init-post-mswindows-win):
2840         Added a binding for meta-F4, which is the standard windows binding
2841         for exiting a program.
2842
2843         * select.el (get-selection-no-error):
2844         * select.el (own-selection):
2845         * select.el (own-clipboard):
2846         Added an optional argument called append to the functions
2847         own-selection and own-clipboard.  This adds support for appending
2848         text to the existing selection and allows the function
2849         own-clipboard to be used as the value of the variable
2850         interprogram- cut-function.
2851
2852         Fixed a bug in own-selection in handling zmacs-region-stays.
2853
2854         * simple.el (historical-kill-line): New.
2855
2856         * simple.el (kill-line):
2857         * simple.el (interprogram-cut-function):
2858         * simple.el (interprogram-paste-function):
2859         * simple.el (handle-pre-motion-command):
2860         * simple.el (next-line):
2861         * simple.el (previous-line):
2862         a) Expanded the variable kill-whole-line, so that function
2863         kill-line can be set to delete the entire line always, not just
2864         when cursor is at the beginning of the line.  This is controlled
2865         by setting the variable kill-whole-line to the symbol 'always.
2866         This behavior, as well as the existing kill-whole-line behavior,
2867         now only take effect when kill-line is called interactively,
2868         although this is a departure from a previous behavior in the case
2869         of setting this variable kill-whole-line to t.  It is almost
2870         certainly what has always been intended, and most likely the old
2871         way of doing things introduced bugs.  I also created a function
2872         called historical-kill-line, which ignores the kill-whole-line
2873         setting and always gives the historical behavior of only killing
2874         to the end of the line.  I bound this function to shift- control-k
2875         so that the kill to end of line behavior is available, even when
2876         kill-whole-line has been set to change control-k into the simple
2877         delete-whole-line behavior. (This can be set using the options
2878         menu.)
2879
2880         b) I changed things so that kill and yank now interact with the
2881         clipboard by default under windows.  This was done by changing the
2882         default value of interprogram-cut- function and
2883         interprogram-paste-function.  You can get the old behavior by
2884         setting these to nil, and there is an option on the options menu
2885         to do this.
2886
2887         c) I added support for selecting text using shifted motion keys.
2888         This support is on by default and can be controlled by the
2889         variable shifted-motion-keys-select-region.  There is also a
2890         variable called unshifted-motion-keys-deselect-region that
2891         controls more specifically how the shifted motion key behavior
2892         works.  I did not put an option on the options menu to turn this
2893         off, because I can't imagine why this would be useful.
2894
2895         * simple.el (forward-block-of-lines):
2896         * simple.el (backward-block-of-lines):
2897         * simple.el (block-movement-size):
2898         New.
2899
2900         * simple.el (uncapitalized-title-words):
2901         * simple.el (uncapitalized-title-word-regexp):
2902         * simple.el (capitalize-string-as-title):
2903         * simple.el (capitalize-region-as-title):
2904         New.
2905
2906
2907         * subr.el (add-hook):
2908         * subr.el (make-local-hook): New.
2909         * subr.el (remove-local-hook): New.
2910         * subr.el (add-one-shot-hook): New.
2911         * subr.el (add-local-one-shot-hook): New.
2912         Added some functions to make using hooks easier.
2913         These include:
2914
2915         a) Functions add-local-hook and remove-local-hook to make it easy
2916         to use local hooks.
2917
2918         b) Functions add-one-shot-hook and add-local-one-shot-hook, which
2919         make it possible to add a "one-shot" hook, which is to say a hook
2920         that runs only once, and automatically removes itself after the
2921         first time it has run.
2922
2923 2000-03-09  Andy Piper  <andy@xemacs.org>
2924
2925         * files.el (auto-mode-alist): pick up jsp, jhtml and xml files.
2926
2927 2000-03-09  Yoshiki Hayashi  <yoshiki@xemacs.org>
2928
2929         * buff-menu.el (buffers-menu-omit-invisible-buffers):
2930         Moved from menubar-items.el.
2931         * dumped-lisp.el: Dump gutter-items regardless of menubar.
2932
2933 2000-03-08  Andy Piper  <andy@xemacs.org>
2934
2935         * gutter-items.el (build-buffers-tab-internal): add selected field
2936         to buffers tab spec.
2937
2938 2000-03-07  Yoshiki Hayashi  <yoshiki@xemacs.org>
2939
2940         * minibuf.el (last-exact-completion): Initialize to nil.
2941
2942 2000-03-07  Didier Verna  <didier@xemacs.org>
2943
2944         * startup.el (command-line-1): remove unused variable
2945         `first-file-buffer'.
2946
2947 2000-02-29  Hrvoje Niksic  <hniksic@iskon.hr>
2948
2949         * loaddefs.el (completion-ignored-extensions): Removed ".log",
2950         which is also used for Web server log files.
2951
2952 2000-02-03  IKEYAMA Tomonori <tomonori@suiyokai.org>
2953
2954         * mule/mule-charset.el: Setup auto-fill-chars.
2955
2956 2000-03-02  SL Baur  <steve@beopen.com>
2957
2958         * subr.el (with-string-as-buffer-contents): Reimplement using
2959         `with-temp-buffer'.  Fixes non-unique buffer name problem, fixes
2960         non-deletion of buffer after execution problem.
2961         (with-output-to-string): Use unique buffer name.
2962
2963 2000-02-29  Stephen J. Turnbull  <stephen@xemacs.org>
2964
2965         * gutter-items.el (buffers-tab-sort-function):  New variable.
2966         (buffers-tab-items):  Funcall it to sort the buffer tab list.
2967
2968 2000-02-29  Stephen J. Turnbull  <stephen@xemacs.org>
2969
2970         * startup.el (load-user-init-file):  Merge two `if's to one `or'.
2971
2972 2000-02-28  Martin Buchholz  <martin@xemacs.org>
2973
2974         * menubar-items.el (maybe-add-init-button): Remove the "Load
2975         .emacs" button from all menubars.
2976
2977 2000-03-01  Didier Verna  <didier@xemacs.org>
2978
2979         * rect.el (string-rectangle): depend on `pending-delete-mode' for
2980         region rectangle replacement (from Jan Vroonhof).
2981         (replace-rectangle): new function.
2982
2983 2000-01-05  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
2984
2985         * mule/mule-cmds.el (set-default-coding-systems): Use
2986         set-terminal-coding-system and set-keyboard-coding-system.
2987         * coding.el (set-terminal-coding-system): Use
2988         set-console-tty-output-coding-system.
2989         (set-keyboard-coding-system): Use
2990         set-console-tty-input-coding-system.
2991
2992 2000-02-21  Yoshiki Hayashi  <yoshiki@xemacs.org>
2993
2994         * minibuf.el (read-variable): Allow symbol to default argument.
2995
2996 2000-02-27  Andy Piper  <andy@xemacs.org>
2997
2998         * gutter-items.el (update-tab-hook): new function to be used for
2999         hooks.
3000         (create-frame-hook): add update-tab-hook.
3001         (record-buffer-hook): ditto.
3002         (default-gutter-position-changed): ditto.
3003         (default-gutter-position): updating the buffers tab is now handled
3004         by a hook.
3005         (default-gutter-position-changed-hook): new variable.
3006         (gutter-element-visibility-changed-hook): ditto.
3007         (set-gutter-element-visible-p): call it.
3008         (set-gutter-element): use modify-specifier-instances. Set extents
3009         as duplicable before using.
3010         (remove-gutter-element): ditto.
3011         (set-gutter-element-visible-p): ditto.
3012         (init-gutter): new function.
3013         (add-tab-to-gutter): use new gutter-element functions rather than
3014         setting specifiers directly.
3015         (clear-progress): ditto.
3016         (abort-progress): ditto.
3017         (gutter-buffers-tab-visible-p): renamed from
3018         default-gutter-visible-p
3019
3020         * specifier.el (modify-specifier-instances): new function from Jan
3021         Vroonhof.
3022
3023         * x-init.el (init-post-x-win): call init-gutter.
3024
3025         * msw-init.el (init-post-mswindows-win): call init-gutter.
3026
3027         * menubar-items.el (default-menubar): Update to reflect new gutter
3028         variables.
3029
3030 2000-02-26  Andy Piper  <andy@xemacs.org>
3031
3032         * gutter-items.el (set-gutter-element): new function. Add gutter
3033         elements to the specified gutter.
3034         (remove-gutter-element): new function. Remove gutter elements from
3035         the specified gutter.
3036         (set-gutter-element-visible-p): new function. Set gutter element
3037         visibility for the provided gutter-visible specifier.
3038
3039 2000-02-23  Andy Piper  <andy@xemacs.org>
3040
3041         * gutter-items.el (add-tab-to-gutter): specify dimensions
3042         dynamically.
3043
3044 2000-02-24  Martin Buchholz  <martin@xemacs.org>
3045
3046         * gutter-items.el (add-tab-to-gutter):
3047         * package-get.el (package-get-interactive-package-query):
3048         * package-ui.el (pui-directory-exists):
3049         (pui-install-selected-packages):
3050         (pui-list-packages):
3051         Use #'(lambda ...)  instead of '(lambda ...).
3052
3053 2000-02-21  Gregory Neil Shapiro <gshapiro@gshapiro.net>
3054
3055         * startup.el (load-user-init-file): Check to make sure user
3056           has an init-file before calling load().
3057
3058 2000-02-20  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3059
3060         * msw-glyphs.el (msgdi-device-p): Added this and 'msgdi specifier tag.
3061
3062 2000-02-23  Martin Buchholz <martin@xemacs.org>
3063
3064         * XEmacs 21.2.31 is released.
3065
3066 2000-02-21  Mike Sperber <mike@xemacs.org>
3067
3068         * loadup.el (really-early-error-handler):
3069         * update-elc.el:
3070         * make-docfile.el:
3071         Remove dependency on EMACSBOOTSTRAP... environment variables.
3072
3073 2000-02-21  Martin Buchholz <martin@xemacs.org>
3074
3075         * XEmacs 21.2.30 is released.
3076
3077 2000-02-19  Martin Buchholz  <martin@xemacs.org>
3078
3079         * byte-optimize.el (byte-optimize-plus):
3080         (byte-optimize-minus):
3081         (byte-optimize-multiply):
3082         Optimize (- 0) to 0, not (-)
3083         Optimize (+ 5 3.0) to 8.0
3084         Optimize (* 5 3.0) to 15.0
3085         Improve readability.
3086
3087 2000-02-21  Jonathan Harris  <jhar@tardis.ed.ac.uk>
3088
3089         * modeline.el: (modeline-scrolling-method): change modeline
3090         mswindows cursor appearance according to the value.
3091
3092         * msw-faces.el: (mswindows-init-device-faces): Initialise 'default
3093         and 'gui-element face colors and 'gui-element face font to Windows
3094         defaults.
3095
3096 2000-02-09 Stef Epardaud  <stef@lunatech.com>
3097
3098         * font-lock.el: Javadoc enhancements
3099
3100 1999-11-27  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
3101
3102         * ldap.el (toplevel): Test if LDAP support has been compiled in
3103         (ldap-verbose): New option
3104         (ldap-search-entries): Renamed from the previous ldap-search
3105         Conditionalize message display on ldap-verbose
3106         (ldap-add-entries, ldap-modify-entries, ldap-delete-entries): New
3107         defuns
3108         (ldap-search): Is now defined as an obsolete wrapper calling
3109         ldap-search-basic or ldap-search-entries
3110
3111
3112 1999-12-06  Hirokazu FUKUI  <hfukui@sannet.ne.jp>
3113             Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
3114             Jan Vroonhof  <jan@xemacs.org>
3115
3116         * byte-optimize.el (byte-optimize-form-code-walker): Fixed.
3117         When for-effect is true, didn't call `byte-optimize-form'
3118         in and/or subforms without last.
3119
3120 1999-12-07  Jan Vroonhof  <vroonhof@math.ethz.ch>
3121
3122         * package-get.el (package-get-download-sites): Use correct custom
3123         type.
3124
3125 2000-02-15  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3126
3127         * files.el (write-file): Ask for coding system when compiled with
3128         file-coding.
3129
3130 2000-02-16  Andy Piper  <andy@xemacs.org>
3131
3132         * buffer.el (switch-to-buffer): give norecord argument to
3133         set-window-buffer instead of explicitly recording.
3134
3135         * gutter-items.el (buffers-tab-switch-to-buffer): don't record if
3136         we have to pick a window.
3137
3138 1999-12-24  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3139
3140         * mule/mule-cmds.el (describe-language-support): Don't add
3141         unexist function to help-map.
3142         (describe-coding-system): Don't use already assigend `C'.
3143
3144 2000-01-23  Bjrn Torkelsson  <torkel@hpc2n.umu.se>
3145
3146         * info.el (Info-save-auto-generated-dir): nil -> 'never to make it
3147         work in custom.
3148
3149 2000-02-04  Kazuyuki IENAGA <kazz@imasy.or.jp>
3150
3151         * about.el: Ienaga's e-mail address change.
3152
3153 2000-02-16  Samuel Mikes  <smikes@alumni.hmc.edu>
3154
3155         * etags.el (find-tag): force new window -- even if buf already
3156         visible -- when other-window is t
3157
3158 2000-02-16  Martin Buchholz <martin@xemacs.org>
3159
3160         * XEmacs 21.2.29 is released.
3161
3162 2000-02-09  Martin Buchholz  <martin@xemacs.org>
3163
3164         * cl-extra.el (getf): This is now identical to `plist-get', so
3165         just defalias it.
3166         * cl-macs.el: Make getf an alias to plist-get, at the
3167         byte-compiler level, using define-compiler-macro.
3168
3169 2000-02-08  Martin Buchholz  <martin@xemacs.org>
3170
3171         * cl-extra.el (cl-remprop): Remove. remprop is now in C.
3172
3173 2000-02-07  Kyle Jones  <kyle_jones@wonderworks.com>
3174
3175         * lisp/etags.el (find-tag-internal): set exact-tagname to
3176           a regular expression that matches against the tagname
3177           part of the tag entry first instead of only looking in
3178           the context area.
3179
3180 2000-01-23  Bjrn Torkelsson  <torkel@hpc2n.umu.se>
3181
3182         * gutter-items.el: fixed typo(s) in customizing default-gutter-position
3183         * toobar.el: fixed typo(s) in customizing default-toolbar-position
3184
3185 2000-02-07  Martin Buchholz <martin@xemacs.org>
3186
3187         * XEmacs 21.2.28 is released.
3188
3189 2000-02-07  Martin Buchholz  <martin@xemacs.org>
3190
3191         * cl-extra.el (getf): Just call `get', never `get*'.
3192         Make arglist match docstring.
3193         Fix bug: (getf nil t t) ==> Lisp nesting exceeds `max-lisp-eval-depth'
3194         * cl-macs.el (get* compiler macro): Simply replace `get*' by `get'.
3195         * byte-optimize.el: remove references to `get*'.
3196
3197 2000-02-06  Martin Buchholz  <martin@xemacs.org>
3198
3199         * mule/european.el: Add syntax information for Latin3 and Latin4.
3200
3201 2000-02-02  Martin Buchholz  <martin@xemacs.org>
3202
3203         * byte-optimize.el: Byte-optimize (length "foo")
3204
3205 2000-02-03   Daiki Ueno  <ueno@ueda.info.waseda.ac.jp>
3206
3207         * window.el (shrink-window-if-larger-than-buffer): Rewrite full
3208         width check using `window-leftmost-p' and `window-rightmost-p'.
3209
3210 2000-02-02  Per Abrahamsen  <abraham@dina.kvl.dk>
3211
3212         * wid-edit.el (widget-match-inline): An atom never matches a
3213           list.
3214
3215 2000-01-29  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3216
3217         * modeline.el: Consolidated 'x and 'mswindows specification under
3218         'win tag.
3219
3220 2000-01-29  Andy Piper  <andy@xemacs.org>
3221
3222         * gutter-items.el: (format-buffers-tab-line): Try and be
3223         intelligent about buffer naming when we have duplicates.
3224
3225 2000-01-29  Andy Piper  <andy@xemacs.org>
3226
3227         * gutter-items.el (gutter-visible-p): Make sure the gutter gets
3228         updated when it becomes visible.
3229
3230 2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3231
3232         * bytecomp.el (byte-compile-insert-header): Properly set coding
3233         system under MULE and file-coding.
3234
3235 2000-01-28  Martin Buchholz  <martin@xemacs.org>
3236
3237         * coding.el (dontusethis-set-value-file-name-coding-system-handler):
3238         (dontusethis-set-value-terminal-coding-system-handler):
3239         (dontusethis-set-value-keyboard-coding-system-handler):
3240         Never undefine coding system aliases.  Emergency fix for gnus.
3241
3242 2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
3243
3244         * files.el (abbreviate-file-name): Use directory-sep-char instead
3245         of hard-coded "/".
3246
3247 2000-01-27  Hrvoje Niksic  <hniksic@iskon.hr>
3248
3249         * startup.el (user-init-file-base-list): New variable, replacing
3250         user-init-file-base.
3251         (find-user-init-file): New function.
3252         (command-line-early): Use it.
3253         (load-user-init-file): Ditto.
3254
3255 2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3256
3257         * gutter-items.el (update-tab-in-gutter): Use proper locale when
3258         calling valid-image-instantiator-format-p
3259
3260 2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
3261
3262         * isearch-mode.el (isearch-mode): The variable is
3263         isearch-unhidden-extents, not isearch-opened-extents.
3264
3265 2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
3266
3267         * minibuf.el (next-history-element): Modify error message if a
3268         default value is available.
3269
3270 2000-01-26  Martin Buchholz  <martin@xemacs.org>
3271
3272         * bytecomp.el (byte-compile-file): Don't unconditionally write
3273         .elc files in binary - might contain non-Latin1.
3274
3275 2000-01-24  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3276
3277         * process.el (shell-quote-argument): Use (nt-quote-process-args)
3278         for windows-nt.
3279
3280         * version.el:
3281         * startup.el (user-init-file-base):
3282         * process.el (call-process-region):
3283         * files.el (make-backup-file-name):
3284         (backup-file-name-p):
3285         (file-relative-name):
3286         (abbreviate-file-name):
3287         (set-auto-mode):
3288         * code-process.el (call-process-region): Removed unnecessary
3289         branching on 'windows-nt and 'ms-dos system types. Phased 'ms-dos
3290         support out of the universe.
3291
3292         * process.el:
3293         * code-process.el:
3294         * bytecomp.el (byte-compile-file): Removed reference to
3295         buffer-file-type, and commented usage of binary-process-output
3296         NTEmacs variables.
3297
3298 2000-01-24  Yoshiki Hayashi  <yoshiki@xemacs.org>
3299
3300         * help.el (function-arglist): Add case for macro.
3301
3302 2000-01-22  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3303
3304         * cus-edit.el (custom-display): Removed "MS-DOS" and added Windows
3305         printers.
3306         (custom-display): Added a menu for printer/display tags.
3307
3308         * frame.el (frame-type):
3309         * device.el (device-type): Added 'msprinter to the doc string, and
3310         removed 'pc -- it is not going to be implemented ever.
3311         (call-device-method): Fixed docstring typo.
3312         Defined specifier tags 'printer and 'display.
3313
3314 2000-01-22  Kyle Jones  <kyle_jones@wonderworks.com>
3315
3316         * lisp/itimer.el (itimer-run-expired-timers): (consp
3317           last-command-event-time) instead of (consp
3318           'last-command-event-time).
3319
3320 2000-01-21  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3321
3322         * msw-glyphs.el: Removed obsolete commentary.
3323
3324 2000-01-21  Hrvoje Niksic  <hniksic@iskon.hr>
3325
3326         * minibuf.el (read-file-name): Use abbreviate-file-name to produce
3327         better default value.
3328
3329 2000-01-21  Hrvoje Niksic  <hniksic@iskon.hr>
3330
3331         * minibuf.el (read-expression): Add a DEFAULT-VALUE argument.
3332         (read-string): Ditto.
3333         (eval-minibuffer): Ditto.
3334         (read-command): Ditto.
3335         (read-function): Ditto.
3336         (read-variable): Ditto.
3337         (read-number): Ditto.
3338         (read-shell-command): Ditto.
3339         (read-number): Record history.
3340
3341 2000-01-20  Yoshiki Hayashi  <yoshiki@xemacs.org>
3342
3343         * etags.el (find-tag-tag): Use DEFAULT of completing-read.
3344
3345 2000-01-20  Yoshiki Hayashi  <yoshiki@xemacs.org>
3346
3347         * faces.el (startup-initialize-custom-faces): New function.
3348         Reset all faces created during auto-autoloads loading time
3349         by defface.
3350         * startup.el (command-line): Call it.
3351
3352 2000-01-19  Yoshiki Hayashi  <yoshiki@xemacs.org>
3353
3354         * about.el (about-hackers): Add myself to contributors list.
3355
3356 2000-01-12  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
3357
3358         * menubar-items.el (maybe-add-init-button): Removed an argument in
3359         a call to load-user-init-file, as the function managed to lose its
3360         formal parameter a few betas ago.
3361
3362 2000-01-18  Martin Buchholz <martin@xemacs.org>
3363
3364         * XEmacs 21.2.27 is released.
3365
3366 2000-01-18  Martin Buchholz  <martin@xemacs.org>
3367
3368         * process.el (shell-command-to-string): Use the FSF docstring.
3369         Make shell-command-to-string the standard function, and
3370         exec-to-string the (deprecated) alias.
3371
3372         * startup.el: typo fix.
3373
3374 2000-01-16  Martin Buchholz  <martin@xemacs.org>
3375
3376         * mule/mule-misc.el (char-octet): Move back into mule-charset.c.
3377
3378 2000-01-14  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3379
3380         * menubar-items.el (sort-buffers-menu-alphabetically): Put invisible
3381         buffers after visible buffers.
3382         (sort-buffers-menu-by-mode-then-alphabetically): Ditto.
3383
3384 2000-01-17  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3385
3386         * info.el (Info-extract-menu-node-name): Stop at a dot
3387         followed by whitespace or right parenthesis.
3388
3389 2000-01-15  Hrvoje Niksic  <hniksic@iskon.hr>
3390
3391         * info.el (Info-directory-list): Warn against using Customize with
3392         Info-directory-list.
3393
3394 2000-01-15  Adrian Aichner  <aichner@ecf.teradyne.com>
3395
3396         * minibuf.el (read-file-name): doc fix.
3397
3398         * autoload.el (update-file-autoloads): doc fix.
3399
3400         * about.el (about-hackers): Change my E-mail address.
3401
3402 2000-01-13  Martin Buchholz  <martin@xemacs.org>
3403
3404         * info.el (Info-visit-file): Just use the `f' interactive spec to
3405         read a filename in the standard way.
3406
3407 2000-01-13  Andy Piper  <andy@xemacs.org>
3408
3409         * gutter-items.el (gutter-buffers-tab-orientation): new variable.
3410         (gutter-buffers-tab-extent): new variable.
3411         (update-tab-in-gutter): call add-tab-to-gutter again if the
3412         orientation has changed.
3413         (add-tab-to-gutter): cope with different orientations.
3414
3415 2000-01-11  Didier Verna  <didier@xemacs.org>
3416
3417         * info.el (Info-following-node-name): backward-skip dots as well
3418         as spaces (dots at the end of a node name aren't part of it).
3419         (Info-extract-menu-node-name): don't skip dots. There could be
3420         some in the node name.
3421         (Info-index): allow dots to be part of a node name.
3422
3423 2000-01-12  Andreas Jaeger  <aj@suse.de>
3424
3425         * files.el (auto-mode-alist): Added idlwave-mode.
3426         Patch by Carsten Dominik <dominik@astro.uva.nl>.
3427
3428 1999-12-22  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3429
3430         * info.el (Info-search): Show default value.
3431
3432 1999-12-20  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3433
3434         * info.el (Info-read-node-completion-table): New variable.
3435         (Info-read-node-name-1): New function.
3436         (Info-read-node-name): Use it.
3437         (Info-follow-reference): Use DEFAULT argument of completing-read.
3438         (Info-menu): Ditto.
3439
3440 1999-12-27  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3441
3442         * hyper-apropos.el (hyper-describe-key-briefly): Save
3443         window configuration.
3444         (hyper-describe-face): Use DEFAULT of completing-read.
3445         (hyper-apropos-read-variable-symbol): Ditto.
3446         (hyper-apropos-read-function-symbol): Ditto.
3447
3448 1999-12-27  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3449
3450         * mule/mule-cmds.el (set-default-coding-system): Set
3451         comint-exec-hook to use coding-system-for-read and
3452         coding-system-for-write so that C-x RET c works.
3453
3454 1999-12-27  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3455
3456         * minibuf.el (minibuffer-confirm-incomplete): Customize.
3457         (previous-matching-history-element): Increment
3458         minibuffer-max-depth by 1.
3459         (next-matching-history-element): Ditto.
3460
3461 2000-01-11  Andy Piper  <andy@xemacs.org>
3462
3463         * gutter-items.el (buffers-tab): Create a new face for the buffers
3464         tab.
3465         (buffers-tab-face): use it.
3466
3467 2000-01-10  Didier Verna  <didier@xemacs.org>
3468
3469         * modeline.el (modeline-scrolling-method): change modeline X
3470         cursor appearance according to the value.
3471
3472 2000-01-07  Andreas Jaeger  <aj@suse.de>
3473
3474         * about.el (about-hackers): Moved my entry to contributor list.
3475         (xemacs-hackers): Added myself.
3476         (about-maintainer-info): Added description of myself.
3477
3478
3479 2000-01-07  Didier Verna  <didier@xemacs.org>
3480
3481         * modeline.el (modeline-scrolling-method): new variable.
3482         (mouse-drag-modeline): add reference to it in the docstring.
3483         (mouse-drag-modeline): handle it.
3484
3485 2000-01-08  Andy Piper  <andy@xemacs.org>
3486
3487         * gutter-items.el (update-tab-in-gutter): remove resize-subwindow
3488         calls.
3489         (remove-buffer-from-gutter-tab): ditto.
3490
3491 2000-01-06  Per Abrahamsen  <abraham@dina.kvl.dk>
3492
3493         * cus-edit.el (custom-hook-convert-widget): Fix comment.
3494         (custom-face-edit): Fix grammatical error in help message.
3495
3496 2000-01-03  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3497
3498         * movemail.el: Added.
3499
3500         * dumped-lisp.el (preloaded-file-list): Added movemail.el.
3501
3502 2000-01-03  Didier Verna  <didier@xemacs.org>
3503
3504         * modeline.el (mouse-drag-modeline): remove the code related to
3505         the modeline horizontal scrolling facility.
3506
3507 1999-12-31  Martin Buchholz <martin@xemacs.org>
3508
3509         * XEmacs 21.2.26 is released.
3510
3511 1999-12-28  Andy Piper  <andy@xemacs.org>
3512
3513         * wid-edit.el (widget-push-button-value-create): The gui cache
3514         does not agree with native widgets which can only be displayed
3515         once per window. The reasons for caching are diminished now that
3516         we don't hog resources when creating buttons.
3517         (widget-push-button-cache) deleted.
3518
3519 1999-12-24  Martin Buchholz <martin@xemacs.org>
3520
3521         * XEmacs 21.2.25 is released.
3522
3523 1999-12-24  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3524
3525         * hyper-apropos.el (hyper-apropos): Toggle
3526         hyper-apropos-programming-apropos correctly.
3527         Set REGEXP when user accepts default value.
3528
3529 1999-12-22  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3530
3531         * minibuf.el (read-from-minibuffer): Bind minibuffer-default.
3532         (read-file-name-2): Use DEFAULT argument of read-from-minibuffer.
3533
3534 1999-12-22  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3535
3536         * mule/mule-category.el (undefined-category-designator):
3537         Return char instead of character.  Search for undefined one.
3538         (describe-category): Use with-displaying-help-buffer.
3539
3540 1999-12-21  Martin Buchholz  <martin@xemacs.org>
3541
3542         * byte-optimize.el (byte-optimize-plus):
3543         Optimize (+ 1) to 1 instead of (1+ nil).
3544
3545         * files.el (basic-save-buffer): Rewrite for clarity.  Use (char-before).
3546
3547         * byte-optimize.el (byte-compile-butlast): Remove.  Use butlast instead.
3548
3549         * byte-optimize.el (byte-optimize-char-before): New function.
3550         Remove performance penalty for using (char-before) instead of (char-after).
3551
3552 1999-12-20  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3553
3554         * mule/mule-category.el (char-category-list): Return character
3555         instead of integer.
3556
3557 1999-12-17  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3558
3559         * minibuf.el (read-buffer): Check default is buffer object.
3560
3561 1999-11-25  Andy Piper  <andy@xemacs.org>
3562
3563         * cus-edit.el (custom-buffer-create-buttons): Use native widgets
3564         for buttons.
3565
3566 1999-12-16  Andreas Jaeger  <aj@suse.de>
3567
3568         * package-get.el (package-get-maybe-save-index): Fixed typo.
3569         Patch by Jeff Miller <jmiller@smart.net>.
3570
3571 1999-12-13  Charles G Waldman  <cgw@alum.mit.edu>
3572
3573         * gnuserv.el (gnuserv-process-filter):  don't call
3574         gnuserv-write-to-client when gnuserv-current-client is nil
3575
3576 1999-12-14  Martin Buchholz <martin@xemacs.org>
3577
3578         * XEmacs 21.2.24 is released.
3579
3580 1999-12-12  Gunnar Evermann  <ge204@eng.cam.ac.uk>
3581
3582         * about.el (about-hackers): Update my email address.
3583
3584 1999-12-07  Martin Buchholz <martin@xemacs.org>
3585
3586         * XEmacs 21.2.23 is released.
3587
3588 1999-11-06  Jason R Mastaler  <jason@mastaler.com>
3589
3590         * package-get.el (package-get-download-sites): Removed several
3591         defunct download sites, added many new ones, and corrected a few
3592         incorrect directory-on-site entries.  Added physical locations to
3593         site-description.
3594
3595 1999-11-30  Gunnar Evermann  <ge204@eng.cam.ac.uk>
3596
3597         * finder.el (finder-commentary): add DOC string and fix
3598         interactive spec
3599
3600 1999-12-04  Hrvoje Niksic  <hniksic@iskon.hr>
3601
3602         * help.el (describe-function): Don't forget to intern the string
3603         completing-read returns.
3604         (describe-variable): Ditto.
3605
3606 1999-11-16  Adrian Aichner  <adrian@xemacs.org>
3607
3608         * hyper-apropos.el (hyper-apropos-this-symbol): Handle
3609         `hyper-apropos-help-mode' here to find symbol to customize
3610         irregardless of cursor position and simplify
3611         `hyper-apropos-set-variable', `hyper-apropos-find-function', and
3612         `hyper-apropos-popup-menu'.
3613
3614 1999-11-21  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3615
3616         * apropos.el (apropos-mode-map): Add return to call
3617         apropos-follow.
3618         (apropos-print): Call apropos-mode to have better
3619         command reference. Put keymap text-poperty to
3620         symbole name.
3621
3622 1999-11-22  Alastair Burt  <burt@dfki.de>
3623
3624         * help.el: (describe-bindings-1): Added handling of keymaps for
3625         the extents at point.
3626
3627 1999-12-02  Mark Thomas  <mthomas@jprc.com>
3628
3629         * gutter-items.el (buffers-tab-items): Wrap the function in a
3630         save-match-data
3631
3632 1999-12-04  Hrvoje Niksic  <hniksic@iskon.hr>
3633
3634         * help.el (describe-function): Use the DEFAULT argument to
3635         completing-read.
3636         (describe-variable): Ditto.
3637
3638 1999-11-26  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3639
3640         * minibuf.el (read-from-minibuffer): Add optional argument
3641         DEFAULT to have better mini-buffer history support.
3642         (completing-read): Pass default to read-from-minibuffer.
3643         (read-buffer): Pass default to completing-read.
3644
3645 1999-12-04  Hrvoje Niksic  <hniksic@iskon.hr>
3646
3647         * font-lock.el (font-lock-doc-string-face): Document the
3648         `font-lock-lisp-like' property.
3649
3650 1999-11-29  Hrvoje Niksic  <hniksic@iskon.hr>
3651
3652         * lisp-mode.el: Specify `font-lock-lisp-like'.
3653
3654         * font-lock.el (font-lock-lisp-like): New function.
3655         (font-lock-fontify-syntactically-region): Use it.
3656
3657 1999-11-29  XEmacs Build Bot <builds@cvs.xemacs.org>
3658
3659         * XEmacs 21.2.22 is released
3660
3661 1999-11-28  Martin Buchholz <martin@xemacs.org>
3662
3663         * XEmacs 21.2.21 is released.
3664
3665 1999-11-18  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3666
3667         * minibuf.el (read-coding-system): Accept symbol and
3668         coding-system object as a default-coding-system.
3669
3670 1999-11-16  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3671
3672         * minibuf.el (read-coding-system): Accept symbol as
3673         a default-coding-system.
3674
3675 1999-10-06  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3676
3677         * apropos.el (apropos-documentation): Use insert instead
3678         of princ.
3679
3680 1999-11-07  William M. Perry  <wmperry@aventail.com>
3681
3682         * gpm.el: New gpm-minor-mode to turn GPM mouse support on & off
3683           for the linux console.
3684
3685         * mouse.el (mouse-consolidated-yank): Allow the mouse-yanking
3686           stuff to work when you are not on a window system, since the GPM
3687           mouse support now allows pasting from outside of XEmacs.
3688
3689 1999-11-10  XEmacs Build Bot <builds@cvs.xemacs.org>
3690
3691         * XEmacs 21.2.20 is released
3692
3693 1999-11-06  Hrvoje Niksic  <hniksic@iskon.hr>
3694
3695         * setup-paths.el (paths-default-info-directories): Add
3696         /usr/share/info and /usr/local/share/info.
3697
3698 1999-10-30  Hrvoje Niksic  <hniksic@srce.hr>
3699
3700         * about.el: Updated Vladimir Ivanovic's info.
3701
3702 11999-08-28  Jan Vroonhof  <vroonhof@math.ethz.ch>
3703
3704         * auto-show.el (auto-show-truncationp): Remove.
3705
3706         * auto-show.el (auto-show-should-take-action-p): Use window-truncated-p
3707
3708 999-09-23  Gunnar Evermann  <ge204@eng.cam.ac.uk>
3709
3710         * indent.el (indent-line-to): fix bug: spaces were not replaced
3711         with tab if column is multiple of tab-width
3712         From dhn@qedinc.com
3713
3714 1999-10-24  Jan Vroonhof  <vroonhof@math.ethz.ch>
3715
3716         * mule/mule-cmds.el (read-input-method-name): Accept symbols
3717         correctly. Patch from Mikio Nakajima <minakaji@osaka.email.ne.jp>
3718
3719         * package-get.el (package-get-package-provider): Be verbose when
3720         interactive. Patch from Robert Pluim
3721
3722 1999-08-23  Mike McEwan  <mike@lotusland.demon.co.uk>
3723
3724         * info.el (Info-suffix-list): Add ".info.bz2" to the recognised
3725         info file suffixes.
3726
3727 1999-08-19  Stephen Tse  <stephent@sfu.ca>
3728
3729         * process.el (open-network-stream): Add a new optional parameter
3730         PROTOCOL to support udp; fix a minor typo and add an explanation
3731         in docstring for udp programming.
3732
3733         * code-process.el (open-network-stream): Add a new optional
3734         parameter PROTOCOL to support udp; fix a minor typo and add an
3735         explanation in docstring for udp programming.
3736
3737 1999-10-18  Andy Piper  <andy@xemacs.org>
3738
3739         * gui.el (make-gui-button): be more precise about how we call
3740         callbacks.
3741
3742         * wid-edit.el (widget-push-button-value-create): Use the new form
3743         of native gui-button.
3744
3745 1999-10-14  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
3746
3747         * info.el (Info-page-prev): Don't do (sit-for 0).
3748
3749 1999-10-13  Andy Piper  <andy@xemacs.org>
3750
3751         * gutter-items.el (progress-abort-glyph): new glyph for showing
3752         abort status.
3753         (append-progress): dispatch-event rather than sit-for.
3754         (abort-progress): new function. Show the abort glyph with an
3755         appropriate message.
3756         (raw-append-progress): dispatch-event rather than sit-for.
3757         (display-progress): cope with aborts.
3758
3759         * gui.el (make-gui-button): Use native widgets for buttons
3760         unconditionally.
3761         (insert-gui-button): ditto.
3762         (gui-button-p): ditto.
3763
3764         * xbm-button.el: remove from core.
3765
3766         * xpm-button.el: remove from core.
3767
3768 1999-10-07  Olivier Galibert  <galibert@pobox.com>
3769
3770         * faces.el (init-device-faces): Don't initialize the random faces
3771         on the stream device.
3772
3773 1999-10-06  Andy Piper  <andy@xemacs.org>
3774
3775         * files.el (recover-file): Don't use ls under windows for revert buffer.
3776
3777 1999-09-25  Adrian Aichner  <adrian@xemacs.org>
3778
3779         * package-get.el (package-get-download-menu): Make menu really
3780         toggle download sites.
3781         (package-get-download-sites): Add autoload cookie.
3782
3783 1999-09-29  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3784
3785         * setup-paths.el (paths-find-module-directory): Ditto.
3786
3787 1999-09-29  Werner Fink  <werner@suse.de>
3788
3789         * setup-paths.el (paths-find-exec-directory): Add missing nil
3790         parameter for environment.
3791
3792 1999-09-27  Martin Buchholz  <martin@xemacs.org>
3793
3794         * modeline.el (modeline-format):
3795         Only purecopy the strings.  Else
3796         (nsublis '(("%p" . "%P")) (default-value 'modeline-format) :test 'equal)
3797         barfs.
3798
3799 1999-08-28  Mike Woolley  <mike@bulsara.com>
3800
3801         * winnt.el: Removed nt-shell-mode-hook, which was preventing the
3802         user setting comint-completion-addsuffix and
3803         comint-process-echoes.
3804
3805 1999-09-22  Andy Piper  <andy@xemacs.org>
3806
3807         * gutter-items.el (update-tab-in-gutter): use
3808         last-nonminibuf-window instead of selected-window.
3809
3810 1999-09-18  Andy Piper  <andy@xemacs.org>
3811
3812         * gnuserv.el (gnuserv-edit-files): select frame we are going to
3813         display on.
3814
3815         * subr.el (record-buffer-hook): new variable so that the hook gets
3816         some documentation.
3817
3818 1999-09-16  Andy Piper  <andy@xemacs.org>
3819
3820         * gutter-items.el (update-tab-in-gutter): only update when the
3821         gutter is visible.
3822         (remove-buffer-from-gutter-tab): ditto.
3823
3824 1999-09-17  Hrvoje Niksic  <hniksic@srce.hr>
3825
3826         * simple.el (do-auto-fill): Commented out part of Kinsoku
3827         processing.
3828
3829 1999-09-14  Hrvoje Niksic  <hniksic@srce.hr>
3830
3831         * isearch-mode.el (isearch-highlightify-region): Give the
3832         highlighting extents a high priority.
3833         (isearch-make-extent): Give the main highlighting extent an even
3834         higher priority.
3835
3836 1999-09-13  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3837
3838         * packages.el (packages-compute-package-locations): Fix typo from
3839         -u rationalization.
3840
3841 1999-09-11  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3842
3843         * setup-paths.el (paths-find-doc-directory): Respect value of
3844         `configure-doc-directory.'
3845
3846         * find-paths.el (paths-find-architecture-directory): Give
3847         precendence `default' argument (which typically comes from
3848         configure).
3849
3850 1999-09-05  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3851
3852         * startup.el (command-line-early): Added options -user-init-file
3853         and -user-init-directory.
3854
3855         * files.el (user-init-file): Default to NIL so we can recognize
3856         when it's set.
3857
3858 1999-08-30  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
3859
3860         * obsolete.el (init-file-user):
3861         * startup.el:
3862         * packages.el (packages-compute-package-locations):
3863         * package-get.el (package-get-user-index-filename):
3864         * menubar-items.el (maybe-add-init-button):
3865         * info.el (Info-annotations-path):
3866         * dump-paths.el:
3867         Change `user-init-directory' to be an absolute path.
3868         Use `user-init-directory' where appropriate.
3869         Zap `init-file-user' and its uses.
3870
3871 1999-09-09  Hrvoje Niksic  <hniksic@srce.hr>
3872
3873         * subr.el (copy-symbol): New function.
3874
3875 1999-09-08  Hrvoje Niksic  <hniksic@srce.hr>
3876
3877         * isearch-mode.el (isearch-done): Be sure to restore invisible
3878         extents in the proper buffer.
3879         (isearch-pre-command-hook): Set this-command to the correct value
3880         in case the buffer has changed and old overriding-local-map was
3881         used.
3882         (isearch-restore-extent): Use remprop instead of setting the
3883         property to nil.
3884
3885 1999-09-08  Hrvoje Niksic  <hniksic@srce.hr>
3886
3887         * cmdloop.el (execute-extended-command): Update zmacs region
3888         before the delay.
3889         (execute-extended-command): Make the message gettext-friendly.
3890
3891 1999-09-07  Andy Piper  <andy@xemacs.org>
3892
3893         * gutter-items.el (progress-gauge-glyph): renamed from
3894         progress-glyph.
3895         (progress-text-glyph): new variable.
3896         (progress-layout-glyph): use layouts and text glyphs.
3897         (progress-area-buffer): removed.
3898         (progress-text-and-extent): new variable.
3899         (progress-displayed-p): dynamically create gutter area buffer.
3900         (clear-progress): ditto.
3901         (raw-append-progress): ditto.
3902         (append-progress): use new glyph names.
3903         (raw-append-progress): only create the extent when needed. set
3904         properties more optimally.
3905         (progress): remove args.
3906
3907 1999-09-07  Hrvoje Niksic  <hniksic@srce.hr>
3908
3909         * isearch-mode.el (isearch-range-invisible): Use mapc instead of
3910         mapcar where the return value is unused.
3911         (isearch-restore-invisible-extents): Ditto.
3912         (isearch-highlight-all-cleanup): Ditto.
3913         (isearch-delete-extents-in-range): Traverse the extents only once.
3914         (isearch-highlight-all-update): Don't start over if the search
3915         string has changed and more input is pending.
3916
3917 1999-09-07  Hrvoje Niksic  <hniksic@srce.hr>
3918
3919         * packages.el (packages-find-package-data-path): Ditto.
3920
3921         * cl.el: Use mapcar at top-level -- mapc is no longer a subr.
3922
3923         * subr.el (mapc-internal): Don't make obsolete.
3924
3925         * cl-extra.el (mapc): Resurrect.
3926
3927 1999-09-03  Hrvoje Niksic  <hniksic@srce.hr>
3928
3929         * obsolete.el (isearch-yank-x-clipboard): Define it as an obsolete
3930         alias.
3931
3932         * isearch-mode.el (isearch-top-state): Restore isearch-word.
3933         (isearch-yank-clipboard): Renamed from isearch-yank-x-clipboard.
3934         (isearch-yank-clipboard): Use get-clipboard instead of
3935         x-get-clipboard.
3936         (isearch-yank-selection): Fix docstring.
3937
3938 1999-09-02  Martin Buchholz  <martin@xemacs.org>
3939
3940         * cl-extra.el: Obsolete hash-table-type in favor of hash-table-weakness.
3941
3942 1999-09-02  Hrvoje Niksic  <hniksic@srce.hr>
3943
3944         * cl-macs.el (extent-start-position): Fix setf method.
3945         (extent-end-position): Ditto.
3946
3947 1999-09-02  Hrvoje Niksic  <hniksic@srce.hr>
3948
3949         * isearch-mode.el: End merge with FSF 20.4.
3950
3951         * isearch-mode.el (search-invisible): New variable.
3952         (isearch-hide-immediately): Ditto.
3953         (isearch-unhidden-extents): Ditto.
3954         (isearch-range-invisible): New function.
3955         (isearch-unhide-extent): Ditto.
3956         (isearch-restore-invisible-extents): Ditto.
3957         (isearch-restore-extent): Ditto.
3958
3959         * isearch-mode.el (isearch-ring-advance-edit): Use FSF
3960         implementation.
3961         (isearch-ring-retreat-edit): Ditto.
3962         (isearch-forward): New argument NO-RECURSIVE-EDIT.
3963         (isearch-forward-regexp): New arguments NOT-REGEXP and
3964         NO-RECURSIVE-EDIT.
3965         (isearch-backward): New argument NO-RECURSIVE-EDIT.
3966         (isearch-backward-regexp): New arguments NOT-REGEXP and
3967         NO-RECURSIVE-EDIT.
3968         (isearch-mode): Return isearch-success.
3969         (isearch-update): Use unread-command-events instead of
3970         unread-command-event.
3971         (isearch-abort): If an invalid regexp is encountered, keep popping
3972         states.
3973         (isearch-*-char): Use FSF implementation.
3974         (isearch-whitespace-chars): Use the more robust FSF's
3975         implementation.
3976         (isearch-within-brackets): New variable.
3977         (isearch-mode): Initialize it.
3978         (isearch-edit-string): Bind it.
3979         (isearch-search-and-update): Set it.
3980         (isearch-push-state): Push it.
3981         (isearch-top-state): Pop it.
3982         (isearch-search): Set it.
3983         (isearch-printing-char): When called by isearch-whitespace-chars,
3984         handle M-SPC gracefully.
3985         (isearch-message-prefix): New argument ELLIPSIS.
3986         (isearch-message-suffix): Ditto.
3987         (isearch-message): Use the ELLIPSIS argument when calling
3988         isearch-message-prefix and isearch-message-suffix.
3989         (isearch-message-prefix): Distinguish between "wrapped" and
3990         "overwrapped" search, FWIW.
3991
3992 1999-09-01  Hrvoje Niksic  <hniksic@srce.hr>
3993
3994         * isearch-mode.el (isearch-edit-string): Use the head of the
3995         search ring instead of search-last-string and search-last-regexp.
3996         (search-highlight): Renamed from isearch-highlight.
3997         (isearch-exit): Use the new name.
3998         (isearch-highlight): Ditto.
3999         (isearch-dehighlight): Ditto.
4000         (isearch-update-ring): New function.
4001         (isearch-done): Call it.
4002         (isearch-done): New argument EDIT.
4003         (isearch-repeat): If search string is empty, look up at the car of
4004         the search ring; ignore the yank pointer.
4005         (isearch-abort): Call isearch-done with NOPUSH.
4006         (isearch-cancel): New function.
4007         (isearch-mode-map): Bind it to ESC ESC ESC.
4008
4009         * isearch-mode.el: Begin merge with FSF 20.4.
4010
4011 1999-09-01  Andy Piper  <andy@xemacs.org>
4012
4013         * x-select.el (x-get-clipboard): obsolete.
4014         (x-yank-clipboard-selection): obsolete
4015
4016         * select.el (disown-selection): need to be careful to disown the
4017         clipboard if we set it via selection.
4018         (get-clipboard): move from x-select.el
4019         (yank-clipboard-selection): ditto.
4020
4021 1999-09-01  Hrvoje Niksic  <hniksic@srce.hr>
4022
4023         * isearch-mode.el (isearch-exit): Bind isearch-highlight and
4024         isearch-highlight-all-matches to nil.
4025         (isearch-fixed-case): New variable.
4026         (isearch-mode): Initialize it.
4027         (isearch-edit-string): Save it.
4028         (isearch-toggle-case-fold): Set it.
4029         (isearch-fix-case): Make sure isearch-toggle-case-fold works --
4030         need to check isearch-fixed-case.
4031         (isearch-toggle-case-fold): Update highlighting of all matches
4032         before the pause.
4033         (isearch-edit-string):
4034
4035 1999-09-01  Hrvoje Niksic  <hniksic@srce.hr>
4036
4037         * isearch-mode.el (isearch-edit-string): Call isearch-message
4038         before reading the event so that the prompt is displayed properly.
4039         (isearch-message): Use isearch-nonincremental when calling
4040         isearch-message-prefix.
4041         (minibuffer-local-isearch-map): Bind up and down to do the same as
4042         M-p and M-n respectively.
4043         (isearch-done): New arg NOPUSH.
4044         (isearch-edit-string): Use it.
4045         (isearch-edit-string): Don't bind isearch-string.
4046         (isearch-ring-adjust): Edit string, *then* push state.
4047
4048 1999-08-31  Hrvoje Niksic  <hniksic@srce.hr>
4049
4050         * faces.el (isearch-secondary): Make isearch-secondary look
4051         different than default.
4052
4053 1999-08-30  Hrvoje Niksic  <hniksic@srce.hr>
4054
4055         * isearch-mode.el (isearch-yank): Use progn instead of the inner
4056         save-excursion.
4057         (isearch-dehighlight): Remove TOTALLY.  Simplify.
4058         (isearch-update): Call isearch-dehighlight without arguments.
4059         (isearch-done): Ditto.
4060
4061         * isearch-mode.el (isearch-fix-case): If the search string has no
4062         upper-case letters, allow the folding to be reenabled.
4063         Previously, once disabled, the folding would remain that way until
4064         the end of isearch.
4065         (isearch-top-state): Call isearch-fix-case.
4066
4067         * isearch-mode.el (isearch-yank): Use progn instead of the inner
4068         save-excursion.
4069         (isearch-dehighlight): Remove TOTALLY.  Simplify.
4070
4071 1999-08-31  Jan Vroonhof  <jan@xemacs.org>
4072
4073         * xpm-button.el:
4074         xbm-button.el: Need to exist in core because gui.el depends on
4075         them.
4076
4077 1999-08-31  Andy Piper  <andy@xemacs.org>
4078
4079         * gutter-items.el (buffers-tab-face): new customizable variable.
4080         (buffers-tab-default-buffer-line-length): new specifier for
4081         maximum viewable characters.
4082         (progress-stack): new variable for implementing widget-based
4083         progress messages.
4084         (progress-area-buffer): ditto.
4085         (progress-glyph-height): ditto.
4086         (progress-stop-callback): ditto.
4087         (progress-quit-function): new function.
4088         (progress-glyph): new variable.
4089         (progress-layout-glyph): ditto.
4090         (progress-displayed-p): new function, see message-displayed-p for
4091         details.
4092         (clear-progress): ditto.
4093         (remove-progress): ditto.
4094         (append-progress): ditto.
4095         (raw-append-progress): ditto.
4096         (display-progress): ditto.
4097         (current-progress): ditto.
4098         (current-progress-label): ditto.
4099         (progress): ditto.
4100         (lprogress): ditto.
4101
4102
4103 1999-08-29  Hrvoje Niksic  <hniksic@srce.hr>
4104
4105         * obsolete.el (isearch-yank-x-selection): Define obsolete alias.
4106
4107         * isearch-mode.el (isearch-yank-x-selection): Renamed to
4108         `isearch-yank-selection'.
4109         (isearch-mode-map): Use it.
4110         (isearch-yank-selection): Use `get-selection' instead of
4111         `get-x-selection'.
4112
4113 1999-08-29  Hrvoje Niksic  <hniksic@srce.hr>
4114
4115         * faces.el (isearch-secondary): Create face here.
4116
4117         * isearch-mode.el: Rewrote the "lazy highlighting" code not to use
4118         timers.
4119
4120 1999-08-27  Hrvoje Niksic  <hniksic@srce.hr>
4121
4122         * subr.el (buffer-string): More robust backward compatibility
4123         check, courtesy William Perry.
4124
4125 1999-08-26  Hrvoje Niksic  <hniksic@srce.hr>
4126
4127         * replace.el (perform-replace): Stop the search after the search
4128         limit has been reached.
4129
4130 1999-08-23  Andy Piper  <andy@xemacs.org>
4131
4132         * gutter-items.el (update-tab-in-gutter): call add-tab-to-gutter
4133         here if we don't have one.
4134
4135 1999-08-15  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
4136
4137         * ldap.el (ldap-coding-system): Default to nil until we get
4138         efficient UTF8 support
4139         (ldap-decode-string): Guard against `decode-coding-string' not
4140         being defined
4141         (ldap-encode-string): Guard against `encode-coding-string' not
4142         being defined
4143
4144 1999-08-23  Didier Verna  <didier@xemacs.org>
4145
4146         * rect.el: Cosmetics suggested by Dave Love <d.love@dl.ac.uk>.
4147         Some doc strings improvements, and add a star to the `interactive'
4148         calls.
4149
4150 1999-08-18  Stef Epardaud  <stef@lunatech.com>
4151
4152         * font-lock.el (java-font-lock-keywords-3): introduced new
4153         keywords and regexpes for javadoc syntax 1.2.
4154
4155 1999-08-17  Andy Piper  <andy@xemacs.org>
4156
4157         * gutter-items.el (buffers-tab-format-buffer-line-function): use
4158         format-buffers-tab-line.
4159         (buffers-tab-max-buffer-line-length): new variable.
4160         (format-buffers-tab-line): new function. truncate names if over
4161         buffers-tab-max-buffer-line-length.
4162
4163 1999-08-13  Charles G Waldman  <cgw@fnal.gov>
4164
4165         * cus-start.el: Customize the variable `bell-inhibit-time'.
4166
4167 1999-08-16  Andy Piper  <andy@xemacs.org>
4168
4169         * gutter-items.el (remove-buffer-from-gutter-tab): take a
4170         brute-force approach to deleting the last buffer.
4171         (buffers-tab-grouping-regexp): new customizable variable.
4172         (select-buffers-tab-buffers-by-mode): use it.
4173
4174 1999-08-13  Andy Piper  <andy@xemacs.org>
4175
4176         * gutter-items.el (remove-buffer-from-gutter-tab): fix *scratch*
4177         deletion problem.
4178
4179 1999-07-30  Didier Verna  <didier@xemacs.org>
4180
4181         * cus-edit.el (custom-save-variables): I said, use prin1 instead
4182         of princ to output symbols.
4183         (custom-save-face-internal): ditto.
4184         (custom-save-resets): ditto.
4185
4186 1999-08-09  Didier Verna  <didier@xemacs.org>
4187
4188         * gutter-items.el (select-buffers-tab-buffers-by-mode): use
4189         `regexp-quote' to protect the major mode name for use as a regular
4190         expression (c++ needs this for instance).
4191
4192 1999-08-08  Andy Piper  <andy@xemacs.org>
4193
4194         * gutter-items.el (select-buffers-tab-buffers-by-mode): beef up to
4195         cope with similar mode names.
4196
4197         * gutter-items.el (buffers-tab-selection-function): new selection
4198         function.
4199         (select-buffers-tab-buffers-by-mode): new function.
4200         (buffers-tab-items): use it if set to only display buffers in the
4201         tab in the current buffer's group..
4202         (update-tab-in-gutter): use new api.
4203         (remove-buffer-from-gutter-tab): ditto.
4204
4205         * gutter-items.el (buffers-tab-max-size): set custom selection
4206         default to 6.
4207         (buffers-tab-switch-to-buffer): just switch window if the window is visible.
4208         (add-tab-to-gutter): set face as default.
4209
4210 1999-07-07  Jan Vroonhof  <jan@xemacs.org>
4211
4212         * faces.el (frob-face-property): Merge the fall-back specifier
4213         with the target, not replace it.
4214
4215 1999-08-05  Andy Piper  <andy@xemacs.org>
4216
4217         * gutter-items.el (update-tab-in-gutter): add frame argument for
4218         buffer-items.
4219         (update-tab-in-gutter): use it.
4220
4221         * gutter-items.el (record-buffer-hook): set.
4222
4223         * buffer.el (switch-to-buffer): back out switch-to-buffer-hook
4224         change.
4225         (switch-to-buffer-hook) deleted.
4226
4227 1999-08-04  Andy Piper  <andy@xemacs.org>
4228
4229         * gutter-items.el (update-tab-in-gutter): make sure this will work
4230         as an argument to create-frame-hook.
4231
4232 1999-07-30  Hrvoje Niksic  <hniksic@srce.hr>
4233
4234         * isearch-mode.el: Modified Bob and Darryl's code to use itimers
4235         instead of timer emulation.
4236
4237 1999-07-30  Darryl Okahata  <darrylo@sonic.net>
4238
4239         * isearch-mode.el: Merged Bob Glickstein's <bobg@zanshin.com> GNU
4240         Emacs isearch enhancements.
4241
4242 1999-07-28  Andy Piper  <andy@xemacs.org>
4243
4244         * gutter-items.el (add-tab-to-gutter): put in specifier specs for
4245         all devices that support tab controls.
4246         (remove-buffer-from-gutter-tab): new function. to be used as a
4247         value for kill-buffer-hook.
4248
4249 1999-07-21  Sean MacLennan  <seanm@storm.ca>
4250
4251         * auto-show.el (auto-show-truncationp): changed to match
4252         `window_translation_on'
4253
4254 1999-07-30  XEmacs Build Bot <builds@cvs.xemacs.org>
4255
4256         * XEmacs 21.2.19 is released
4257
4258 1999-07-28  SL Baur  <steve@miho>
4259
4260         * code-files.el (insert-file-contents): Fix docstring.
4261         revert previous change.
4262
4263 1999-07-26  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
4264
4265         * fill.el (fill-region-as-paragraph): Change re-break-point to
4266         contain word-across-newline plus one character so that filling
4267         Japanese and Chinese works as desired.
4268         * simple.el (do-auto-fill): Ditto.
4269
4270 1999-07-26  SL Baur  <steve@miho>
4271
4272         * mule/japanese.el ("Japanese"): Do not specify a default input
4273         method.
4274         Suggested by MORIOKA Tomohiko  <tomo@etl.go.jp>
4275
4276 1999-07-23  Jan Vroonhof  <vroonhof@math.ethz.ch>
4277
4278         * custom.el ((not (fboundp 'defun*))): Insert autoload crap to be
4279         able to use cl-macs macro in early lisp.
4280
4281 1999-07-23  Jan Vroonhof  <jan@xemacs.org>
4282
4283         * custom.el:
4284         * cus-face.el:
4285         * cus-edit.el:
4286                 Massive custom Theme API changes.
4287
4288 1999-07-22  MORIOKA Tomohiko  <tomo@etl.go.jp>
4289
4290         * code-files.el (insert-file-contents): Regard
4291         coding-system-magic-cookie if `coding-system-for-read' is nil.
4292
4293 1999-07-22  MORIOKA Tomohiko  <tomo@etl.go.jp>
4294
4295         * mule/thai-xtis.el: Add coding: local variable, to avoid
4296         bootstrapping problem with C locale.
4297
4298 1999-07-22  Andy Piper  <andy@xemacs.org>
4299
4300         * dumped-lisp.el (preloaded-file-list): guard against putting
4301         gutter-items in a less than functional XEmacs.
4302         * gutter-items.el: put call to `add-tab-to-gutter' back in.
4303
4304 1999-07-18  Bob Weiner  <weiner@beopen.com>
4305
4306         * fill.el (fill-context-prefix): Fixed bug that prevented the
4307         setting of an adaptive fill prefix when the `dont-skip-first' was
4308         t.
4309
4310 1999-07-22  SL Baur  <steve@miho>
4311
4312         * gutter-items.el: remove unguarded call to `add-tab-to-gutter'.
4313
4314 1999-06-25  Karl M. Hegbloom  <karlheg@debian.org>
4315
4316         * files.el (interpreter-mode-alist): add `make', `guile', and
4317         `emacs' entries. (#!/usr/bin/make -f ought to send a file into
4318         makefile-mode, guile is a scheme, and someday XEmacs will be
4319         modular enough to use as an efficient scripting tool.)
4320
4321 1999-07-06  MORIOKA Tomohiko  <tomo@etl.go.jp>
4322
4323         * mule/mule-cmds.el (reset-language-environment): Regard
4324         coding-category `utf-8' and `ucs-4' if they are available.
4325
4326 1999-07-06  MORIOKA Tomohiko  <tomo@etl.go.jp>
4327
4328         * mule/mule-cmds.el (set-default-coding-systems): Fix DOC-string.
4329         (prefer-coding-system): Fix DOC-string.
4330
4331         * mule/mule-cmds.el (coding-system-change-eol-conversion): Fix
4332         DOC-string too.
4333
4334         * mule/mule-cmds.el (mule-keymap): Change keymap name from MULE to
4335         Mule.
4336         (coding-system-change-eol-conversion): Fix DOC-string.
4337
4338 1999-06-30  MORIOKA Tomohiko  <tomo@etl.go.jp>
4339
4340         * mule/mule-cmds.el (mule-keymap): Use `describe-coding-system'
4341         instead of `list-coding-system'.
4342
4343 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4344
4345         * menubar-items.el (default-menubar): `select-input-method' was
4346         renamed to `set-input-method'.
4347
4348         * mule/mule-cmds.el (set-language-info-alist): Fix setting for
4349         "Set Language Environment" menu.
4350
4351         * mule/mule-cmds.el (set-language-info-alist): Fix setting for
4352         "Describe Language Support" menu.
4353
4354 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4355
4356         * mule/chinese.el ("Chinese-GB"): Rename
4357         `chinese-gb-environment-setup-function' to
4358         `setup-chinese-gb-environment-internal'.
4359
4360 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4361
4362         * mule/korean.el: Use `define-coding-system-alias' instead of
4363         `copy-coding-system'.
4364
4365 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4366
4367         * mule/mule-cmds.el (set-language-environment-coding-systems):
4368         Treat duplicated coding-categories.
4369
4370 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4371
4372         * mule/japanese.el: Use `define-coding-system-alias' instead of
4373         `copy-coding-system'.
4374
4375 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4376
4377         * mule/vietnamese.el: Specify `iso-8-1' as a category of
4378         coding-system `viscii'.
4379
4380 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4381
4382         * mule/cyrillic.el:
4383         - Specify `iso-8-1' as a category of coding-system `koi8-r'.
4384         (cyrillic-alternativnyj-decode-table): New variable.
4385         (cyrillic-alternativnyj-encode-table): New variable.
4386         - Specify `iso-8-1' as a category of coding-system
4387           `alternativnyj'.
4388         - Abolish general Cyrillic environment.
4389
4390 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4391
4392         * mule/chinese.el:
4393         - Use `define-coding-system-alias' instead of `copy-coding-system'.
4394         - Register `chinese-gb-environment-setup-function' as a
4395           `setup-function' of "Chinese-GB" environment.
4396
4397 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4398
4399         * mule/mule-cmds.el (set-language-info-alist): Allow dummy
4400         optional argument `parents'.
4401
4402         * mule/thai-xtis.el: Specify `tis-620' as `tutorial-coding-system'
4403         property for Thai-XTIS.
4404
4405         * mule/mule-help.el (help-with-tutorial): Use property
4406         `tutorial-coding-system' of language-info as a coding-system to
4407         read tutorial file.
4408
4409 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4410
4411         * mule/thai-xtis.el: Don't setup `setup-function' and
4412         `exit-function'.
4413
4414         * mule/mule-cmds.el (set-language-environment-coding-systems): Use
4415         `set-coding-category-system' to set up coding-system for
4416         coding-category.
4417
4418         * mule/mule-cmds.el (prefer-coding-system): Use
4419         `set-coding-category-system' to set up coding-system for
4420         coding-category.
4421
4422 1999-06-29  MORIOKA Tomohiko  <tomo@etl.go.jp>
4423
4424         * mule/thai-xtis.el: Specify TUTORIAL.th as the tutorial file for
4425         Thai-XTIS environment.
4426
4427         * mule/mule-cmds.el (prefer-coding-system): Use
4428         `find-coding-system' instead of `coding-system-p'.
4429
4430 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4431
4432         * mule/mule-cmds.el (set-language-environment-coding-systems):
4433         Modify eol-type for XEmacs.
4434
4435         * mule/thai-xtis.el: Delete unused local variable `category'.
4436
4437         * mule/mule-cmds.el (coding-system-change-eol-conversion): New
4438         function.
4439         (prefer-coding-system): Don't call
4440         `update-coding-systems-internal'; use function
4441         `coding-category-list' instead of variable `coding-category-list';
4442         use `set-coding-priority-list' instead of `set-coding-priority';
4443         modify `eol-type' for XEmacs.
4444
4445         * mule/mule-misc.el (string-width): Use `charset-width' instead of
4446         `charset-columns'.
4447         (char-width): Likewise.
4448
4449 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4450
4451         * mule/thai-xtis.el: Specify `iso-8-1' as coding-category of
4452         `tis-620'.
4453
4454         * mule/mule-cmds.el (set-language-environment-coding-systems): Use
4455         `set-coding-priority-list' instead of `set-coding-priority'; don't
4456         call `update-coding-systems-internal'.
4457
4458         * mule/mule-misc.el (coding-system-get): New function.
4459         (coding-system-put): New function.
4460         (coding-system-category): New function.
4461
4462 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4463
4464         * dumped-lisp.el (preloaded-file-list): Load "thai-xtis-chars"
4465         when Mule is running; load "mule/thai-xtis" instead of "thai-xtis"
4466         to avoid conflict with leim/quail/thai-xtis.
4467
4468         * mule/thai-xtis.el: Split definition of the charset `thai-xtis'
4469         to thai-xtis-chars.el.
4470
4471         * mule/thai-xtis-chars.el: New file (split from
4472         mule/thai-xtis.el).
4473
4474 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4475
4476         * mule/thai-xtis.el:
4477         - Change category for the charset `thai-xtis' to `?x' from `?T'.
4478         - Add syntax entries.
4479         - Put `preferred-coding-system' of the charset `thai-xtis' to
4480           `tis-620'.
4481
4482 1999-06-28  TAKAHASHI Naoto  <ntakahas@etl.go.jp>
4483
4484         * mule/thai-xtis.el: ccl-decode-thai-xtis and subroutines
4485         rewritten to use write-multibyte-character.
4486
4487 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4488
4489         mule/mule-cmds.el (view-hello-file): Use `iso-2022-7bit' instead
4490         of `iso-2022-7'.
4491         (prefer-coding-system): Synced up with Emacs 20.3.11 but not
4492         ported yet.
4493         (read-input-method-name): Treat optional argument `default'.
4494
4495 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4496
4497         * mule/mule-cmds.el (set-language-info): Don't set up menus at
4498         all.
4499         (set-language-info-alist): Set up menus here.
4500
4501 1999-06-28  MORIOKA Tomohiko  <tomo@etl.go.jp>
4502
4503         * minibuf.el (completing-read): Add new optional argument
4504         `default'.
4505         (read-coding-system): Add new optional argument
4506         `default-coding-system'.
4507
4508 1999-06-03  Ken'ichi Handa  <handa@gnu.org>
4509
4510         * mule/vietnamese.el (ccl-encode-vscii): Typo fixed
4511         (viet-viscii-...->viet-vscii...).
4512
4513 1999-05-13  Ken'ichi Handa  <handa@gnu.org>
4514
4515         * mule/mule-cmds.el: Change MULE to Mule in docstrings
4516         and menus.
4517
4518 1999-04-12  Richard M. Stallman  <rms@gnu.org>
4519
4520         * mule/mule-cmds.el (input-method-function): Add permanent-local
4521         property.
4522
4523 1999-03-30  Dave Love  <fx@gnu.org>
4524
4525         * mule/mule-cmds.el (current-language-environment): Doc fix.
4526
4527 1999-02-06  Richard Stallman  <rms@gnu.org>
4528
4529         * mule/european.el (setup-slovenian-environment): New function.
4530         ("Slovenian"): New language environment.
4531
4532 1999-01-27  Dave Love  <fx@gnu.org>
4533
4534         * mule/mule-cmds.el (current-language-environment): Provide :link,
4535         :type (choices) and appropriate :get.
4536
4537 1999-01-14  Kenichi Handa  <handa@etl.go.jp>
4538
4539         * mule/mule-cmds.el (describe-language-environment): Don't alter
4540         input-method-alist.
4541
4542 1999-01-06  Eli Zaretskii  <eliz@gnu.org>
4543
4544         * mule/mule-cmds.el (prefer-coding-system): Call
4545         set-coding-priority, so that the internal array of priorities is
4546         also updated.
4547
4548 1998-12-30  Eli Zaretskii  <eliz@mescaline.gnu.org>
4549
4550         * mule/mule-cmds.el (prefer-coding-system): If the argument
4551         requires specific EOL conversion type, make the default coding
4552         systems use that.
4553
4554 1998-12-17  Eli Zaretskii  <eliz@mescaline.gnu.org>
4555
4556         * mule/mule-cmds.el (set-language-environment): Pass the default
4557         eol-type to set-language-environment-coding-systems.
4558         (set-default-coding-systems): Copy the eol-type property for the
4559         new default values of {buffer-file,process}-coding-system from the
4560         old defaults.
4561         (set-language-environment-coding-systems): Accept an optional
4562         argument EOL-TYPE, and set the eol-type property of the default
4563         coding systems accordingly.
4564
4565 1998-10-26  Kenichi Handa <handa@etl.go.jp>
4566
4567         * mule/chinese.el (pre-write-encode-hz): Cancel previous change,
4568         use generate-new-buffer instead of get-buffer-create.
4569
4570 1998-10-21  Kenichi Handa  <handa@etl.go.jp>
4571
4572         * mule/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
4573
4574 1998-10-16  Markus Rost  <rost@delysid.gnu.org>
4575
4576         * mule/mule-cmds.el (default-input-method): Fix custom type.
4577
4578 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
4579
4580         * mule/mule-cmds.el (setup-specified-language-environment):
4581         Add apropos-inhibit property.
4582         (describe-specified-language-support): Likewise.
4583
4584 1998-09-06  Bill Richter  <richter@math.nwu.edu>
4585
4586         * mule/mule-cmds.el: Doc fixes.
4587
4588 1998-09-02  Kenichi Handa  <handa@etl.go.jp>
4589
4590         * mule/mule-cmds.el (register-input-method): Doc-string
4591         modified.
4592
4593 1998-09-01  Dave Love  <fx@gnu.org>
4594
4595         * mule/mule-cmds.el (current-language-environment): Fix
4596         setter function.
4597
4598 1998-08-31  Paul Eggert  <eggert@twinsun.com>
4599
4600         * mule/chinese.el, mule/cyrillic.el, mule/ethiopic.el,
4601         mule/european.el, mule/hebrew.el, mule/japanese.el,
4602         mule/korean.el, mule/vietnamese.el: Add coding: local variable, to
4603         avoid bootstrapping problem if you need to recompile all the Lisp
4604         files using interpreted code.
4605
4606 1998-08-26  Kenichi Handa  <handa@etl.go.jp>
4607
4608         * mule/european.el ("Latin-1"): Modify `documentation' key value.
4609         ("Latin-2"): Likewise.
4610
4611 1998-08-18  Per Starback  <starback@update.uu.se>
4612
4613         * mule/european.el (setup-latin2-environment): Fix typo.
4614
4615 1998-08-18  Kenichi Handa  <handa@etl.go.jp>
4616
4617         * mule/european.el: Give proper value of `input-method' key to all
4618         lang. env.
4619
4620         * mule/mule-cmds.el (activate-input-method): Handle the case that
4621         the arg INPUT-METHOD is nil correctly.
4622         (read-multilingual-string): Activate the specified input method
4623         before calling read-string.  Afterward, activate the original
4624         input method.
4625
4626 1998-08-15  Kenichi HANDA  <handa@etl.go.jp>
4627
4628         * mule/mule-cmds.el (language-info-alist): Doc-string modified.
4629         (set-language-info-alist): Fix typo in doc-string.
4630
4631         * mule/hebrew.el ("Hebrew"): Delete describe-function key.
4632
4633 1998-08-09  Kenichi HANDA  <handa@etl.go.jp>
4634
4635         * mule/mule-cmds.el (language-info-alist): Doc-string modified.
4636         (reset-language-environment): New function for the job that
4637         setup-english-environment used to do.
4638         (set-language-environment): Do more setups according to the info
4639         in language-info-alist.
4640         (read-language-name): Handle the case that the arg KEY is nil.
4641         (describe-language-environment): Handle input-method property.
4642
4643         * mule/: All files under this directory, which related with
4644         specific languages (such as mule/european.el, mule/greek.el,
4645         mule/hebrew.el, mule/misc-lang.el), modified as below.
4646         (setup-XXX-environment): Just call set-language-environment.  If
4647         they used to do some other jobs than what done by
4648         set-language-environment, those jobs are done in
4649         setup-XXX-environment-internal now.
4650         ("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
4651         the value to setup-XXX-environment-internal.  Add properties
4652         input-method and features.
4653
4654         * mule/english.el (setup-english-environment): Just call
4655         reset-language-environment.
4656
4657         * mule/european.el (setup-8-bit-environment): Function deleted.
4658
4659 1998-08-08  Richard Stallman  <rms@psilocin.ai.mit.edu>
4660
4661         * mule/mule-cmds.el (input-method-exit-on-first-char)
4662         (input-method-use-echo-area): Doc fixes.
4663
4664 1998-08-06  Kenichi Handa  <handa@etl.go.jp>
4665
4666         * mule/mule-cmds.el (input-method-exit-on-first-char): New
4667         variable.
4668         (input-method-use-echo-area): New variable.
4669
4670 1998-08-01  Kenichi HANDA  <handa@etl.go.jp>
4671
4672         * mule/mule-cmds.el (language-info-alist): Doc-string modified.
4673
4674 1998-07-30  Ken'ichi Handa  <handa@delysid.gnu.org>
4675
4676         * mule/mule-cmds.el (activate-input-method): Update mode line.
4677         (inactivate-input-method): Likewise.
4678
4679 1998-07-19  Kenichi Handa  <handa@etl.go.jp>
4680
4681         * mule/mule-cmds.el (read-multilingual-string): Don't activate an
4682         input method in the current buffer, but just bind
4683         current-input-method.
4684
4685 1998-07-08  Kenichi Handa  <handa@etl.go.jp>
4686
4687         * mule/hebrew.el ("Hebrew"): Add coding-priority.
4688
4689         * mule/misc-lang.el ("IPA"): Add coding-priority and
4690         coding-system.
4691
4692 1998-06-26  Ken'ichi Handa  <handa@melange.gnu.org>
4693
4694         * mule/greek.el: Add coding-priority.
4695
4696 1998-05-23  Richard Stallman  <rms@psilocin.ai.mit.edu>
4697
4698         * mule/mule-cmds.el (register-input-method): Rename arg ENV to
4699         LANG-ENV.
4700
4701 1998-05-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
4702
4703         * mule/mule-cmds.el (register-input-method): Fix previous change.
4704         (setup-specified-language-environment): Doc fix.
4705
4706 1998-05-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
4707
4708         * mule/mule-cmds.el: Several doc fixes.
4709         (get-language-info, set-language-info): Rename argument.
4710         (set-language-info-alist): Likewise.
4711         (register-input-method): Rename argument.
4712         (activate-input-method): If INPUT-METHOD is nil, deactivate.
4713
4714 1998-05-04  Kenichi Handa  <handa@etl.go.jp>
4715
4716         * mule/mule-cmds.el (toggle-input-method): Use a more appropriate
4717         default value while reading an input method.
4718
4719 1998-05-01  Kenichi Handa  <handa@etl.go.jp>
4720
4721         * mule/mule-cmds.el (universal-coding-system-argument):
4722         Use buffer-file-coding-system as default.
4723
4724 1998-04-14  Andreas Schwab  <schwab@mescaline.gnu.org>
4725
4726         * mule/korean.el ("Korean"): Doc fix.
4727
4728 1998-04-11  Kenichi Handa  <handa@etl.go.jp>
4729
4730         * mule/mule-cmds.el (describe-language-environment): Print the
4731         languge environment at the head.
4732
4733 1998-04-06  Kenichi Handa  <handa@etl.go.jp>
4734
4735         * mule/japanese.el: Set exit-function to exit-japanese-environment
4736         for Japanese environment.
4737
4738 1998-03-20  Richard Stallman  <rms@psilocin.gnu.org>
4739
4740         * mule/mule-cmds.el (set-language-environment): Doc fix.
4741         (current-language-environment): Use defcustom.
4742         (default-input-method): Specify :type.
4743
4744 1998-03-02  Kenichi Handa  <handa@etl.go.jp>
4745
4746         * mule/mule-cmds.el (set-default-coding-systems): Doc-string
4747         modified.
4748         (prefer-coding-system): Doc-string modified.
4749
4750 1998-01-21  Kenichi Handa  <handa@etl.go.jp>
4751
4752         * mule/mule-cmds.el (set-language-info): Doc-string
4753         describes `coding-priority' KEY.
4754         (set-language-environment-coding-systems): New function.
4755         (select-safe-coding-system): New function.
4756         (set-language-info): New optional args DESCRIBE-MAP and SETUP-MAP.
4757         (set-language-info-alist): New optionla arg PARENTS.  Call
4758         set-language-info with appropriate DESCRIBE-MAP and SETUP-MAP args.
4759         (set-language-environment-coding-systems): New function.
4760
4761         * mule/chinese.el: Remove setting up of
4762         describe-chinese-environment-map and
4763         setup-chinese-environment-map.  Exclude them in args of calls to
4764         set-language-info-alist.  Register coding-priority key in
4765         language-info-alist.
4766
4767         * mule/cyrillic.el: Remove setting up of
4768         describe-cyrillic-environment-map and
4769         setup-cyrillic-environment-map.  Exclude them in args of calls to
4770         set-language-info-alist.  Register coding-priority key in
4771         language-info-alist.
4772
4773         * mule/english.el: Register coding-priority key in
4774         language-info-alist.
4775
4776         * mule/ethiopic.el: Register coding-priority key in
4777         language-info-alist.
4778
4779         * mule/european.el: Remove setting up of
4780         describe-european-environment-map and
4781         setup-european-environment-map.  Exclude them in args of calls to
4782         set-language-info-alist.  Register coding-priority key in
4783         language-info-alist.  Add "German" language env.
4784         (setup-8-bit-environment): Delete CODING-SYSTEM arg.
4785         (setup-german-environment): New function.
4786
4787         * mule/greek.el (setup-greek-environment): For Greek lang. env.,
4788         change default input method to "greek-postfix".
4789
4790         * mule/japanese.el, mule/korean.el, mule/vietnamese.el: Register
4791         coding-priority key in
4792
4793 1997-12-19  Stephen Eglen  <stephen@cns.ed.ac.uk>
4794
4795         * mule/mule-cmds.el (set-language-info): Doc fix.
4796         (input-method-inactivate-hook): Doc fix.
4797
4798 1997-11-20  Karl Heuer  <kwzh@gnu.org>
4799
4800         * mule/mule-cmds.el (set-input-method): Renamed from
4801         select-input-method.
4802
4803 1997-11-07  Kenichi Handa  <handa@etl.go.jp>
4804
4805         * mule/mule-cmds.el (set-language-environment): Run
4806         exit-language-environment-hook before calling `exit-function'
4807         which is specified for the language environment.
4808
4809 1997-10-23  Kenichi Handa  <handa@etl.go.jp>
4810
4811         * mule/mule-cmds.el (set-default-coding-systems): Doc-string
4812         modified.
4813         (prefer-coding-system): Likewise.
4814         (describe-language-environment): Print aliases of each coding
4815         system.
4816         (set-language-environment-hook): New variable.
4817         (exit-language-environment-hook): New variable.
4818         (set-language-environment): Call these hooks.  Before setting a
4819         new language environment, exit from the
4820         current-language-environment if necessary.
4821         (input-method-verbose-flag): The value can be nil, t,
4822         complex-only, or default.
4823         (input-method-highlight-flag): Doc-string augmented.
4824         (activate-input-method): Check if we can run the registered
4825         function to activate an input method.
4826
4827         * mule/korean.el: Set exit-function for language environment
4828         "Korean" to exit-korean-environment.
4829         (setup-korean-environment): Moved to korea-util.el.
4830
4831 1997-10-21  Kenichi Handa  <handa@etl.go.jp>
4832
4833         * mule/mule-cmds.el (read-multilingual-string): Use
4834         current-input-method prior to default-input-method.  Don't bind
4835         current-input-method by `let', instead, activate the specified
4836         input method in the current buffer temporarily.
4837
4838 1997-10-19  John F. Whitehead  <jfw@cisco.com>
4839
4840         * mule/mule-cmds.el (describe-language-environment): Fix prompt.
4841
4842 1997-10-21  Kenichi Handa  <handa@etl.go.jp>
4843
4844         * mule/chinese.el (post-read-decode-hz): Return the result of
4845         decode-hz-region.
4846         (pre-write-encode-hz): Do not change the value of
4847         last-coding-system.
4848
4849 1998-09-06  Bill Richter  <richter@math.nwu.edu>
4850
4851         * mule/mule-ccl.el: Doc fixes.
4852
4853 1998-04-20  Kenichi Handa  <handa@etl.go.jp>
4854
4855         * mule/mule-ccl.el (declare-ccl-program): New optional arg VECTOR.
4856         (check-ccl-program): New macro.
4857
4858 1998-01-21  Kenichi Handa  <handa@etl.go.jp>
4859
4860         * mule/mule-ccl.el: Comment about CCL syntax modified.
4861         (ccl-command-table): Add read-multibyte-character and
4862         write-multibyte-character.
4863         (ccl-code-table): Add ex-cmd.
4864         (ccl-extended-code-table): New variable.
4865         (ccl-embed-extended-command): New function.
4866         (ccl-compile-read-multibyte-character,
4867         ccl-compile-write-multibyte-character) New functions.
4868         (ccl-dump-ex-cmd, ccl-dump-read-multibyte-character,
4869         ccl-dump-write-multibyte-character): New functions.
4870
4871 1999-07-22  SL Baur  <steve@miho>
4872
4873         * config.el (config-value-file): config.values is installed into
4874         doc-directory.
4875         From Karl M. Hegbloom  <karlheg@cathcart.sysc.pdx.edu>
4876
4877 1999-07-19  Didier Verna  <didier@xemacs.org>
4878
4879         * rect.el: all functions rewritten, except when noted. Below is a
4880         list of interface changes.
4881         (apply-on-rectangle): new function. Obsoletes
4882         `operate-on-rectangle'. All functions that used to call this
4883         function now call the new one.
4884         (kill-rectangle): added optional prefix arg to fill lines.
4885         (delete-rectangle): ditto.
4886         (delete-extract-rectangle): ditto.
4887         (open-rectangle): ditto.
4888         (clear-rectangle): ditto.
4889         (delete-rectangle-line): added third arg FILL.
4890         (delete-extract-rectangle-line): ditto.
4891         (open-rectangle-line): ditto.
4892         (clear-rectangle-line): ditto.
4893
4894 1999-07-18  Andy Piper  <andy@xemacs.org>
4895
4896         * menubar-items.el (default-menubar): add gutter options.
4897
4898         * gutter-items.el: new file.
4899         (gutter): new group for custom.
4900         (gutter-visible-p): new variable.
4901         (default-gutter-position): ditto.
4902         (buffers-tab): new group for the buffers tab.
4903         (gutter-buffers-tab): widget to put in the gutter.
4904         (buffers-tab-max-size): max number of tabs.
4905         (buffers-tab-switch-to-buffer-function): function to call when a
4906         tab is pressed.
4907         (buffers-tab-omit-function): filter buffers with this function.
4908         (buffers-tab-format-buffer-line-function): format buffer names for
4909         inclusion in tabs.
4910         (buffers-tab-switch-to-buffer): like switch-to-buffer but without
4911         the record.
4912         (build-buffers-tab-internal): build a list of tab items.
4913         (buffers-tab-items): ditto.
4914         (add-tab-to-gutter): put a tab in the gutter area.
4915         (update-tab-in-gutter): reset the buffers in the tab.
4916
4917         * dumped-lisp.el (preloaded-file-list): dump gutter-items.
4918
4919         * buffer.el (switch-to-buffer): run switch-to-buffer-hooks.
4920         (switch-to-buffer-hooks): new hook.
4921
4922         * toolbar.el (default-toolbar-position): fix typo.
4923
4924 1999-07-16  Andy Piper  <andy@xemacs.org>
4925
4926         * gui.el (make-dialog-frame): turn off gutters for dialogs.
4927
4928 1999-07-15  Didier Verna  <didier@xemacs.org>
4929
4930         * cus-edit.el (custom-prompt-variable): optional third arg makes
4931         prompt for a comment string.
4932         (customize-set-value): optional prefix makes this function handle
4933         variable comments.
4934         (customize-set-variable): ditto.
4935         (customize-save-variable): ditto.
4936         (customize-customized): handle custom comments.
4937         (customize-save-customized): ditto.
4938         (custom-variable-state-set): ditto.
4939         (custom-face-state-set): ditto.
4940         (customize-saved): ditto.
4941         (custom-variable-set): ditto.
4942         (custom-face-set): ditto.
4943         (custom-variable-save): ditto.
4944         (custom-face-save): ditto.
4945         (custom-variable-reset-saved): ditto.
4946         (custom-face-reset-saved): ditto.
4947         (custom-variable-reset-standard): ditto.
4948         (custom-face-reset-standard): ditto.
4949         (custom-comment-face): new face.
4950         (custom-comment-tag-face): ditto.
4951         (custom-comment): new widget.
4952         (custom-comment-create): new function.
4953         (custom-comment-delete): ditto.
4954         (custom-comment-value-set): ditto.
4955         (custom-comment-show): ditto.
4956         (custom-comment-invisible-p): ditto.
4957         (custom-variable-value-create): create a comment field widget.
4958         (custom-face-value-create): ditto.
4959         (custom-variable-menu): new entry for adding a custom comment.
4960         (custom-face-menu): ditto.
4961         (custom-save-variables): possibly save custom comments.
4962         (custom-save-faces): ditto.
4963
4964         * cus-face.el (custom-set-faces): the arguments can now have a
4965         custom comment as fourth argument.
4966
4967         * custom.el (custom-set-variables): the arguments can now have a
4968         custom comment as fifth element.
4969
4970 1999-07-13  XEmacs Build Bot <builds@cvs.xemacs.org>
4971
4972         * XEmacs 21.2.18 is released
4973
4974 1999-07-13  SL Baur  <steve@miho>
4975
4976         * lib-complete.el (read-library-name): Revert previous change.
4977         (read-library): Ditto.
4978
4979 1999-06-24  Karl M. Hegbloom  <karlheg@debian.org>
4980
4981         * packages.el (packages-package-list): Capitalize docstring.
4982
4983         * packages.el (packages-find-package-library-path): Use #'nconc
4984         rather than #'append to reduce consing -- #'mapcar uses Flist,
4985         which returns a freshly consed list.  #'append would create yet
4986         another fresh list, using Fmake_list in concat.
4987
4988         * packages.el (package-provide): Use setq with remassq like it
4989         says in its docstring.
4990
4991 1999-07-06  SL Baur  <steve@miho.m17n.org>
4992
4993         * lib-complete.el (progn-with-message): Fix typo.
4994
4995 1999-07-06  SL Baur  <steve@miho.m17n.org>
4996
4997         * mule/mule-misc.el (char-octet): Make function match docstring.
4998         From Katsumi Yamaoka <yamaoka@jpl.org>
4999
5000 1999-06-15  Karl M. Hegbloom  <karlheg@debian.org>
5001
5002         * wid-edit.el (widget-documentation): corrected spelling error.
5003
5004 1999-06-23  Jonathan Marten <jonathan.marten@uk.sun.com>
5005
5006         * x-win-sun.el (x-win-init-sun): Don't rebind Find and Sh-find
5007         keys if already bound
5008
5009 1999-07-06  SL Baur  <steve@miho.m17n.org>
5010
5011         * lib-complete.el (progn-with-message): Revert previous changes.
5012
5013 1999-06-24  Bob Weiner  <weiner@beopen.com>
5014
5015         * lib-complete.el (find-library):
5016         (find-library-other-window):
5017         (find-library-other-frame): Completely rewrote
5018         so that these functions actually work when called non-interactively.
5019         Also made them handle LIBRARY arguments which end with .el or .elc.
5020
5021 1999-06-24  Bob Weiner  <weiner@beopen.com>
5022
5023         * simple.el (indent-new-comment-line): Locally bound
5024         `block-comment-start' to `comstart' or else when this is called
5025         from do-auto-fill, e.g. in Lisp mode, it will insert any non-nil
5026         `block-comment-start' value, ignoring any existing spacing after a
5027         comment prefix in the previous line and producing ugly comments.
5028
5029 1999-06-23  Bob Weiner  <weiner@beopen.com>
5030
5031         * list-mode.el (mouse-choose-completion):
5032         (choose-completion):
5033         (completion-switch-to-minibuffer): Added.
5034         ([Tab]): [Tab] previously switched to the minibuffer
5035         but since [space] does that and since most applications in the
5036         world use [Tab] to select the next item in a list, do that in the
5037         *Completions* buffer too.  This will cause the least confusion
5038         among the largest population of users.  -- Bob Weiner, BeOpen.com,
5039         06/23/1999.
5040
5041 1999-06-22  Bob Weiner  <weiner@beopen.com>
5042
5043         * help.el (help-buffer-name): Added support for a null value
5044         of `help-buffer-prefix-string' since some buffers require no
5045         prefix.
5046
5047 1999-06-20  Bob Weiner  <weiner@beopen.com>
5048
5049         * list-mode.el (completion-list-mode-quit): Added and bound to {q}
5050         in the completion-list-mode-map to bury the completions buffer
5051         even when the minibuffer is no longer active.
5052
5053 1999-06-20  Bob Weiner  <weiner@beopen.com>
5054
5055         * list-mode.el (list-mode): It is visually disconcerting to have
5056         the text cursor disappear within list buffers, especially when
5057         moving from window to window, so leave it visible.
5058
5059 1999-07-01  SL Baur  <steve@miho.m17n.org>
5060
5061         * menubar-items.el (default-menubar): Conditionalize the bug
5062         report menu item (which may not be possible in this XEmacs).
5063         Reported by: Ken'ichi Handa <handa@etl.go.jp>
5064
5065 1999-06-30  SL Baur  <steve@miho.m17n.org>
5066
5067         * subr.el (with-current-buffer): DOC string fix.
5068         Suggested by Bob Weiner <weiner@altrasoft.com>
5069
5070 1999-06-25  Charles G Waldman <cgw@fnal.gov>
5071
5072         * cus-face.el (custom-face-italic): insert missing args
5073
5074 1999-06-24  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
5075
5076         * packages.el (package-locations): Changed default early package
5077         hierarchies to ~/.xemacs/mule-packages and
5078         ~/.xemacs/xemacs-packages.
5079
5080 1999-06-23  SL Baur  <steve@miho.m17n.org>
5081
5082         * mule/mule-category.el (Top Level): ASCII is also latin-1.
5083
5084 1999-06-15  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
5085
5086         * packages.el (package-locations): Changed default early package
5087         hierarchy to ~/.xemacs/packages.
5088         (package-locations): Removed `packages' as a possible name for a
5089         late package hierarchy.
5090
5091 1999-06-20  MORIOKA Tomohiko  <tomo@etl.go.jp>
5092
5093         * mule/mule-category.el (word-combining-categories): Set up new
5094         variable.
5095         (word-separating-categories): Likewise.
5096
5097 1999-06-22  XEmacs Build Bot <builds@cvs.xemacs.org>
5098
5099         * XEmacs 21.2.17 is released
5100
5101 1999-06-17  Robert Pluim  <rpluim@bigfoot.com>
5102
5103         * font-menu.el (font-menu-set-font): allow for nil specification
5104         of font size.
5105
5106 1999-06-16  MORIOKA Tomohiko  <tomo@etl.go.jp>
5107
5108         * mule/thai-xtis.el: Specify `columns' of the charset `thai-xtis'
5109         is 1.
5110
5111 1999-06-12  MORIOKA Tomohiko  <tomo@etl.go.jp>
5112
5113         * mule/cyrillic.el (cyrillic-koi8-r-decode-table): Use NBSP of ISO
5114         8859-5 instead of ISO 8859-1.
5115
5116 1999-06-15  SL Baur  <steve@steve1.m17n.org>
5117
5118         * mule/vietnamese.el (viet-vscii-encode-table): Use split-char.
5119         (viet-viscii-encode-table): Ditto.
5120
5121         * mule/mule-misc.el: Delete split-char & split-char-or-char-int.
5122         Make obsolete definition of char-octet.
5123
5124 1999-06-14  SL Baur  <steve@steve1.m17n.org>
5125
5126         * subr.el: Move no-Mule make-char ...
5127         * help-nomule.el (make-char): To here.
5128         (string-width): Make Mule compatibility alias.
5129
5130 1999-06-15  Andy Piper  <andy@xemacs.org>
5131
5132         * select.el (get-selection-no-error): really make there be no-error.
5133         (get-selection): revert to original.
5134
5135 1999-06-11  Andy Piper  <andy@xemacs.org>
5136
5137         * select.el (selection-sets-clipboard): renamed.
5138         (own-selection): use it.
5139
5140 1999-06-11  XEmacs Build Bot <builds@cvs.xemacs.org>
5141
5142         * XEmacs 21.2.16 is released
5143
5144 1999-06-09  MORIOKA Tomohiko  <tomo@etl.go.jp>
5145
5146         * mule/cyrillic.el (cyrillic-koi8-r-decode-table): Set 32 for
5147         missing characters to avoid crash.
5148
5149 1999-06-09  Jan Vroonhof  <vroonhof@math.ethz.ch>
5150
5151         * coding.el (set-terminal-coding-system): Only set the console
5152         coding system on the selected console if it is a tty.
5153
5154 1999-06-10  Jan Vroonhof  <vroonhof@math.ethz.ch>
5155
5156         * cus-face.el:
5157         * cus-edit.el:
5158         * faces.el:
5159         (custom):
5160         (face-spec-set):
5161         * faces.el (frob-face-property):
5162         * font-menu.el (font-menu-set-font):
5163                   Actually apply changes from 1999-03-17
5164
5165 1999-06-10  Andy Piper  <andy@xemacs.org>
5166
5167         * select.el (get-selection): abstract out non error-signalling
5168         part.
5169         (get-selection-no-error): get-selection without signalling an
5170         error.
5171         (selection-is-clipboard-p): new variable. controls whether the
5172         selection sets the clipboard.
5173         (own-selection): use it.
5174
5175         * mouse.el (insert-selection): fallback to clipboard after trying
5176         primary selection and cutbuffer.
5177
5178 1999-06-05  Andy Piper  <andy@xemacs.org>
5179
5180         * x-select.el (xselect-kill-buffer-hook-1): use generalised
5181         selection functions.
5182
5183 1999-06-04  MORIOKA Tomohiko  <tomo@etl.go.jp>
5184
5185         * code-files.el (buffer-file-coding-system): Use `raw-text' as
5186         default value.
5187         (load): Use `raw-text' instead of `no-conversion'.
5188         (insert-file-contents): Likewise.
5189
5190         * bytecomp.el (byte-compile-insert-header): Use `raw-text' instead
5191         of `no-conversion'.
5192
5193 1999-06-03  MORIOKA Tomohiko  <tomo@etl.go.jp>
5194
5195         * coding.el: Don't copy `no-conversion' to `raw-text'.
5196
5197 1999-06-07  Hrvoje Niksic  <hniksic@srce.hr>
5198
5199         * subr.el (make-char): Define it if Mule is not around.
5200
5201 1999-06-07  SL Baur  <steve@steve1.m17n.org>
5202
5203         * mule/mule-help.el: Add trailing newline.  Use mule keyword.
5204
5205         * x-select.el (x-disown-selection-internal): Restore symbol as an
5206         obsolete alias.
5207         (xselect-kill-buffer-hook-1): Use disown-selection-internal.
5208
5209 1999-06-04  XEmacs Build Bot <builds@cvs.xemacs.org>
5210
5211         * XEmacs 21.2.15 is released
5212
5213 1999-06-02  Oscar Figueiredo  <oscar@xemacs.org>
5214
5215         * subr.el (split-string): Avoid infinite looping
5216
5217 1999-05-30  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
5218
5219         * ldap.el (ldap-ignore-attribute-codings): New variable
5220         (ldap-default-attribute-decoder): New variable
5221         (ldap-coding-system): New variable
5222         (ldap-attribute-syntax-encoders): New variable
5223         (ldap-attribute-syntax-decoders): New variable
5224         (ldap-attribute-syntaxes-alist): New variable
5225         (ldap-encode-boolean): New function
5226         (ldap-decode-boolean): New function
5227         (ldap-encode-country-string): New function
5228         (ldap-decode-string): New function
5229         (ldap-decode-address): New function
5230         (ldap-encode-address): New function
5231         (ldap-decode-attribute): New function
5232         (ldap-search): Use some of these
5233
5234 1999-05-25  Jan Vroonhof  <jan@xemacs.org>
5235
5236         * version.el (emacs-version): Make the patch level/beta come
5237         before the XEmacs qualifier so that it gets into (funcall
5238         emacs-version) and thus in the bug reports.
5239         (emacs-version>=): Support patch levels.
5240
5241 1999-06-03  SL Baur  <steve@xemacs.org>
5242
5243         * version.el: implement x.y.z version number
5244         From Jan Vroonhof <vroonhof@math.ethz.ch>
5245
5246 1999-05-27  Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
5247
5248         * mule/mule-cmds.el (read-input-method-name): set input-method properly.
5249
5250 1999-05-22  Vin Shelton <acs@xemacs.org>
5251
5252         * startup.el: Document -private and break out non-standard X options.
5253
5254 1999-05-26  SL Baur  <steve@gneiss.etl.go.jp>
5255
5256         * mule/mule-charset.el (charset-after): New function.
5257         (charset-direction): Synch with Mule, update docstring.
5258         (get-charset-property): New function.
5259         (put-charset-property): New function.
5260         (charset-plist): New function.
5261
5262         * mule/mule-charset.el (compose-region):
5263         (decompose-region): remove;  these functions (which don't work
5264         since we don't do composite characters) have been moved to
5265         mule-util.el.
5266         (toplevel): follow coding standards
5267
5268 1999-05-26  SL Baur  <steve@gneiss.etl.go.jp>
5269
5270         * dumped-lisp.el (preloaded-file-list): mule-files.el does not
5271         exist any more.
5272
5273         * code-files.el: Fix commentary to follow coding standards.  Move
5274         the single line left in mule-files.el to here.
5275
5276         * mule/mule-files.el: delete.
5277
5278 1999-05-24  SL Baur  <steve@gneiss.etl.go.jp>
5279
5280         * info.el (Info-scroll-prev): Use event functions instead of the
5281         old emacs 19 interface.
5282
5283 1999-06-02  Andy Piper  <andy@xemacs.org>
5284
5285         * x-font-menu.el (x-font-menu-load-font):
5286         font-menu-registry-encoding -> x-font-menu-registry-encoding type.
5287
5288 1999-05-31  Andy Piper  <andy@xemacs.org>
5289
5290         * font-menu.el (font-menu-ignore-scaled-fonts): move to font-menu
5291         group.
5292         (font-menu-this-frame-only-p): ditto.
5293         (font-menu-max-items): reinstate, from Jan Vroonhof
5294         <vroonhof@math.ethz.ch>
5295         (font-menu-submenu-name-format): ditto.
5296         (font-menu-split-long-menu): ditto, for use by the family
5297         constructor.
5298         (font-menu-family-constructor): use it.
5299
5300 1999-05-30  Andy Piper  <andy@xemacs.org>
5301
5302         * msw-faces.el (mswindows-font-regexp): new font matching regexp
5303         for use by the font menu.
5304
5305         * msw-font-menu.el: new file implementing mswindows specific
5306         font-menu behaviour.
5307         (mswindows-font-menu-registry-encoding): new function mirroring x version.
5308         (mswindows-font-menu-junk-families): ditto.
5309         (hack-font-truename): ditto.
5310         (mswindows-font-regexp-ascii): ditto.
5311         (mswindows-reset-device-font-menus): ditto.
5312         (mswindows-font-menu-font-data): ditto.
5313         (mswindows-font-menu-load-font): ditto.
5314
5315         * x-font-menu.el (x-reset-device-font-menus): made device specific.
5316         (x-font-menu-font-data): ditto.
5317         (x-font-menu-load-font): ditto.
5318
5319         * font-menu.el: new file implementing generic font menu behaviour.
5320         (font-menu-ignore-scaled-fonts): copied from x-font-menu.el and
5321         made device independent.
5322         (font-menu-this-frame-only-p): ditto.
5323         (font-menu-preferred-resolution): ditto.
5324         (font-menu-size-scaling): new variable used to determine whether
5325         sizes are in points or tenths of a point.
5326         (vassoc): moved from x-font-menu.el.
5327         (device-fonts-cache): ditto.
5328         (device-fonts-cache): ditto.
5329         (flush-device-fonts-cache): ditto.
5330         (reset-device-font-menus): copied from x-font-menu.el and made
5331         device independent. Most functionality deferred to
5332         device-dependent versions.
5333         (font-menu-family-constructor): copied from x-font-menu.el and
5334         made device independent.
5335         (font-menu-size-constructor): ditto.
5336         (font-menu-weight-constructor): ditto.
5337         (font-menu-set-font): ditto.
5338         (font-menu-change-face): ditto.
5339         (font-menu-load-font): new device method.
5340         (font-menu-font-data): ditto.
5341
5342         * x-font-menu.el: The above functions deleted.
5343
5344 1999-05-26  Andy Piper  <andy@xemacs.org>
5345
5346         * update-elc.el:
5347         * make-docfile.el:
5348         * loadup.el: rehash expand-file-name usage to not use default-directory.
5349
5350 1999-05-21  Andy Piper  <andy@xemacs.org>
5351
5352         * x-select.el (x-select-convert-to-text):
5353         (x-selected-text-type):
5354         (x-get-selection):
5355         (xselect-convert-to-string):
5356         (xselect-convert-to-compound-text):
5357         (xselect-convert-to-length):
5358         (xselect-convert-to-targets):
5359         (xselect-convert-to-delete):
5360         (xselect-convert-to-filename):
5361         (xselect-convert-to-charpos):
5362         (xselect-convert-to-lineno):
5363         (xselect-convert-to-colno):
5364         (xselect-convert-to-sourceloc):
5365         (xselect-convert-to-os):
5366         (xselect-convert-to-host):
5367         (xselect-convert-to-user):
5368         (xselect-convert-to-class):
5369         (xselect-convert-to-name):
5370         (xselect-convert-to-integer):
5371         (xselect-convert-to-atom):
5372         (xselect-convert-to-identity): functions renamed from x-* and
5373         moved to select.el.
5374         (x-get-secondary-selection): use rename get-selection.
5375         (x-get-clipboard): ditto.
5376         (x-own-selection): moved to select.el.
5377         (x-valid-simple-selection-p): ditto.
5378         (x-dehilight-selection): ditto.
5379         (x-own-clipboard): ditto.
5380         (x-disown-selection): ditto.
5381
5382         * x-mouse.el (x-yank-function): moved to mouse.el.
5383         (x-insert-selection): ditto.
5384         (x-set-point-and-move-selection): use renamed function.
5385
5386         * select.el (selected-text-type): moved and renamed from
5387         x-select.el.
5388         (selection-owner-p): moved to C.
5389         (selection-exists-p): ditto.
5390         (get-cutbuffer): new device method.
5391         (get-selection): generalised and moved from x-select.el.
5392         (own-selection): moved x-own-selection functionality into here.
5393         (dehilight-selection): renamed and moved from x-select.el.
5394         (own-clipboard): functionality moved from x-select.el using new
5395         generic C builtins.
5396         (disown-clipboard): ditto.
5397         (select-convert-to-text):
5398         (select-convert-to-string):
5399         (select-convert-to-compound-text):
5400         (select-convert-to-length):
5401         (select-convert-to-targets):
5402         (select-convert-to-delete):
5403         (select-convert-to-filename):
5404         (select-convert-to-charpos):
5405         (select-convert-to-lineno):
5406         (select-convert-to-colno):
5407         (select-convert-to-sourceloc):
5408         (select-convert-to-os):
5409         (select-convert-to-host):
5410         (select-convert-to-user):
5411         (select-convert-to-class):
5412         (select-convert-to-name):
5413         (select-convert-to-integer):
5414         (select-convert-to-atom):
5415         (select-convert-to-identity): new functions renamed from x-* and
5416         moved from x-select.el.
5417
5418         * mouse.el (mouse-consolidated-yank): subsume x-yank-function
5419         into here and use as the default window-system mouse yank.
5420         (insert-selection): generalised and moved from x-mouse.el.
5421         (own-clipboard): moved to C.
5422
5423         * msw-select.el (mswindows-selection-owned-p): deleted.
5424         (mswindows-own-selection): generalised and moved to select.el.
5425         (mswindows-disown-selection): generalised and moved to C.
5426         (mswindows-selection-owner-p): ditto.
5427
5428 1999-05-14  XEmacs Build Bot <builds@cvs.xemacs.org>
5429
5430         * XEmacs 21.2.14 is released
5431
5432 1999-05-13  SL Baur  <steve@gneiss.etl.go.jp>
5433
5434         * about.el: update contact info for jason and slb.
5435
5436 1999-05-13  SL Baur  <steve@gneiss.etl.go.jp>
5437
5438         * mule/european.el (setup-romanian-environment): Add Romanian
5439         support from Emacs/Mule romanian.el.
5440
5441 1999-03-17  Jan Vroonhof  <vroonhof@math.ethz.ch>
5442
5443         * cus-face.el: Label all custom changes with the 'custom' tag.
5444
5445         * cus-edit.el: idem ditto.
5446
5447         * faces.el: Added suport for adding device tags to various functions.
5448         (custom): New device tag.
5449         (face-spec-set): Call reset face with tags argument. No longer do
5450         x-init-global-faces hack.
5451
5452         * faces.el (frob-face-property): Use an anonymous specifier to map
5453         frob-face-property-1 over.
5454
5455         * x-font-menu.el (font-menu-set-font): Always specify all
5456         properties to custom.
5457
5458 1999-05-12  SL Baur  <steve@gneiss.etl.go.jp>
5459
5460         * mule/european.el (setup-czech-environment): Add czech support.
5461         From David Sauer <davids@orfinet.cz>
5462
5463 1999-03-15  SL Baur  <steve@xemacs.org>
5464
5465         * check-features.el: Turn hard errors into warnings.
5466
5467 1999-03-21  SL Baur  <steve@xemacs.org>
5468
5469         * simple.el (delete-key-deletes-forward): As per discussion on
5470         xemacs-beta, default to t.
5471
5472 1999-05-11  Hrvoje Niksic  <hniksic@srce.hr>
5473
5474         * loadup.el: Define Installation-string before loading anything.
5475
5476 1999-05-06  Gunnar Evermann  <ge204@eng.cam.ac.uk>
5477
5478         * files.el (auto-mode-alist): fix typo in regex for .bash_* files
5479         From Anders Stenman <stenman@isy.liu.se>
5480
5481 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
5482
5483         * wid-edit.el (widget-glyph-find): Ditto.
5484
5485         * packages.el (locate-library): Ditto.
5486
5487         * loadup.el (really-early-error-handler): Ditto.
5488
5489         * lib-complete.el (read-library): Ditto.
5490
5491         * faces.el (set-face-stipple): Ditto.
5492
5493         * code-files.el (load): Use new calling style of locate-file.
5494
5495 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
5496
5497         * packages.el (packages-unbytecompiled-lisp): Installation.el is
5498         dead.
5499
5500 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
5501
5502         * dumped-lisp.el (preloaded-file-list): Don't load
5503         Installation.el.
5504
5505         * loadup.el (Installation-string): Define it here.
5506
5507 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
5508
5509         * dumped-lisp.el (preloaded-file-list): Revert previous change --
5510         Installation.el needs to be loaded before `dump-paths', otherwise
5511         the dumping process won't find it.
5512
5513 1999-03-13  Adrian Aichner  <adrian@xemacs.org>
5514
5515         * dumped-lisp.el (preloaded-file-list): Load Installation.el after
5516         subr so that we can use `replace-in-string' in Installation.el to
5517         get rid of C-m chars under the native Windows build.
5518
5519 1999-04-29  Andy Piper  <andy@xemacs.org>
5520
5521         * make-docfile.el: canonicalize file and directory names.
5522
5523         * device.el (call-device-method): new function for calling device
5524         specific methods.
5525         (define-device-method): new function for defining device methods.
5526         (define-device-method*): ditto.
5527
5528 1999-04-27  Hrvoje Niksic  <hniksic@srce.hr>
5529
5530         * subr.el (buffer-string): Support new FSFmacs 20.4 stuff.
5531
5532 1999-04-08  MORIOKA Tomohiko  <tomo@etl.go.jp>
5533
5534         * mule/cyrillic.el (cyrillic-koi8-r-decode-table): New variable.
5535         (cyrillic-koi8-r-encode-table): Likewise.
5536         (ccl-decode-koi8): Use `cyrillic-koi8-r-decode-table'.
5537         (ccl-encode-koi8): Use `cyrillic-koi8-r-encode-table'.
5538
5539         * mule/mule-misc.el (split-char-or-char-int): New function [moved
5540         from vietnamese.el].
5541
5542         * mule/vietnamese.el: Move function `split-char-or-char-int' to
5543         mule/mule-misc.el.
5544
5545 1999-04-08  MORIOKA Tomohiko  <tomo@etl.go.jp>
5546
5547         * mule/thai-xtis.el:
5548         - Change font registry name from "Thai94x94-0" to "xtis-0".
5549         - Change mnemonic of coding-system `tis-620' to "TIS620".
5550
5551 1999-04-06  MORIOKA Tomohiko  <tomo@etl.go.jp>
5552
5553         * mule/ethiopic.el: fixed.
5554
5555 1999-03-30  MORIOKA Tomohiko  <tomo@etl.go.jp>
5556
5557         * dumped-lisp.el: Add ethiopic, thai-xtis and vietnamese.
5558
5559         * mule/thai-xtis.el: New file.
5560
5561         * mule/vietnamese.el: New file.
5562
5563         * mule/ethiopic.el: New file.
5564
5565 1999-04-22  Hrvoje Niksic  <hniksic@srce.hr>
5566
5567         * bytecomp.el (byte-compile-close-variables): Leave
5568         debug-issue-ebola-notices alone.
5569
5570 1999-04-11  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
5571
5572         * ldap.el (ldap-host-parameters-alist): Make `Search Base' appear
5573         at the top of the buffer since it is the most important thing to
5574         customize
5575         (ldap-get-host-parameter): New defun
5576         (ldap-search): Add a new parameter `withdn' to retrieve the
5577         distinguished names of entries
5578
5579 1999-04-22  Kai Haberzettl  <khaberz@synnet.de>
5580
5581         * startup.el (splash-frame-body): Date and spelling fixes.
5582
5583 1999-03-16  Colin Rafferty  <colin@xemacs.org>
5584
5585         * view-less.el (toggle-truncate-lines): add autoload tag
5586
5587 1999-04-19  Hrvoje Niksic  <hniksic@srce.hr>
5588
5589         * format.el (format-alist): Disable image stuff.
5590
5591 1999-04-17  Hrvoje Niksic  <hniksic@srce.hr>
5592
5593         * wid-edit.el (widget-glyph-find): Search by directories, then by
5594         suffixes rather than the other way around.
5595         (widget-image-conversion): Renamed to
5596         `widget-image-file-name-suffixes'.
5597
5598 1999-04-16  Olivier Galibert  <galibert@pobox.com>
5599
5600         * mule/mule-charset.el: Made old functions obsolete, remove the
5601         unspeakably evil (and inexistant in fsf's) charset-leading-byte.
5602         (charset-iso-graphic-plane): Rename from charset-graphic.
5603         (charset-iso-final-char): Rename from charset-final.
5604         (charset-width): Rename from charset-columns.
5605         (charset-bytes): Added from fsf compatibility, returns always 1.
5606
5607         * mule/mule-misc.el: Move charset-doc-string alias to
5608         mule-charset.el
5609
5610 1999-04-14  Colin Rafferty  <colin@xemacs.org>
5611
5612         * x-faces.el (x-make-font-bold-italic): honor
5613         *try-oblique-before-italic-fonts*
5614
5615 1999-04-14  Hrvoje Niksic  <hniksic@srce.hr>
5616
5617         * cl-extra.el (coerce): Coerce numbers to characters correctly.
5618
5619 1998-12-02  Hrvoje Niksic  <hniksic@srce.hr>
5620
5621         * x-faces.el (try-oblique-before-italic-fonts): Use the right
5622         name.
5623
5624 1999-04-14  Dave Gillesipe  <daveg@synaptics.com>
5625
5626         * cl-extra.el (equalp): Would bug out for lists.
5627
5628 1999-03-12  Charles G Waldman  <cgw@fnal.gov>
5629
5630         * about.el (about-hackers):  Change cgw's email address
5631
5632 1999-03-12  XEmacs Build Bot <builds@cvs.xemacs.org>
5633
5634         * XEmacs 21.2.13 is released
5635
5636 1999-03-12  SL Baur  <steve@xemacs.org>
5637
5638         * simple.el (delete-key-deletes-forward): Revert to previous
5639         behavior.
5640
5641 1999-01-18  Didier Verna  <didier@xemacs.org>
5642
5643         * menubar-items.el (xemacs-splash-buffer): handle the case of
5644         multiple elements in the splash buffer body.
5645
5646         * startup.el (splash-frame-timeout): new constant: interval
5647         between splash buffer elements.
5648         (command-line-1): handle splash buffer with multiple elements (use
5649         a timeout).
5650         (splash-frame-body): Originally `startup-splash-frame-body'.
5651         Rewrote a cleaner and more readable version. This can now be array,
5652         in which case each element is displayed in turn in the splash buffer.
5653         (splash-frame-static-body): new constant. Persistent information
5654         across all splash buffer elements (preserves the possibility to give
5655         it in different languages.
5656         (circulate-splash-frame-elements): new function. Used as a timeout
5657         to circulate through all splash frame elements and display them in
5658         sequence.
5659         (display-splash-frame): originally `startup-splash-frame'. Handle
5660         the case of multiple elements in the splash buffer body. Now
5661         returns a timeout id if multiple elements to display, or nil.
5662
5663 1999-02-19  Jan Vroonhof  <vroonhof@math.ethz.ch>
5664
5665         * x-faces.el (x-init-global-faces): Add default tag to specifiers,
5666         so they can be overridden by x-init-face-from-resources.
5667         Additionally specify the font name also with an x tag.
5668
5669 1999-03-08  Andy Piper  <andy@xemacs.org>
5670
5671         * package-get.el (package-get-base): autoload.
5672
5673         * menubar-items.el (default-menubar): add update menu item. Fix
5674         custom menu to only be activated when package-base is available.
5675
5676         * package-get.el (package-get-custom): don't load
5677         package-get-custom as it is auto-generated. Fix group definition.
5678
5679 1999-03-05  Didier Verna  <didier@xemacs.org>
5680
5681         * cus-dep.el (Custom-make-dependencies): use `prin1-to-string'
5682         instead of `symbol-name' (Thanks Kyle).
5683
5684         * cus-edit.el (custom-save-variables): use `prin1' instead of
5685         princ to write symbols.
5686
5687 1999-03-05  XEmacs Build Bot <builds@cvs.xemacs.org>
5688
5689         * XEmacs 21.2.12 is released
5690
5691 1999-03-05  SL Baur  <steve@xemacs.org>
5692
5693         * menubar-items.el (default-menubar): Add kfm browsing support.
5694         From Neal Becker <nbecker@fred.net>
5695
5696 1999-03-03  Steven Baur  <steve@gneiss.etl.go.jp>
5697
5698         * font-lock.el (font-lock-revert-cleanup): Null out to avoid repeated
5699         calls to font-lock during buffer reversion.
5700
5701 1999-02-12  Didier Verna  <didier@xemacs.org>
5702
5703         * info.el (Info-build-node-completions): unconditionally widen the
5704         tag table buffer.
5705
5706 1999-02-19  Paul Stodghill  <stodghil@cs.cornell.edu>
5707
5708         * x-faces.el (x-init-face-from-resources):
5709         Only set fonts in the 'x locale.
5710
5711 1999-03-04  Adrian Aichner  <adrian@xemacs.org>
5712
5713         * package-ui.el (pui-install-selected-packages): Don't throw on
5714         `package-admin-delete-binary-package' returning nil since it's
5715         normal.  Reindent function.
5716         (pui-add-required-packages): Handle case where packages selected
5717         for installation have never been installed.
5718
5719 1999-03-03  Martin Buchholz  <martin@xemacs.org>
5720
5721         * menubar-items.el (default-menubar):
5722         Implement the ``Mule->Set coding system of process'' menu item.
5723
5724 1999-02-18  Martin Buchholz  <martin@xemacs.org>
5725
5726         * files.el (auto-mode-alist): Use c-mode for *.i pre-processed cpp
5727         files
5728         - Change some `if's to `when's
5729
5730 1999-03-01  XEmacs Build Bot <builds@cvs.xemacs.org>
5731
5732         * XEmacs 21.2.11 is released
5733
5734 1999-02-22  Jan Vroonhof  <vroonhof@math.ethz.ch>
5735
5736         * userlock.el (ask-user-about-supersession-threat-dbox): Guard
5737         against window close (Fix Bug #460).
5738         (ask-user-about-lock-dbox): Idem.
5739
5740 1999-02-25  SL Baur  <steve@xemacs.org>
5741
5742         * mule/mule-charset.el (charset-leading-byte): New function.
5743         From Kazuyuki IENAGA <ienaga@jsys.co.jp>
5744
5745 1999-02-12  Andy Piper  <andy@xemacs.org>
5746
5747         * about.el (xemacs-hackers): change andy's email address.
5748         (about-url-alist): change andy's web page address.
5749         (about-xemacs): add piper.
5750
5751 1999-02-16  SL Baur  <steve@xemacs.org>
5752
5753         * dumped-lisp.el (preloaded-file-list): Core mule files moved out
5754         of mule-base into lisp/mule.
5755
5756 1999-02-16  SL Baur  <steve@xemacs.org>
5757
5758         * mule/arabic.el:
5759         mule/canna-leim.el:
5760         mule/chinese.el:
5761         mule/cyrillic.el:
5762         mule/english.el:
5763         mule/european.el:
5764         mule/greek.el:
5765         mule/hebrew.el:
5766         mule/japanese.el:
5767         mule/kinsoku.el:
5768         mule/korean.el:
5769         mule/misc-lang.el:
5770         mule/mule-category.el:
5771         mule/mule-ccl.el:
5772         mule/mule-charset.el:
5773         mule/mule-cmds.el:
5774         mule/mule-coding.el:
5775         mule/mule-files.el:
5776         mule/mule-help.el:
5777         mule/mule-init.el:
5778         mule/mule-misc.el:
5779         mule/mule-tty-init.el:
5780         mule/mule-x-init.el:
5781         mule/viet-chars.el:  Remerge from mule-base.
5782
5783         * dumped-lisp.el (preloaded-file-list): Core mule files moved out
5784         of mule-base into lisp/mule.
5785
5786 1999-02-10  Adrian Aichner  <adrian@xemacs.org>
5787
5788         * process.el (exec-to-string): Use `shell-command-switch' in place
5789         of hard-wired "-c" (for WindowsNT).
5790
5791 1999-02-08  Charles G Waldman  <cgw@pgt.com>
5792
5793         * menubar-items.el (default-menubar):  Remove obsolete
5794         "Gopher" item
5795
5796 1999-02-06  Jan Vroonhof  <vroonhof@math.ethz.ch>
5797
5798         * package-admin.el (package-admin-get-install-dir): First fall
5799         back to the location of xemacs-base for non-mule packages.
5800
5801 1999-02-15  Martin Buchholz  <martin@xemacs.org>
5802
5803         * paths.el:
5804         - improved automounter tmp directory support.
5805         - support 4 (!) empirically discovered automounter conventions
5806
5807 1999-02-12  SL Baur  <steve@xemacs.org>
5808
5809         * etags.el (pop-tag-mark): autoload to match key binding.
5810
5811 1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
5812
5813         * XEmacs 21.2.10 is released
5814
5815 1999-02-02  Jan Vroonhof  <vroonhof@math.ethz.ch>
5816
5817         * package-get.el (package-get-remote-filename): Don't bug out for
5818         a local file name in the search entry.
5819
5820 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
5821
5822         * XEmacs 21.2.9 is released
5823
5824 1999-01-19  Didier Verna  <didier@xemacs.org>
5825
5826         * replace.el (replace-search-function): new variable containing a
5827         function to perform a search-forward.
5828         (replace-re-search-function): new variable containing a function
5829         to perform a re-search-forward.
5830         (perform-replace): use them.
5831
5832 1999-01-25  Didier Verna  <didier@xemacs.org>
5833
5834         * select.el (selection-owner-p): use the name `XEmacs'.
5835         (cut-copy-clear-internal): ditto.
5836
5837 1999-01-18  Andy Piper  <andy@xemacs.org>
5838
5839         * about.el (about-url-alist): Update my entry.
5840         (xemacs-hackers): Ditto.
5841
5842 1999-01-14  Adrian Aichner  <adrian@xemacs.org>
5843
5844         * buffer.el (switch-to-buffer): Fixing documentation.
5845         * minibuf.el (minibuffer-completion-table): ditto.
5846         * cl-macs.el (return-from): ditto.
5847
5848 1999-01-04  Didier Verna  <didier@xemacs.org>
5849
5850         * replace.el (delete-non-matching-lines): temporarily disable
5851         case-folding when called interactively with a regexp containing
5852         uppercase characters.
5853         (delete-matching-lines): ditto.
5854         (count-matches): ditto.
5855         (list-matching-lines): ditto.
5856
5857 1999-01-07  Colin Rafferty  <colin@xemacs.org>
5858
5859         * window.el (shrink-window-if-larger-than-buffer): Clean up.  Only
5860         abort if current window is split horizontally, not if others are
5861         split.  Got rid of unnecessary minibuffer checking.  Also, add
5862         some comments (it's still complex).
5863
5864 1999-01-12  Robert Pluim  <rpluim@BayNetworks.com>
5865
5866         * package-get.el: changed address for doc.ic.ac.uk to
5867         sunsite.doc.ic.ac.uk
5868
5869 1999-01-09  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
5870
5871         * ldap.el (toplevel): Remove requires so that the file compiles
5872         with a non LDAP-enabled XEmacs binary.  Provide `ldap'.
5873
5874 1999-01-10  J. Kean Johnston  <jkj@sco.com>
5875
5876         * dump-paths.el: Calculate module-directory and set
5877         module-load-path to the load path for modules.
5878
5879         * loadup.el: Get bootstrap value of module-load-path from the
5880         environment variable EMACSBOOTSTRAPMODULEPATH.
5881         - Display the module load path if we're debugging paths.
5882
5883         * setup-paths.el: Added function paths-find-site-module-directory.
5884         - Added function paths-find-module-directory.
5885         - Added function paths-construct-module-load-path.  Uses new
5886         environment variable EMACSMODULEPATH.
5887
5888 1998-12-30  Martin Buchholz  <martin@xemacs.org>
5889
5890         * font.el (font-default-object-for-device):
5891         Oops! This `or' can't be replaced by `unless'.
5892         Fixed inability to run w3, among other things.
5893
5894 1998-12-17  Charles G. Waldman <cgw@pgt.com>
5895
5896         * package-admin.el: Change initialization of
5897           package-admin-install-function dependent on system type.
5898           Change package-admin-install-function-mswindows to use
5899           "minitar".
5900
5901 1998-12-23  Hrvoje Niksic  <hniksic@srce.hr>
5902
5903         * mouse.el (default-mouse-motion-handler): Disable help echo while
5904         in the minibuffer.
5905
5906 1998-12-28  Martin Buchholz <martin@xemacs.org>
5907
5908         * XEmacs 21.2.8 is released.
5909
5910 1998-12-24  Martin Buchholz <martin@xemacs.org>
5911
5912         * XEmacs 21.2.7 is released.
5913
5914 1998-12-07  Jan Vroonhof  <vroonhof@math.ethz.ch>
5915
5916         * package-ui.el (pui-list-packages): Set truncate-lines.
5917
5918         * package-get.el (package-get-download-menu): Use
5919         `package-ui-add-site'. Add a a toggle to indicate it is in the list.
5920
5921         * package-ui.el (pui-help): Ditch in favor of `describe-mode'
5922         (pui-help-string): idem.
5923         (list-packages-mode): New major mode.
5924         (pui-list-packages): Use 'list-packages-mode' in the package buffer.
5925         (pui-install-selected-packages): Add suport for removing packages.
5926         (pui-toggle-package-delete-key): New function.
5927         (pui-popup-context-sensitive): New kludge.
5928         (pui-list-packages): Add warning when `package-get-remote' is nil.
5929         (package-ui-add-site): New function.
5930
5931 1998-12-01  Didier Verna  <didier@xemacs.org>
5932
5933         * hyper-apropos.el (hyper-where-is): added the missing autoload.
5934
5935 1998-11-29  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
5936
5937         * ldap.el: Custom-ized
5938         (toplevel): Do not provide `ldap' which is provided by C level
5939         LDAP code
5940         (ldap-search): Docstring and stylistic fixes as suggested by Hrvoje
5941
5942 1998-12-05  Hrvoje Niksic  <hniksic@srce.hr>
5943
5944         * isearch-mode.el (isearch-mode): Really fix keymap lossage.
5945
5946 1998-12-17  Andy Piper  <andy@xemacs.org>
5947
5948         * sound.el (sound-load-list): name changed from sound-load-alist.
5949         (sound-extension-list): name changed from sound-ext-list.
5950         (load-default-sounds): use new names.
5951         (load-sound-file): use new names.
5952
5953 1998-12-16  Andy Piper  <andy@xemacs.org>
5954
5955         * XEmacs 21.2.6 is released
5956
5957 1998-11-30  Hrvoje Niksic  <hniksic@srce.hr>
5958
5959         * cus-dep.el (Custom-make-dependencies): Be smarter about trapping
5960         errors.
5961
5962 1998-12-04  Hrvoje Niksic  <hniksic@srce.hr>
5963
5964         * wid-edit.el (widget-echo-this-extent): Set
5965         help-echo-owns-message to t.
5966
5967 1998-11-30  Greg Klanderman  <greg@alphatech.com>
5968
5969         * package-get.el (package-get-download-menu): use toggles for
5970           each site in the download site menu.
5971
5972 1998-12-01  Jan Vroonhof <vroonhof@math.ethz.ch>
5973
5974         * package-get.el (package-get): If we cannot find a package
5975           because package-get-remote is not set, give a more helpful
5976           error message.
5977
5978 1998-11-30  Greg Klanderman  <greg@alphatech.com>
5979
5980         * package-get.el (package-get-remote-filename): use an EFS path
5981         with user anonymous if no user is specified.
5982
5983 1998-12-10  Jan Vroonhof  <vroonhof@math.ethz.ch>
5984
5985         * faces.el (face-spec-set): Re-init fallfacks for default after
5986         calling reset-face on the default face.
5987
5988 1998-12-10  Jan Vroonhof  <vroonhof@math.ethz.ch>
5989
5990         * package-admin.el (package-admin-default-install-function):
5991         Behave as advertised.  Make sure the pkg-dir is proper for
5992         default-directory.
5993         (package-admin-add-binary-package): Make sure the pkg-dir is
5994         proper for default-directory.
5995         (package-admin-install-function-mswindows): Make sure the pkg-dir
5996         is proper for default-directory.
5997
5998 1998-12-05  XEmacs Build Bot <builds@cvs.xemacs.org>
5999
6000         * XEmacs 21.2.5 is released
6001
6002 1998-12-05  SL Baur  <steve@altair.xemacs.org>
6003
6004         * files.el (binary-file-regexps): regexp-opt is not available at
6005         bytecompile time.
6006
6007 1998-11-30  Martin Buchholz  <martin@xemacs.org>
6008
6009         * x-win-xfree86.el:
6010         * x-win-sun.el (x-win-init-sun):
6011         * x-win-sun.el:
6012         * x-mouse.el (mouse-track-and-copy-to-cutbuffer):
6013         * x-iso8859-1.el:
6014         * x-init.el (init-post-x-win):
6015         * x-init.el (init-pre-x-win):
6016         * x-init.el (x-initialize-compose):
6017         * x-init.el:
6018         * x-compose.el:
6019         * winnt.el:
6020         * widget.el:
6021         * wid-edit.el (widget-glyph-click):
6022         * wid-edit.el (widget-glyph-find):
6023         * wid-edit.el (widget-type):
6024         * view-less.el (view-buffer-other-window):
6025         * very-early-lisp.el:
6026         * version.el:
6027         * toolbar.el:
6028         * toolbar-items.el:
6029         * term/sun.el (suntool-map):
6030         * term/sun-mouse.el:
6031         * term/internal.el:
6032         * syntax.el (modify-syntax-entry):
6033         * symbol-syntax.el:
6034         * subr.el:
6035         * startup.el (lock-directory):
6036         * simple.el (set-comment-column):
6037         * simple.el (backward-delete-char-untabify):
6038         * shadow.el (find-emacs-lisp-shadows):
6039         * shadow.el:
6040         * setup-paths.el (paths-construct-info-path):
6041         * select.el (cut-copy-clear-internal):
6042         * process.el (call-process-region):
6043         * process.el (start-process-shell-command):
6044         * process.el:
6045         * paths.el (rmail-spool-directory):
6046         * paragraphs.el (use-hard-newlines):
6047         * package-get.el (package-get-dependencies):
6048         * package-admin.el (package-admin-delete-binary-package):
6049         * obsolete.el (truncate-string):
6050         * obsolete.el (store-substring):
6051         * mouse.el (default-mouse-track-maybe-own-selection):
6052         * mouse.el (mouse-yank-at-point):
6053         * modeline.el:
6054         * modeline.el (mouse-drag-modeline):
6055         * minibuf.el (read-directory-name-internal):
6056         * minibuf.el (read-file-name-internal):
6057         * minibuf.el (read-file-name-internal-1):
6058         * minibuf.el (read-file-name-2):
6059         * minibuf.el (exact-minibuffer-completion-p):
6060         * minibuf.el (read-from-minibuffer):
6061         * minibuf.el:
6062         * menubar.el (check-menu-syntax):
6063         * map-ynp.el (map-y-or-n-p):
6064         * make-docfile.el (docfile-out-of-date):
6065         * loadup.el ((member "run-temacs" command-line-args)):
6066         * loadup.el ((member "no-site-file" command-line-args)):
6067         * loadup.el (really-early-error-handler):
6068         * loadup.el:
6069         * loadhist.el:
6070         * loaddefs.el:
6071         * lisp-mnt.el (lm-verify):
6072         * lib-complete.el (lib-complete:cache-completions):
6073         * lib-complete.el (library-all-completions):
6074         * itimer.el (itimer-run-expired-timers):
6075         * info.el (Info-mode):
6076         * info.el (Info-insert-file-contents):
6077         * info.el (Info-rebuild-dir):
6078         * info.el (Info-build-dir-anew):
6079         * info.el (Info-parse-dir-entries):
6080         * info.el (Info-dir-outdated-p):
6081         * info.el (Info-insert-dir):
6082         * info.el (info-xref):
6083         * info.el:
6084         * hyper-apropos.el (hyper-apropos-get-doc):
6085         * hyper-apropos.el (hyper-describe-face):
6086         * hyper-apropos.el (hyper-apropos-mode):
6087         * hyper-apropos.el:
6088         * help.el (list-processes):
6089         * help.el:
6090         * gnuserv.el:
6091         * font.el (mswindows-font-create-name):
6092         * font.el (font-default-font-for-device):
6093         * font.el (x-font-create-object):
6094         * font.el (font-registry):
6095         * font.el:
6096         * font-lock.el (font-lock-keywords):
6097         * font-lock.el:
6098         * finder.el (finder-compile-keywords):
6099         * find-paths.el (paths-find-recursive-path):
6100         * fill.el (set-justification-center):
6101         * fill.el (fill-region-as-paragraph):
6102         * files.el (insert-directory):
6103         * files.el (wildcard-to-regexp):
6104         * files.el (recover-file):
6105         * files.el (basic-save-buffer):
6106         * files.el (delete-auto-save-file-if-necessary):
6107         * files.el (file-relative-name):
6108         * files.el (backup-extract-version):
6109         * files.el (backup-buffer):
6110         * files.el (set-visited-file-name):
6111         * files.el (set-auto-mode):
6112         * files.el (interpreter-mode-alist):
6113         * files.el:
6114         * files.el (find-file-noselect):
6115         * files.el (abbreviate-file-name):
6116         * files.el (parse-colon-path):
6117         * files.el (directory-abbrev-alist):
6118         * etags.el (visit-tags-table-buffer):
6119         * easymenu.el (easy-menu-define):
6120         * dragdrop.el (experimental-dragdrop-drag):
6121         * dragdrop.el (dragdrop-drop-do-functions):
6122         * dragdrop.el (dragdrop-drop-at-point):
6123         * disass.el (disassemble-1):
6124         * disass.el (disassemble-internal):
6125         * disass.el (disassemble):
6126         * disass.el:
6127         * derived.el (derived-mode-init-mode-variables):
6128         * derived.el (define-derived-mode):
6129         * custom.el (defgroup):
6130         * cus-edit.el (custom-quote):
6131         * config.el:
6132         * code-process.el (open-network-stream):
6133         * code-process.el (start-process):
6134         * code-process.el (call-process-region):
6135         * code-process.el (call-process):
6136         * code-process.el:
6137         * code-files.el (insert-file-contents):
6138         * code-files.el:
6139         * code-files.el (buffer-file-coding-system-for-read):
6140         * cmdloop.el (yes-or-no-p-minibuf):
6141         * cl.el:
6142         * cl-macs.el:
6143         * cl-extra.el:
6144         * callers-of-rpt.el (make-caller-report):
6145         * callers-of-rpt.el:
6146         * bytecomp.el (batch-byte-recompile-directory):
6147         * bytecomp.el (batch-byte-compile-1):
6148         * bytecomp.el (batch-byte-compile):
6149         * bytecomp.el (display-call-tree):
6150         * bytecomp.el (byte-compile-insert):
6151         * bytecomp.el (byte-compile-two-args-19->20):
6152         * bytecomp.el (byte-compile-variable-ref):
6153         * bytecomp.el (byte-compile-form):
6154         * bytecomp.el (byte-compile-top-level-body):
6155         * bytecomp.el (byte-compile-out-toplevel):
6156         * bytecomp.el (byte-compile-byte-code-maker):
6157         * bytecomp.el (byte-compile-file-form-defmumble):
6158         * bytecomp.el (byte-compile-file-form):
6159         * bytecomp.el (byte-compile-keep-pending):
6160         * bytecomp.el (byte-compile-insert-header):
6161         * bytecomp.el (byte-compile-from-buffer):
6162         * bytecomp.el (byte-compile-file):
6163         * bytecomp.el (byte-recompile-file):
6164         * bytecomp.el (byte-compile-close-variables):
6165         * bytecomp.el (byte-compile-warn-about-unused-variables):
6166         * bytecomp.el (byte-compile-warn-about-unresolved-functions):
6167         * bytecomp.el (byte-compiler-legal-options):
6168         * bytecomp.el (byte-compile-lapcode):
6169         * bytecomp.el (byte-optimize-log):
6170         * bytecomp.el ((fboundp 'defsubst)):
6171         * bytecomp.el:
6172         * bytecomp-runtime.el:
6173         * byte-optimize.el (byte-optimize-apply):
6174         * byte-optimize.el (car):
6175         * byte-optimize.el (byte-optimize-form):
6176         * byte-optimize.el (byte-optimize-form-code-walker):
6177         * byte-optimize.el:
6178         * build-report.el (build-report-insert-installation-file):
6179         * build-report.el (build-report):
6180         * auto-show.el:
6181         * apropos.el (apropos-documentation):
6182         - mega patch
6183         - clean up byte-compile warnings
6184         - remove unused variables
6185         - Use common lisp style hashtable functions
6186         - byte compiler cleanup
6187         - use #'(lambda ...) instead of '(lambda ...) or (function (lambda ...))
6188         - remove old backquote syntax usage
6189         - move some cl functionality into C for speed.
6190         - remove last remaining VMS support
6191         - spelling fixes
6192         - implement last, butlast, nbutlast, copy-list in C.
6193         - new macro ignore-file-errors, similar to ignore-errors
6194           (ignore-file-errors (delete-file "foo"))
6195         - get frequent garbage collection during loadup.el by tweaking
6196           gc-cons-threshold, rather than explicitly calling garbage-collect
6197         - default delete-key-deletes-forward to `t'.
6198
6199 1998-11-28  SL Baur  <steve@altair.xemacs.org>
6200
6201         * XEmacs 21.2-beta4 is released.
6202
6203 1998-11-27  Jan Vroonhof  <vroonhof@math.ethz.ch>
6204
6205         * easymenu.el (easy-menu-add-item): Wraper around add-menu-btton.
6206         (easy-menu-item-present-p): Wrapper around find-menu-item.
6207         (easy-menu-remove-item): Wrapper around delete-menu-item.
6208
6209         * menubar.el (delete-menu-item): Add 'from-menu' argument.
6210         (add-menu-button): Add 'in-menu' argument.
6211         (add-menu-item-1): Add in-menu support to helper function.
6212
6213 1998-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6214
6215         * isearch-mode.el (isearch-mode): Fix keymap lossage.
6216
6217 1998-11-26  Jan Vroonhof  <vroonhof@math.ethz.ch>
6218
6219         * faces.el (get-custom-frame-properties): Revert Hrvoje Niksic change
6220         of Dec 4, 1997.
6221
6222 1998-11-25  Hrvoje Niksic  <hniksic@srce.hr>
6223
6224         * process.el (shell-command-on-region): Report if the command
6225         succeeded or failed.
6226
6227 1998-11-24  Hrvoje Niksic  <hniksic@srce.hr>
6228
6229         * subr.el (buffer-substring-no-properties): Comment out.
6230
6231 1998-11-07  Adrian Aichner  <adrian@xemacs.org>
6232
6233         * msw-faces.el (mswindows-find-smaller-font): Turning font names
6234           into font instances first, like `x-frob-font-size' does.
6235           (mswindows-find-larger-font): ditto
6236
6237 1998-11-04  Greg Klanderman  <greg@alphatech.com>
6238
6239         * package-ui.el (pui-install-selected-packages): fix args in call
6240         to `package-get'.
6241
6242 1998-10-29  Jan Vroonhof  <vroonhof@math.ethz.ch>
6243
6244         * package-get.el (host-name): New widget type.
6245         (package-get-remote): Better customization using new type.
6246         (package-get-download-sites): idem dito.
6247
6248         (package-get-custom): Do not use package-get-all untill we have
6249         runtime dependencies.
6250
6251         (package-get-remove-copy): Default to 't' we no longer need this
6252         kludge as we do not currently use depenencies.
6253
6254         (package-get-was-current): New variable.
6255         (package-get-require-base): New 'force-current' argument.
6256         (package-get-update-base): idem
6257         (package-get-package-provider):  idem
6258         (package-get-locate-index-file): New 'no-remote' argument.
6259         (package-get-locate-file): idem.
6260
6261         (package-get-maybe-save-index): New function.
6262         (package-get-update-base): Use it.
6263
6264 1998-10-28 Greg Klanderman <greg@alphatech.com>
6265
6266         * package-get.el (package-get-remote): default to nil; by default,
6267         don't go out to the net via EFS.  They must select a download site.
6268         (package-get-download-sites): new variable.
6269         (package-get-download-menu): new function.
6270         (package-get-locate-index-file): new function.
6271         (package-get-update-base): use it.
6272
6273         * menubar-items.el (default-menubar): add "Update Package Index"
6274         and "Add Download Site" menus under Options | Manage Packages.
6275
6276 1998-10-19  Greg Klanderman  <greg@alphatech.com>
6277
6278         * package-get.el (package-get): bugfix code checking installed version
6279         for case where package is not currently installed.
6280         (package-get-require-signed-base-updates): new variable.
6281         (package-get-update-base-from-buffer): remove REMOTE-SOURCE arg, it was
6282         deemed not a goot thing.  Use the variable
6283         package-get-allow-unsigned-base-updates instead.
6284
6285 1998-10-16 Greg Klanderman <greg@alphatech.com>
6286
6287         * package-get.el (package-get): Don't install an older version than
6288         we already have unless explicitly told to.  Issue a warning.
6289
6290         * package-ui.el (pui-add-required-packages): when adding
6291         dependencies, don't add packages that are up to date.
6292         (pui-package-symbol-char):  Don't consider a package out of date
6293         if you have a newer version installed than the latest version in
6294         package-get-base.
6295
6296         * package-get.el (package-get-base-filename): document that it may
6297         be a path relative to package-get-remote;  new default value.
6298         (package-get-locate-file): new function.
6299         (package-get-update-base): use it to expand package-get-base-filename.
6300         (package-get-save-base): new function to save the package-get database
6301         to file.
6302         (package-get-update-base-from-buffer): add REMOTE-SOURCE argument.
6303         (package-get-update-base): pass the REMOTE-SOURCE arg.
6304         (package-get-update-base-entry): call package-get-custom-add-entry.
6305         (package-get-file-installed-p): removed; no longer needed.
6306         (package-get-create-custom): ditto.
6307         (toplevel): remove code to build and load package-get-custom.el
6308         (package-get-custom-add-entry): new function.
6309
6310 1998-10-12  Hrvoje Niksic  <hniksic@srce.hr>
6311
6312         * wid-edit.el (widget-button-click): Don't switch window.
6313
6314 1998-10-22  Jan Vroonhof  <vroonhof@math.ethz.ch>
6315
6316         * cus-face.el (custom-set-face-update-spec): Add autoload cookie
6317
6318 1998-10-20  Malcolm Box  <malcolm@brownale.demon.co.uk>
6319
6320         * etags.el (find-tag-default): Run find-tag-hook using
6321         run-hooks rather than funcall
6322
6323 1998-10-19  Hrvoje Niksic  <hniksic@srce.hr>
6324
6325         * isearch-mode.el (isearch-mode): Set the current minor mode maps
6326         and the current local map as the parents to isearch-mode-map.
6327
6328 1998-10-15  SL Baur  <steve@altair.xemacs.org>
6329
6330         * XEmacs 21.2-beta3 is released.
6331
6332 1998-10-15  Greg Klanderman  <greg@alphatech.com>
6333
6334         * package-get.el (package-get-update-base): use
6335         insert-file-contents-internal, not insert-file-contents-literally.
6336
6337 1998-10-14  Jan Vroonhof  <vroonhof@math.ethz.ch>
6338
6339         * auto-save.el: expand-file 'auto-save-*-dir' at runtime not at
6340         dump time.
6341
6342 1998-10-15  Greg Klanderman  <greg@alphatech.com>
6343
6344         * package-get.el (package-get-update-base-entry): new function.
6345         (package-get-update-base): renamed; was `package-get-load-base'.
6346         cleanup, and use package-get-update-base-from-buffer.
6347         (package-get-update-base-from-buffer): new function.
6348         (package-get-update-base-entries): new; helper for above.
6349         Do not eval lisp grabbed over ftp; parse it from new format.
6350
6351 1998-10-15  Greg Klanderman  <greg@alphatech.com>
6352
6353         * files.el (set-auto-mode): Don't play games loading package-get
6354         database; package-get-package-provider will handle it all.
6355
6356 1998-10-14  Greg Klanderman  <greg@alphatech.com>
6357
6358         * package-get.el (package-get-base-filename): new variable.
6359         (package-get-require-base): new function.
6360         (package-get-pgp-signed-begin-line): new variable.
6361         (package-get-pgp-signature-begin-line): ditto.
6362         (package-get-pgp-signature-end-line):  ditto.
6363         (package-get-load-base): new function.
6364         (package-get-interactive-package-query):
6365         (package-get-update-all):
6366         (package-get-dependencies):
6367         (package-get-package-provider):
6368         (package-get-custom): use package-get-require-base.
6369         [package-get-custom loading]: disable for now.
6370
6371         * package-ui.el (pui-list-packages): use (package-get-require-base)
6372
6373 1998-10-14  Jan Vroonhof  <vroonhof@math.ethz.ch>
6374
6375         * package-ui.el: Correct obvious thinko in choosing extent face.
6376
6377 1998-10-12  Jan Vroonhof  <vroonhof@math.ethz.ch>
6378
6379         * menubar-items.el (default-menubar): pui-list-package has nothing
6380         to with Customize. Move all the package stuff to a new Item in Options.
6381
6382         * package-ui.el (pui-menu): Add menu and Popup menu.
6383
6384         * package-get.el (package-get): Use new
6385         package-admin-get-install-dir.
6386
6387         * package-admin.el (package-admin-get-install-dir): New syntax.
6388         Conserve package location and put mule packages where mule-base is.
6389
6390         * package-get.el : Customized
6391
6392         * package-ui.el (pui): Customized
6393         (pui-package-install-dest-dir): New variable.
6394         (pui-install-selected-packages): Use it
6395
6396 1998-10-12  SL Baur  <steve@altair.xemacs.org>
6397
6398         * package-get.el (package-get-interactive-package-query): Move
6399         dependency on package-get-base to run-time.
6400         (package-get-update-all): Ditto.
6401         (package-get-dependencies): Ditto.
6402         (package-get-package-provider): Ditto.
6403         (package-get-custom): Ditto.
6404
6405 1998-10-11  Glynn Clements  <glynn@sensei.co.uk>
6406
6407         * events.el: Remove 'ascii-character property from 'backspace
6408         and 'delete symbols
6409
6410 1998-10-11  SL Baur  <steve@altair.xemacs.org>
6411
6412         * package-get-base.el: removed.
6413
6414 1998-09-23  Didier Verna  <didier@xemacs.org>
6415
6416         * simple.el (search-caps-disable-folding): moved from isearch-mode.el
6417         (no-upper-case-p): new function.
6418         (with-search-caps-disable-folding): new macro.
6419         (with-interactive-search-caps-disable-folding): new macro.
6420         (zap-to-char): In interactive mode, do a case-sensitive search if
6421         the character is uppercase.
6422         (zap-up-to-char): ditto.
6423
6424         * replace.el (perform-replace): use the function no-upper-case-p.
6425
6426         * isearch-mode.el (isearch-fix-case): ditto.
6427         make obsolete `with-caps-disable-folding' and
6428         `isearch-no-upper-case-p'.
6429
6430         * etags.el (find-tag-internal): use `with-search-caps-disable-folding'.
6431         (tags-search): ditto.
6432         (tags-query-replace): ditto.
6433
6434         * info.el (Info-search): ditto.
6435
6436 1998-10-07  Jan Vroonhof  <vroonhof@math.ethz.ch>
6437
6438         * x-font-menu.el (font-menu-set-font): Respect font-menu-frame-local
6439
6440 1998-10-07  Greg Klanderman  <greg@alphatech.com>
6441
6442         * package-admin.el (package-admin-rmtree): rewritten.  need to
6443         check for "." and ".." before symlink check.  expand files and
6444         directories with respect to DIRECTORY, not default-directory.
6445
6446 1998-10-04  Greg Klanderman  <greg@alphatech.com>
6447
6448         * package-get.el (package-get-all): add INSTALL-DIR argument.
6449
6450 1998-10-06  Greg Klanderman  <greg@alphatech.com>
6451
6452         * package-ui.el (pui-add-required-packages): new function, select
6453         dependent packages.
6454         (pui-display-keymap): bind it.
6455         (pui-help-string): document it.
6456         (pui-install-selected-packages): package-get-all -> package-get.
6457
6458         * package-get.el (package-get-dependencies): new function.
6459
6460 1998-10-04  Hrvoje Niksic  <hniksic@srce.hr>
6461
6462         * isearch-mode.el (isearch-done): Use regexp-search-ring-max for
6463         regexps.
6464
6465 1998-10-05  Hrvoje Niksic  <hniksic@srce.hr>
6466
6467         * mouse.el (default-mouse-track-point-at-opening-quote-p): New
6468         function.
6469         (default-mouse-track-normalize-point): Use it.
6470
6471 1998-09-30  Jan Vroonhof  <vroonhof@math.ethz.ch>
6472
6473         * package-admin.el (package-admin-delete-binary-package):
6474                 General cleanup. Remove unnessary use of progn and
6475         save-excursion.
6476         (package-admin-delete-binary-package): Do NOT mess with file
6477         modes. That is evil.
6478         (package-admin-delete-binary-package): Wrap all deleting in
6479         condition-case. The data in MANIFEST is untrustworthy.
6480         (package-admin-delete-binary-package): Let the OS worry about non
6481         empty directories.
6482
6483 1998-10-09  SL Baur  <steve@altair.xemacs.org>
6484
6485         * lisp-mnt.el (lm-commentary): Fix InfoDock-style comment
6486         processing.
6487         (lm-report-bug): Fix mail address to send bug reports to.
6488
6489 1998-09-29  SL Baur  <steve@altair.xemacs.org>
6490
6491         * XEmacs 21.2-beta2 is released.
6492
6493 1998-08-14  Jan Vroonhof  <vroonhof@math.ethz.ch>
6494
6495         * files.el (auto-mode-alist): Enhanced regexp for perl-mode
6496
6497 1998-09-22  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
6498
6499         * info.el (Info-mode): Document page turning by double clicks in
6500         docstring so `M-x describe-mode' will display it.
6501
6502 1998-09-20  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
6503
6504         * info.el (Info-mouse-track-double-click-hook): Use character
6505         widths to calculate a border region where double clicking does
6506         page turning, and return `nil' by default so other hooks, such as
6507         region highlighting, will be run.
6508
6509 1998-09-29  Colin Rafferty   <colin@xemacs.org>
6510
6511         * sound.el (default-sound-directory-list): Initialize with all the
6512         "sounds" directories in `data-directory-list'.  It used to just be
6513         the first one.
6514
6515         * packages.el (locate-data-directory-list): Created.  This gives
6516         the list of matching directories, unlike `locate-data-directory',
6517         which just gives the first one.
6518
6519 1998-09-26  Jan Vroonhof  <vroonhof@math.ethz.ch>
6520
6521         * minibuf.el (read-from-minibuffer): No longer bind help-form but
6522         make a binding in the local keymap until help-char handling is
6523         improved.
6524
6525         * help.el (help-keymap-with-help-key): Provide keymap with help
6526         binding.
6527         (help-print-help-form): New helper function.
6528
6529 1998-09-23  Hrvoje Niksic  <hniksic@srce.hr>
6530
6531         * isearch-mode.el (isearch-highlight): set-extent-endpoints can
6532         move extent to another buffer; no need to create a new extent.
6533         (isearch-fix-case): New function.
6534         (isearch-search-and-update): Use it.
6535
6536 1998-09-22  Hrvoje Niksic  <hniksic@srce.hr>
6537
6538         * isearch-mode.el (isearch-mode): Use overriding-local-map to set
6539         the keymap, not minor-mode-map-alist.
6540         (isearch-done): Restore overriding-local-map.
6541
6542 1998-09-21  Martin Buchholz  <martin@xemacs.org>
6543
6544         * bytecomp.el (byte-compile-buffer-substring):
6545         Fix for: (byte-compile (defun f () (buffer-substring)))
6546         ==>   ** buffer-substring called with 3 args, but requires 0-3
6547         - new code not only works, but is more readable, too.
6548
6549 1998-09-20  Jonathan Harris  <jhar@tardis.ed.ac.uk>
6550
6551         * msw-faces.el (mswindows-init-device-faces): Don't try to
6552           specify a default font at this late stage. Do try to force
6553           creation of the default face font so that if it fails we get
6554           an error now instead of a crash at frame creation.
6555
6556           mswindows-font-canonicalize-name, mswindows-make-font-unbold,
6557           mswindows-make-font-unitalic: Canonical default weight
6558           changed from "Normal" to "Regular".
6559
6560           mswindows-make-font-bold / -bold-italic: Supplied device was
6561           not being passed into call to mswindows-find-smaller-font.
6562
6563 1998-09-10  Bjrn Torkelsson  <torkel@hpc2n.umu.se>
6564
6565         * package-get.el (package-get-remote): Fix the path where to find
6566           the packages on xemacs.org.
6567
6568 1998-09-08  Hrvoje Niksic  <hniksic@srce.hr>
6569
6570         * about.el (about-maintainer-info): Update Ben's entry.
6571
6572 1998-09-24  Martin Buchholz  <martin@xemacs.org>
6573
6574         * lisp/shadow.el (find-emacs-lisp-shadows):
6575         - `member' was being called on lists of length 2000!
6576         - Replace with hashtables.
6577         - Replace hand-coded loops with (dolist)
6578         - Fix comment typo
6579
6580 1998-09-20  Darryl Okahata  <darrylo@sr.hp.com>
6581
6582         * packages.el: Added new function, `package-delete-name', to
6583           delete existing packages from the installed package database
6584           (`packages-package-list').  Also added the "pkginfo" directory
6585           to `packages-special-base-regexp', so that the pkginfo directory
6586           would not get added to `late-packages'.
6587
6588         * package-admin.el: Added ability to delete an installed package
6589           (added low-level function, `package-admin-delete-package').
6590           Understands how to use the pkginfo/MANIFEST.<package> file to
6591           delete the package.  When installing a package, will also
6592           create a MANIFEST.* file if one is not provided by the
6593           package.  If the MANIFEST.* doesn't exist when deleting a
6594           package, the functions will fall back to attempting to delete
6595           any package-specific lisp directory.
6596
6597         * package-get.el: Moved some functions to package-admin.el.
6598           Added interactive function `package-get-delete-package', for
6599           use by users for deleting a package.
6600
6601           Also modified to not require the presence of efs.
6602
6603 1998-09-22  Hrvoje Niksic  <hniksic@srce.hr>
6604
6605         * files.el (find-file-noselect): Handle all signals, kill the
6606         buffer and resignal.
6607
6608 1998-09-23  SL Baur  <steve@altair.xemacs.org>
6609
6610         * cl-macs.el (glyph-image): Add setf method.
6611
6612 1998-09-06  Darryl Okahata  <darrylo@sr.hp.com>
6613
6614         * package-get.el: Fixed broken EFS downloading.  Also, look for
6615           .tar.gz files first, in preference over .tgz files.
6616
6617         * package-ui.el: Fix display of package version numbers.
6618
6619 1998-08-27  Jan Vroonhof  <vroonhof@math.ethz.ch>
6620
6621         * x-font-menu.el (font-menu-set-font):  Add "pt" units to size
6622         argument.
6623
6624 1998-09-03  Darryl Okahata  <darrylo@sr.hp.com>
6625
6626         * list-mode.el: `display-completion-list': added new/optional
6627           keyword `:completion-string', which allows the programmer to
6628           change the "Possible completions are:" prompt.
6629
6630         * menubar-items.el: Added new pulldown menu-pick to start up the
6631           visual package browser/installer:
6632
6633                 Options->Customize->List Packages
6634
6635         * package-admin.el: Added hooks for installing under both Unix
6636           and MS Windows.  Does additional error checking.  No longer
6637           calls "add-big-package.sh" to install packages under Unix; now
6638           calls gunzip & tar directly.
6639
6640         * package-get.el: Added ability to install packages from files
6641           on a local disk/CDROM.  Now deletes any existing package lisp
6642           directory.  Does completion on available packages when
6643           querying for package names.  Will also search for .tgz files
6644           in addition for .tar.gz files.  Tries to reload
6645           auto-autoloads, as a convenience when loading new packages,
6646           and also tries to add any new package paths to `load-path'.
6647           Changed all occurences of `concat' to use `expand-file-name'.
6648
6649         * package-ui.el: New file which implements the main visual
6650           package browser/installer, which is started via a menu pick or
6651           M-x pui-list packages.
6652
6653 1998-09-03  Hrvoje Niksic  <hniksic@srce.hr>
6654
6655         * startup.el (load-init-file): spelling fix.
6656
6657 1998-09-02  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
6658
6659         * startup.el (normal-top-level): Load auto-autoload files
6660         covariantly with their precedence.
6661
6662 1998-08-26  Jan Vroonhof  <vroonhof@math.ethz.ch>
6663
6664         * menubar-items.el (default-menubar): Remove "Font Weight"
6665         option, there is currently no custom equivalent.. Customize-faces
6666         is "Edit faces".
6667
6668         * x-font-menu.el (font-menu-set-font): Use customize to set
6669         default face.
6670
6671         * faces.el (face-spec-update-all-matching): New function.
6672
6673         * cus-face.el (custom-set-face-update-spec): New function.
6674         Interface to customize faces from elisp.
6675
6676         (custom-face-value-create): Show the customized settings if set
6677         but not saved.
6678
6679 1998-08-26  Jan Vroonhof  <vroonhof@math.ethz.ch>
6680
6681         (custom-face-value-create): Show the customized settings if set
6682         but not saved.
6683
6684 1998-08-31  Hrvoje Niksic  <hniksic@srce.hr>
6685
6686         * keydefs.el (global-map): Add FSF 20.3 binding of
6687         query-replace-regexp.
6688
6689 1998-08-21  Greg Klanderman  <greg@alphatech.com>
6690
6691         * minibuf.el (read-file-name-internal-1): use
6692         user-name-completion-1 instead of user-name-completion.
6693
6694 1998-08-19  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
6695
6696         * loadup.el:
6697         * make-docfile.el:
6698         * update-elc.el: Don't set `source-directory' (now defunct as a
6699         global variable) no more.
6700
6701         * packages.el (packages-list-autoloads): Made `source-directory'
6702         (now defunct as a global variable) a parameter.
6703
6704 1998-08-13  Carsten Leonhardt  <leo@arioch.oche.de>
6705
6706         * about.el (about-hackers): new email
6707
6708 1998-08-16  SL Baur  <steve@altair.xemacs.org>
6709
6710         * lisp-mode.el (with-string-as-buffer-contents): Set indentation.
6711
6712 1998-07-17  Didier Verna  <didier@xemacs.org>
6713
6714         * faces.el (set-face-property):
6715         (set-face-dim-p):
6716         (face-dim-p): updated the doc strings now that the dim property isn't
6717         tty-specific.
6718         (face-equal): the dim property is now a common one.
6719
6720         * cus-face.el (custom-face-attributes): New face attribute: `dim'
6721         Renamed the `stipple' attribute to `background-pixmap'.
6722         (custom-face-background-pixmap): make custom-face-stipple an
6723         obsolete alias for this.
6724
6725 1998-08-11  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
6726
6727         * find-paths.el (paths-file-readable-directory-p): Created and
6728         used.
6729
6730         * loadup.el: Don't set inhibit-... flags from run-temacs.
6731
6732 1998-08-06  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
6733
6734         * packages.el (packages-data-path-depth): Added and used.
6735
6736 1998-08-05  Charles G. Waldman <cgw@pgt.com>
6737
6738         * about.el:
6739         - Change .xpm to .png, delete "zcat" section.
6740         - cosmetic fix in the 'marcpa' entry.
6741
6742         * etc/photos
6743         - convert all .xpm.Z to .png
6744         - rename mrb to martin
6745         - rename mcook-m to mcookm
6746
6747 1998-07-31  Martin Buchholz  <martin@xemacs.org>
6748
6749         * x-init.el (x-initialize-compose): Add support for
6750         dead-circumflex as YET ANOTHER NAME for that dead key.
6751
6752 1998-08-05  Colin Rafferty <colin@xemacs.org>
6753
6754         * setup-paths.el (paths-construct-exec-path): Made the
6755         last-packages really be last.
6756         (paths-construct-data-directory-list): Ditto.
6757
6758 1998-08-01  Kai Haberzettl  <khaberz@synnet.de>
6759
6760         * startup.el(startup-splash-frame-body):
6761         Update Copyright notice in splash screen
6762
6763 1998-07-20  Greg Klanderman  <greg@alphatech.com>
6764
6765         * minibuf.el (read-file-name-internal-1): do ~user completion.
6766
6767 1998-07-22  Jan Vroonhof  <vroonhof@math.ethz.ch>
6768
6769         * font-lock.el (font-lock-fontify-glumped-region): Add guard
6770         aginst destroyed extents
6771
6772 1998-07-24  Greg Klanderman  <greg@alphatech.com>
6773
6774         * package-get.el (package-get): add `install-dir' argument.
6775
6776 1998-07-20  John Jones  <jj@asu.edu>
6777
6778         * package-get.el: calls to package-get-update-all will only
6779           update packages which are already installed.
6780
6781 1998-07-23  SL Baur  <steve@altair.xemacs.org>
6782
6783         * autoload.el (update-file-autoloads): Ensure autoloads buffer is
6784         writable.
6785
6786 1998-07-20  Colin Rafferty   <colin@xemacs.org>
6787
6788         * about.el (about-hackers): Correct my email.
6789
6790 1998-07-20  Kai Haberzettl  <khaberz@synnet.de>
6791
6792         * about.el (about-hackers): new email-address.
6793
6794 1998-07-25  SL Baur  <steve@altair.xemacs.org>
6795
6796         * minibuf.el (read-number): Don't let `input-error' condition
6797         escape.
6798
6799 1998-07-20  Greg Klanderman  <greg@alphatech.com>
6800
6801         * about.el (about-hackers): use my `email-for-life' address.
6802
6803 1998-07-19  SL Baur  <steve@altair.xemacs.org>
6804
6805         * XEmacs 21.2-beta1 is released.
6806
6807 1998-07-12  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
6808
6809         * ldap.el (ldap-search): Doc string change
6810
6811 1998-07-16  Colin Rafferty   <colin@xemacs.org>
6812
6813         * menubar-items.el (default-menubar): Removed references to
6814         `data-directory', and use `locate-data-file' instead, and made
6815         then greyed out if they don't exist.
6816
6817 1998-07-14  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
6818
6819         * keymap.el (events-to-keys): Use `format' instead of `concat'
6820         since the latter does not accept integer args anymore
6821
6822 1998-07-15  SL Baur  <steve@altair.xemacs.org>
6823
6824         * dumped-lisp.el (preloaded-file-list): Usage of Lisp read-time
6825         macros replaced.
6826
6827 1998-07-14  SL Baur  <steve@altair.xemacs.org>
6828
6829         * make-docfile.el: Get first initialization from very-early-lisp.el
6830         * update-elc.el: Ditto.
6831         * loadup.el (really-early-error-handler): Ditto.
6832
6833         * packages.el (packages-unbytecompiled-lisp): Add new file,
6834         very-early-lisp.el.
6835
6836         * very-early-lisp.el: New file.
6837
6838 1998-07-14  SL Baur  <steve@altair.xemacs.org>
6839
6840         * Symbols that have been obsolete for at least 3 years removed (II).
6841
6842         * obsolete.el (eval-current-buffer): Make compatible.
6843         (byte-code-function-p): Ditto.
6844         (send-string): Removed.
6845         (send-region): Removed.
6846         (screen-scrollbar-width): Removed.
6847         (set-screen-scrollbar-width): Removed.
6848         (set-screen-left-margin-width): Removed.
6849         (set-screen-right-margin-width): Removed.
6850         (screen-left-margin-width): Removed.
6851         (screen-right-margin-width): Removed.
6852         (set-buffer-left-margin-width): Removed.
6853         (set-buffer-right-margin-width): Removed.
6854         (buffer-left-margin-width): Removed.
6855         (buffer-right-margin-width): Removed.
6856         (x-set-frame-icon-pixmap): Removed.
6857         (x-set-screen-icon-pixmap): Removed.
6858         (pixel-name): Removed.
6859         (make-pixmap): Removed.
6860         (make-cursor): Removed.
6861         (pixmap-width): Removed.
6862         (pixmap-contributes-to-line-height-p): Removed.
6863         (set-pixmap-contributes-to-line-height): Removed.
6864
6865 1998-07-13  SL Baur  <steve@altair.xemacs.org>
6866
6867         * obsolete.el (popup-menu-up-p): removed.
6868         (read-no-blanks-input): Removed.
6869         (wholenump): Removed.
6870         (ring-mod): Removed (what was ring-mod?).
6871         (current-time-seconds): Removed.
6872         (run-special-hook-with-args): Removed.
6873         (dot): Removed.
6874         (dot-marker): Removed.
6875         (dot-min): Removed.
6876         (dot-max): Removed.
6877         (window-dot): Removed.
6878         (set-window-dot): Removed.
6879
6880         * bytecomp.el: Remove bytecompiler support for `dot', `dot-max' and
6881         `dot-min'.
6882
6883         * minibuf.el: (read-no-blanks-input): remove commented-out copy.
6884
6885         * code-files.el (insert-file-contents): Rename
6886         run-special-hook-with-args to run-hook-with-args-until-success.
6887         (write-region): Ditto.
6888
6889 1998-07-12  SL Baur  <steve@altair.xemacs.org>
6890
6891         * about.el: Fix typos, update release date.
6892
6893         * Symbols that have been obsolete for at least 3 years removed.
6894
6895         * cl-macs.el (cl-parse-loop-clause): Delete obsolete references to
6896         screen- functions.
6897         (toplevel): remove setf methods for screen functions.
6898         * cl-macs.el (extent-data): defsetf removed.
6899         * obsolete.el (lisp-indent-hook): Make compatible, it's used too
6900         many places to remove.
6901         (comment-indent-hook): Ditto.
6902         * obsolete.el (get-screen-for-buffer-default-screen-name): Remove.
6903         (buffer-dedicated-screen): Ditto.
6904         (deiconify-screen): Ditto.
6905         (delete-screen): Ditto.
6906         (event-screen): Ditto.
6907         (find-file-other-screen): Ditto.
6908         (find-file-read-only-other-screen): Ditto.
6909         (live-screen-p): Ditto.
6910         (screen-height): Ditto.
6911         (screen-iconified-p): Ditto.
6912         (screen-list): Ditto.
6913         (screen-live-p): Ditto.
6914         (screen-name): Ditto.
6915         (screen-parameters): Ditto.
6916         (screen-pixel-height): Ditto.
6917         (screen-pixel-width): Ditto.
6918         (screen-root-window): Ditto.
6919         (screen-selected-window): Ditto.
6920         (screen-totally-visible-p): Ditto.
6921         (screen-visible-p): Ditto.
6922         (screen-width): Ditto.
6923         (screenp): Ditto.
6924         (get-screen-for-buffer): Ditto.
6925         (get-screen-for-buffer-noselect): Ditto.
6926         (get-other-screen): Ditto.
6927         (iconify-screen): Ditto.
6928         (lower-screen): Ditto.
6929         (mail-other-screen): Ditto.
6930         (make-screen): Ditto.
6931         (make-screen-invisible): Ditto.
6932         (make-screen-visible): Ditto.
6933         (modify-screen-parameters): Ditto.
6934         (new-screen): Ditto.
6935         (next-screen): Ditto.
6936         (next-multiscreen-window): Ditto.
6937         (other-screen): Ditto.
6938         (previous-screen): Ditto.
6939         (previous-multiscreen-window): Ditto.
6940         (raise-screen): Ditto.
6941         (redraw-screen): Ditto.
6942         (select-screen): Ditto.
6943         (selected-screen): Ditto.
6944         (set-buffer-dedicated-screen): Ditto.
6945         (set-screen-height): Ditto.
6946         (set-screen-position): Ditto.
6947         (set-screen-size): Ditto.
6948         (set-screen-width): Ditto.
6949         (show-temp-buffer-in-current-screen): Ditto.
6950         (switch-to-buffer-other-screen): Ditto.
6951         (visible-screen-list): Ditto.
6952         (window-screen): Ditto.
6953         (x-set-screen-pointer): Ditto.
6954         (x-set-frame-pointer): Ditto.
6955         (screen-title-format): Ditto.
6956         (screen-icon-title-format): Ditto.
6957         (terminal-screen): Ditto.
6958         (delete-screen-hook): Ditto.
6959         (create-screen-hook): Ditto.
6960         (mouse-enter-screen-hook): Ditto.
6961         (mouse-leave-screen-hook): Ditto.
6962         (map-screen-hook): Ditto.
6963         (unmap-screen-hook): Ditto.
6964         (default-screen-alist): Ditto.
6965         (default-screen-name): Ditto.
6966         (x-screen-defaults): Ditto.
6967         (x-create-screen): Ditto.
6968         * obsolete.el: meta-flag removed.
6969         baud-rate removed.
6970         sleep-for-millisecs removed.
6971         extent-data removed.
6972         set-extent-data removed.
6973         set-extent-attribute removed.
6974         extent-glyph removed.
6975         extent-layout removed.
6976         set-extent-layout removed.
6977         list-faces-display removed.
6978         list-faces removed.
6979         trim-versions-without-asking removed.
6980         after-write-file-hooks removed.
6981         truename removed.
6982         auto-fill-hook removed.
6983         blink-paren-hook removed.
6984         select-screen-hook, deselect-screen-hook removed.
6985         auto-raise-screen, auto-lower-screen removed.
6986
6987         * msw-mouse.el: Global change resource -> mswindows-resource.
6988
6989         * XEmacs 21.0-pre5 is released.
6990
6991 1998-07-11  SL Baur  <steve@altair.xemacs.org>
6992
6993         * about.el (about-hackers): Credits update.
6994
6995 1998-07-11  Hrvoje Niksic  <hniksic@srce.hr>
6996
6997         * register.el (insert-register): Don't activate the region.
6998
6999 1998-07-10  SL Baur  <steve@altair.xemacs.org>
7000
7001         * select.el: Restore x-* symbols for backwards compatibility:
7002         x-copy-primary-selection, x-kill-primary-selection,
7003         x-delete-primary-selection, x-select-make-extent-for-selection,
7004         x-valid-simple-selection-, x-cut-copy-clear-internal.
7005
7006 1998-07-09  SL Baur  <steve@altair.xemacs.org>
7007
7008         * XEmacs 21.0-pre4 is released.
7009
7010 1998-06-28  Hrvoje Niksic  <hniksic@srce.hr>
7011
7012         * menubar-items.el (default-menubar): Use `report-emacs-bug' for
7013         reporting bugs.
7014         (maybe-add-init-button): Fix semantics under Windows.  Use
7015         `expand-file-name' rather than `concat'.
7016
7017         * help.el (print-messages): New function.
7018
7019 1998-07-05  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
7020
7021         * ldap.el (ldap-host-parameters-alist): Docstring fixes
7022
7023 1998-07-04  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7024
7025         * about.el: Tweaked my entry in about-hackers.
7026
7027         * find-paths.el (paths-emacs-root-p):
7028           Relaxed emacs-root checking of an in-place installation to
7029           also accommodate the flat layout used on MS Windows.
7030
7031 1998-06-29  John Jones  <jj@asu.edu>
7032
7033         * package-get.el: calls to package-get-update-all will only
7034           update packages which are already installed.
7035
7036 1998-07-05  Andy Piper  <andyp@parallax.co.uk>
7037
7038         * faces.el (xpm-color-symbols): remove hardcoded defaults these
7039         are handled by the gui-element face fallbacks now.
7040
7041         * x-faces.el: default gui-element face to "background" as well as
7042         the default face.
7043
7044         * msw-faces.el (mswindows-init-device-faces): remove gui-element
7045         and default face settings since these are set as fallbacks now in
7046         the appropriate domain.
7047
7048 1998-07-02  SL Baur  <steve@altair.xemacs.org>
7049
7050         * text-mode.el (text-mode): Reorder regexp so the OR part
7051         corresponding to `page-delim' goes first and the hack in
7052         `forward-paragraph' will work.
7053         With bug analysis from Bob Weiner <weiner@altrasoft.com>
7054
7055 1998-06-29  Kyle Jones  <kyle_jones@wonderworks.com>
7056
7057         * subr.el (remove-hook): When checking the hook value
7058           with functionp, don't apply car to it.
7059
7060 1998-06-24  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7061
7062         * package-get.el (package-get-remote-filename):
7063           Don't use file-name-as-directory because the local directory
7064           separator conventions might not be the same as ftp's.
7065
7066 1998-06-27  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
7067
7068         * ldap.el (ldap-host-parameters-alist): New name of
7069         `ldap-host-parameters-plist'
7070
7071 1998-06-26  Adrian Aichner  <adrian@xemacs.org>
7072
7073         * package-get.el: Using (require 'package-get-base), now that it
7074         provides itself.  Consequently removed all instances of (load
7075         "package-get-base.el").
7076
7077 1998-06-29  Kyle Jones  <kyle_jones@wonderworks.com>
7078
7079         * subr.el (remove-hook): Don't treat the hook value as a
7080           list unless it is both consp and not functionp.
7081
7082 1998-06-29  SL Baur  <steve@altair.xemacs.org>
7083
7084         * about.el: Email address for Ben Wing is ben@xemacs.org.
7085         * auto-show.el: Ditto.
7086         * bytecomp.el: Ditto.
7087         * faces.el: Ditto.
7088         * x-scrollbar.el: Ditto.
7089         * x-misc.el: Ditto.
7090         * tty-init.el: Ditto.
7091         * toolbar-items.el: Ditto.
7092         * symbol-syntax.el: Ditto.
7093         * specifier.el: Ditto.
7094         * objects.el: Ditto.
7095         * hyper-apropos.el: Ditto.
7096         * glyphs.el: Ditto.
7097
7098 1998-06-27  Hrvoje Niksic  <hniksic@srce.hr>
7099
7100         * mouse.el (drag-window-divider): vertical-divider-draggable-p ->
7101         vertical-divider-always-visible-p.
7102         (default-mouse-motion-handler): Ditto.
7103
7104 1998-06-21  Hrvoje Niksic  <hniksic@srce.hr>
7105
7106         * scrollbar.el (scrollbars-visible-p): Simplify.  Always set the
7107         global value.
7108
7109 1998-06-21  Oliver Graf <ograf@fga.de>
7110
7111         * build-reports.el: changed receiver to xemacs-build-reports list
7112
7113 1998-06-19  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7114
7115         * font.el: Split font-family-mappings into X and
7116           mswindows-specific versions.
7117           mswindows-font-create-[object|name]: Treat supplied size
7118           as a pointsize. Added underline and strikethru handling.
7119
7120         * msw-faces.el: changed default mswindows charset to western.
7121
7122         * msw-glyphs.el: removed space in border-glyph font string that
7123           was inserted to get round bugs in the mswindows C font code.
7124
7125 1998-06-27  SL Baur  <steve@altair.xemacs.org>
7126
7127         * about.el (about-hackers): Credits update.
7128
7129         * help-nomule.el (tutorial-supported-languages): Add Romanian
7130         TUTORIAL.
7131
7132         * code-files.el (file-coding-system-alist): Hardwire TUTORIAL.ro
7133         to ISO-8859-2.
7134
7135 1998-06-19  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7136
7137         * font.el: Split font-family-mappings into X and
7138           mswindows-specific versions.
7139           mswindows-font-create-[object|name]: Treat supplied size
7140           as a pointsize. Added underline and strikethru handling.
7141
7142         * msw-faces.el: changed default mswindows charset to western.
7143
7144         * msw-glyphs.el: removed space in border-glyph font string that
7145           was inserted to get round bugs in the mswindows C font code.
7146
7147 1998-06-15  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7148
7149         * minibuf.el: make read-color-completion-table call
7150           (mswindows-color-list for mswindows devices.
7151
7152 1998-06-18  Sam Mikes  <smikes@alumni.hmc.edu>
7153
7154         * lisp/font-lock.el
7155         (font-lock-match-c++-style-declaration-item-and-skip-to-next):
7156         Let declaration items contain non-word symbol characters.
7157
7158 1998-06-15  Adrian Aichner  <adrian@xemacs.org>
7159
7160         * package-get.el (package-get-package-provider): Added autoload
7161         cookie.  Loading "package-get-base.el" in ALL functions that use
7162         it.  Fixed some (interactive ...) with multiple argument specs
7163         again.  Cosmetic indentation changes.
7164
7165 1998-05-27  Glynn Clements  <glynn@sensei.co.uk>
7166
7167         * info.el (Info-insert-dir): Don't use nreverse on variables
7168         that you want to use later.
7169
7170 1998-06-17  Glynn Clements  <glynn@sensei.co.uk>
7171
7172         * x-mouse.el (x-set-point-and-move-selection): Replace call
7173         to x-kill-primary-selection with kill-primary-selection
7174
7175 1998-06-12  Martin Buchholz  <martin@xemacs.org>
7176
7177         * simple.el (what-cursor-position): Make cursor position reported
7178         use value of column-number-start-at-one
7179
7180 1998-06-17  SL Baur  <steve@altair.xemacs.org>
7181
7182         * about.el (xemacs-hackers): Fix Jareth's email address.
7183
7184 1998-06-16  SL Baur  <steve@altair.xemacs.org>
7185
7186         * startup.el (startup-splash-frame): Remove
7187         `xemacs-startup-logo-function'.
7188
7189 1998-06-15  SL Baur  <steve@altair.xemacs.org>
7190
7191         * about.el (about-hackers): Update credits list.
7192
7193 1998-06-06  Jeff Miller <jmiller@smart.net>
7194
7195         * lisp/sound.el: Update sound-ext to allow filenames with
7196           extensions to be found by load-sound-file
7197
7198 1998-06-14  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
7199
7200         * info.el (Info-rebuild-outdated-dir): Removed variable
7201         (Info-auto-generate-directory): New variable
7202         (Info-save-auto-generated-dir): New variable
7203         (Info-maybe-update-dir): Use `Info-auto-generate-directory'
7204         (Info-build-dir-anew): Second parameter removed.  Use
7205         `Info-save-auto-generated-dir'
7206         (Info-rebuild-dir): Ditto
7207
7208 1998-06-02  Christoph Wedler  <wedler@fmi.uni-passau.de>
7209
7210         * list-mode.el (next-list-mode-item): Would not recognize
7211         border between directly neighbored items.
7212
7213 1998-06-12  Andy Piper  <andyp@parallax.co.uk>
7214
7215         * package-get.el: add autoloads for some functions.
7216
7217 1998-06-10  Hrvoje Niksic  <hniksic@srce.hr>
7218
7219         * specifier.el (let-specifier): Tiny docfixes.
7220
7221 1998-06-12  Andy Piper  <andyp@parallax.co.uk>
7222
7223         * msw-mouse.el: set selection-pointer-glyph to Normal.
7224
7225 1998-06-09  Per Abrahamsen  <abraham@dina.kvl.dk>
7226
7227         * wid-edit.el (widget-specify-secret): New function.
7228         (widget-after-change): Use it.
7229         (widget-specify-field): Use it.
7230
7231 1998-06-08  Hrvoje Niksic  <hniksic@srce.hr>
7232
7233         * mouse.el (drag-window-divider): Use `(not done)' instead of
7234         `doit'; reuse result of `window-pixel-edges'.
7235
7236         * modeline.el (drag-modeline-event-lag): Rename to
7237         drag-divider-event-lag.
7238
7239 1998-06-07  Hrvoje Niksic  <hniksic@srce.hr>
7240
7241         * specifier.el (let-specifier): Rewritten not to generate needless
7242         `let's; clarified documentation; support TAG-SET and HOW-TO-ADD
7243         arguments.
7244
7245 1998-05-28  Hrvoje Niksic  <hniksic@srce.hr>
7246
7247         * minibuf.el (read-file-name-1): Setup buffer-local value of
7248         `completion-ignore-case' in completions buffer under Windows.
7249
7250 1998-06-06  Kirill M. Katsnelson  <kkm@kis.ru>
7251
7252         * about.el (about-maintainer-glyph): Fix support for not
7253         compressed images.
7254
7255 1998-06-04  Kirill M. Katsnelson  <kkm@kis.ru>
7256
7257         * cmdloop.el (cancel-mode-internal): Defined this do-nothing function.
7258
7259         * mouse.el (mouse-track): Cancel selection if misc-user event with
7260         `cancel-mode-internal' function is fetched.
7261
7262 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
7263
7264         * files.el (save-some-buffers-1): Fixed return value.
7265
7266 1998-06-01  Oliver Graf <ograf@fga.de>
7267
7268         * dragdrop.el: added experimental
7269
7270 1998-05-26  Stephen J. Turnbull  <turnbull@sk.tsukuba.ac.jp>
7271
7272         * startup.el (after-init-hook, init-file-user,
7273         user-init-directory, load-user-init-file):  Purge references
7274         to "~/.xemacs/init.el" from docstrings.
7275
7276         (load-user-init-file) Use paths-construct-path to construct
7277         paths to user init files.  Go directly to ~/.emacs, do not
7278         search ~/.xemacs/, do not load `default-custom-file'.
7279
7280 1998-06-03  Hrvoje Niksic  <hniksic@srce.hr>
7281
7282         * files.el (interpreter-mode-alist): Catch wish and tclsh before
7283         general *sh.
7284         (inhibit-first-line-modes-regexps): Added `.tar.gz'.
7285
7286 1998-06-03  Andy Piper  <andyp@parallax.co.uk>
7287
7288         * menubar-items.el (default-menubar): add Update Packages to customize
7289         menu.
7290
7291 1998-06-02  Andy Piper  <andyp@parallax.co.uk>
7292
7293         * faces.el: use toolbar face as a fallback for toolbar properties
7294         in xpm-color-symbols instead of default.
7295
7296         * msw-faces.el: rename 3d-object -> gui-element face.
7297
7298 1998-06-06  SL Baur  <steve@altair.xemacs.org>
7299
7300         * startup.el (xemacs-startup-logo-function): New variable.
7301         (startup-splash-frame): Use it.
7302
7303 1998-06-02  Hrvoje Niksic  <hniksic@srce.hr>
7304
7305         * files.el (save-some-buffers): Would wait 1 second.
7306         (save-some-buffers-1): Delete other windows here instead of in
7307         `save-some-buffers'.
7308         (save-some-buffers): Force redisplay only if windows were deleted.
7309
7310 1998-06-02  Didier Verna  <didier@xemacs.org>
7311
7312         * cus-face.el (custom-face-attributes): generalized the use of
7313         toggle buttons for boolean attributes.
7314         Re-ordered the items a bit.
7315
7316 1998-06-01  SL Baur  <steve@altair.xemacs.org>
7317
7318         * sound.el (default-sound-directory): Use `locate-data-directory'
7319         to find the sounds directory.
7320
7321 1998-05-29  Andy Piper  <andyp@parallax.co.uk>
7322
7323         * sound.el: default sound-ext to .wav under mswindows, .au
7324         otherwise. load-default sounds without extensions.
7325
7326 1998-05-27  Bjrn Torkelsson  <torkel@hpc2n.umu.se>
7327
7328         * menubar-items.el (default-menubar): Dim out "Submit Bug Report"
7329         if send-pr is not bound.
7330
7331 1998-06-01  Andy Piper  <andyp@parallax.co.uk>
7332
7333         * files.el: grok idl files in auto-mode-alist.
7334 1998-06-01  Jeff Miller  <jmiller@smart.net>
7335
7336         * minibuf.el (exact-minibuffer-completion-p): check for nil before
7337         calling `upcase'.
7338
7339 1998-05-30  Andy Piper  <andyp@parallax.co.uk>
7340
7341         * msw-glyphs.el: add xbm to the list of image types supported.
7342
7343 1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>
7344
7345         * msw-init.el (init-post-mswindows-win): Load InfoDock toolbar
7346         instead of XEmacs one when dumping InfoDock.
7347
7348 1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>
7349
7350         * obsolete.el (has-modeline-p): Added obsolete alias `has-modeline-p'
7351         for `modeline-visible-p'
7352
7353         * winnt.el (nt-quote-process-args): Fix for duplicating argv[0].
7354
7355 1998-05-29  Andy Piper  <andyp@parallax.co.uk>
7356
7357         * msw-select.el (mswindows-cut-copy-clear-clipboard): deleted
7358         since it's not used anymore. doc string fixes.
7359
7360         * package-get.el (package-get-file-installed-p): new function. use
7361         instead of file-installed-p which is in an external package.
7362
7363 1998-05-28  Oliver Graf <ograf@fga.de>
7364
7365         * dragdrop.el (dragdrop-drop-url-default): dropped pop-to-buffer in
7366         favor of select-window/switch-to-buffer
7367
7368 Wed May 27, 1998  Darryl Okahata  <darrylo@sr.hp.com>
7369
7370         * startup.el: changed (getenv "HOME") to (user-home-directory)
7371
7372 1998-05-25  Oliver Graf <ograf@fga.de>
7373
7374         * frame.el (cde-start-drag) moved to dragdrop.el
7375         (offix-start-drag-region) moved to dragdrop.el
7376         (offix-start-drag) moved to dragdrop.el
7377         * dragdrop.el (cde-start-drag) moved from frame.el
7378         (offix-start-drag-region) moved from frame.el
7379         (offix-start-drag) moved from frame.el
7380         (cde-start-drag-region) cde drag regions
7381         * mouse.el (mouse-drag-or-yank) will now call cde-start-drag-region
7382
7383 1998-05-26  Oliver Graf <ograf@fga.de>
7384
7385         * dragdrop.el: created dragdrop-drag prototypes
7386         (cde-start-drag-region) fixed typo
7387
7388 1998-05-28  SL Baur  <steve@altair.xemacs.org>
7389
7390         * simple.el (after-init-hook): Remove reader macro.
7391
7392         * packages.el (packages-hardcoded-lisp): Get rid of reader
7393         macros.  Update DOC string.
7394
7395 1998-05-25  Hrvoje Niksic  <hniksic@srce.hr>
7396
7397         * mouse.el (drag-window-divider): Ditto.
7398
7399         * modeline.el (mouse-drag-modeline): Use it.
7400
7401         * lisp-mode.el (let-specifier): Specify indentation.
7402
7403         * specifier.el (let-specifier): Renamed from
7404         `with-specifier-instance'.
7405
7406 1998-05-27  Andy Piper  <andyp@parallax.co.uk>
7407
7408         * x-faces.el:
7409         * faces.el: move definition of xpm-color-symbols from x-faces.el
7410         to faces. Predicate x-get-resource on the presence of x.
7411
7412         * msw-faces.el: set 3d-object face rather than modeline. Specify
7413         faces as specfier defaults.
7414
7415         * package-get.el: don't use package-admin-add-single-file-package.
7416
7417 1998-05-25  Hrvoje Niksic  <hniksic@srce.hr>
7418
7419         * toolbar-items.el: Fixup tooltips.
7420         (toolbar-gnus): Don't use obsolete variable
7421         toolbar-news-frame-properties.
7422         (toolbar-news-reader): Default to `gnus' instead of
7423         `not-configured'.
7424
7425         * files.el (auto-mode-alist): Correctly recognize `.emacs' under
7426         Windows.
7427
7428 1998-05-25  Andy Piper  <andyp@parallax.co.uk>
7429
7430         * package-get.el: rename -installedp -> -installed-p.
7431
7432 1998-05-23  Kirill M. Katsnelson  <kkm@kis.ru>
7433
7434         * glyphs.el (init-glyphs): Created `border-glyph' face, with no
7435         attributes, and assinged it to continuation, truncation and
7436         hscroll glyphs.
7437
7438         * msw-glyphs.el: Assigned WinDings font to `border-glyph' face,
7439         and made continuation, truncation and hscroll glyphs arrow
7440         characters out of that font.
7441
7442 1998-05-22  Hrvoje Niksic  <hniksic@srce.hr>
7443
7444         * minibuf.el (minibuffer-electric-separator): Play nicely with
7445         directory-sep-char being \.
7446         (minibuffer-electric-tilde): Ditto.
7447         (read-file-name-map): Ditto.
7448
7449 1998-05-22  Hrvoje Niksic  <hniksic@srce.hr>
7450
7451         * mouse.el (default-mouse-track-maybe-own-selection): Pause only
7452         on X devices.
7453         (default-mouse-track-deal-with-down-event): Avoid
7454         `x-disown-selection'; use `disown-selection' instead.
7455
7456 1998-05-21  Andy Piper  <andyp@parallax.co.uk>
7457
7458         * select.el:
7459         * x-select.el: selection cleanup. (x-cut-copy-clear-internal)
7460         moved to (cut-copy-clear-internal) in select.el. Ditto for
7461         (x-delete-primary-selection) (x-kill-primary-selection)
7462         (x-copy-primary-selection).
7463         (own-clipboard): new function.
7464
7465         * msw-select.el: use the new kill/delete/copy/cut-copy-clear
7466         functions in select.el. remove old ones.
7467         (mswindows-own-clipboard): new function.
7468
7469 1998-05-21  Andy Piper  <andyp@parallax.co.uk>
7470
7471         * gnuserv.el: allow connections from mswindows type devices.
7472
7473 1998-05-20  Andy Piper  <andyp@parallax.co.uk>
7474
7475         * msw-glyphs.el: change image type used from cursor to resource.
7476
7477 1998-05-20  Kirill M. Katsnelson  <kkm@kis.ru>
7478
7479         * x-scrollbar.el (x-init-scrollbar-from-resources): Added support
7480         for {top,bottom}-{left,right} values in addition to
7481         {top,bottom}_{left,right}.
7482         Use x-get-resource instead of x-get-resource-and-bogosity-check.
7483
7484 1998-05-20  Hrvoje Niksic  <hniksic@srce.hr>
7485
7486         * cl-macs.el (specifier-instance): Undefine its setf method.
7487
7488         * specifier.el (with-specifier-instance): Added docstring.
7489
7490         * mouse.el (drag-window-divider): Ditto.
7491
7492         * modeline.el (mouse-drag-modeline): Use it.
7493
7494         * lisp-mode.el (with-specifier-instance): Define its indentation
7495         level.
7496
7497         * specifier.el (with-specifier-instance): New macro.
7498
7499 1998-05-19  Andy Piper  <andyp@parallax.co.uk>
7500
7501         * package-get.el (package-get-create-custom): new function to
7502         auto-generate package-get-custom.el from package-get-base.el.
7503         * (package-get-ever-installedp): new function.
7504         * (package-get-custom): new function to get all packages specified
7505         by customize.
7506
7507 1998-05-19  Hrvoje Niksic  <hniksic@srce.hr>
7508
7509         * cus-edit.el (custom-file): Revert to `~/.emacs'.
7510
7511 1998-05-23  SL Baur  <steve@altair.xemacs.org>
7512
7513         * cl-extra.el: Reverse previous float change.
7514
7515 1998-05-17  Andy Piper  <andyp@parallax.co.uk>
7516
7517         * x-faces.el:
7518         * faces.el (try-font-name): moved from x-faces.el since it is
7519         required by w3 under mswindows as well X.
7520
7521 1998-05-18  Kirill M. Katsnelson  <kkm@kis.ru>
7522
7523         * winnt.el: Removed evil (setq completion-ignore-case t)
7524         clause, one more overlookef fsfism.
7525         (nt-quote-args-functions-alist): End sentences with double space.
7526
7527 1998-05-18  Kirill M. Katsnelson  <kkm@kis.ru>
7528
7529         * window-xemacs.el (push-window-configuration): Remove kludgery of
7530         recaching default-toolbar specifier.
7531         (pop-window-configuration): Ditto.
7532         (unpop-window-configuration): Ditto.
7533
7534 1998-05-16  Hrvoje Niksic  <hniksic@srce.hr>
7535
7536         * modeline.el (modeline-minor-mode-menu): Don't use :menu-tag.
7537
7538 1998-05-17  Kirill M. Katsnelson  <kkm@kis.ru>
7539
7540         * winnt.el (nt-quote-args-verbatim): Added function.
7541         (nt-quote-args-prefix-quote): Added function.
7542         (nt-quote-args-backslash-quote): Added function.
7543         (nt-quote-args-double-quote): Added function.
7544         (nt-quote-args-functions-alist): New variable.
7545         (nt-quote-process-args): Added function. This is the main quoting
7546         work horse called from process-nt.c
7547
7548 1998-05-16  Kirill M. Katsnelson  <kkm@kis.ru>
7549
7550         * winnt.el: Removed duplicate definitions for backspace,
7551         delete, M-backspace and C-M-backspace.
7552         (file-name-buffer-file-type-alist): Removed this variable.
7553         (find-buffer-file-type): Removed function.
7554         (find-file-binary):  Removed function.
7555         (find-file-text): Removed function.
7556         (find-file-not-found-set-buffer-file-type): Removed function.
7557         (save-to-unix-hook): Removed function.
7558         (revert-from-unix-hook): Removed function.
7559         (using-unix-filesystems): Removed function.
7560         (original-make-auto-save-file-name): DEFSUBR to avoid doc snarf
7561         warning.
7562         (x-set-selection): Removed function.
7563         (x-get-selection): Removed function.
7564         Removed commented FSFisms.
7565         Replaced copyright notice (this file is not part of GNU Emacs).
7566         (nt-shell-mode-hook): Moved here from a lambda expression. Added
7567         comint-process-echoes setting to t.
7568
7569 1998-05-17  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
7570
7571         * packages.el (packages-no-package-hierarchy-regexp): Introduced
7572         and used following the interface change of
7573         `paths-find-recursive-path'.
7574
7575         * find-paths.el (paths-find-recursive-path): Exclusion is now by a
7576         regexp instead of a list of base names.
7577         (paths-version-control-filename-regexp):
7578         (paths-lisp-filename-regexp): (paths-no-lisp-directory-regexp):
7579         Introduced and used following the interface change of
7580         `paths-find-recursive-path'.
7581
7582 1998-05-16  Hrvoje Niksic  <hniksic@srce.hr>
7583
7584         * simple.el (delete-forward-p): Make it a defun; do X garbage only
7585         on X devices, rather than on all non-TTY devices.
7586
7587 1998-05-16  Kirill M. Katsnelson  <kkm@kis.ru>
7588
7589         * msw-mouse.el: New file. Sets up cursor shapes for Windows.
7590
7591         * dumped-lisp.el (preloaded-file-list): Added msw-mouse.el
7592
7593 1998-05-17  Adrian Aichner  <adrian@xemacs.org>
7594
7595         * itimer.el (activate-itimer): Fixed usage of integers
7596         as argument to `concat'.
7597
7598 1998-05-17  Glynn Clements  <glynn@sensei.co.uk>
7599
7600         * itimer.el (start-itimer): replace the use of `concat' with
7601         `format'
7602
7603 1998-05-16  SL Baur  <steve@altair.xemacs.org>
7604
7605         * mode-motion.el (mode-motion-hook): Clarify docstring.
7606         From Bob Weiner <weiner@altrasoft.com>
7607
7608         * loadhist.el (symbol-file): Supply prompt string when used
7609         interactively.
7610         From Bob Weiner <weiner@altrasoft.com>
7611
7612 1998-05-16  Hrvoje Niksic  <hniksic@srce.hr>
7613
7614         * loadup.el (really-early-error-handler): Ditto.
7615
7616         * update-elc.el: Ditto.
7617
7618         * setup-paths.el (paths-construct-exec-path): Ditto.
7619
7620         * make-docfile.el: Ditto.
7621
7622         * find-paths.el (paths-decode-directory-path): Use split-path
7623         instead of decode-path.
7624
7625         * files.el (parse-colon-path): Update docstring reference.
7626
7627 1998-05-15  Jonathan Harris  <jhar@tardis.ed.ac.uk>
7628
7629         * msw-init.el:
7630         * x-init.el:
7631         Bind cut'n'paste keys to non window-system specific functions.
7632
7633         * msw-select.el: New function mswindows-clear-clipboard.
7634         mswindows-cut-copy-clipboard extended to handle clearing of the
7635         selection and renamed to mswindows-cut-copy-clear-clipboard.
7636
7637         * select.el: on mswindows devices delete-primary-selection
7638         calls mswindows-clear-clipboard.
7639
7640 1998-05-15  Hrvoje Niksic  <hniksic@srce.hr>
7641
7642         * simple.el (quoted-insert): Inhibit quit when using read-char.
7643
7644         * cmdloop.el (read-char): Don't inhibit quit.
7645         (read-char-exclusive): Ditto.
7646         (read-char): Signal quit if quit-char was pressed.
7647         (read-char-exclusive): Ditto.
7648         (read-quoted-char): Return a character, not integer.
7649
7650         * menubar-items.el (default-popup-menu): Use Andy's generic
7651         selection code.
7652         (default-popup-menu): Fix code.
7653
7654 1998-05-14  Oliver Graf <ograf@fga.de>
7655
7656         * dragdrop.el (dragdrop-function-widget): this time it's done
7657
7658 1998-05-13  Oliver Graf <ograf@fga.de>
7659
7660         * dumped-lisp.el: dragdrop.el now based on dragdrop-api feature
7661
7662 1998-05-15  Kirill M. Katsnelson  <kkm@kis.ru>
7663
7664         * device.el (device-pixel-width):
7665         (device-pixel-height):
7666         (device-mm-width):
7667         (device-mm-height):
7668         (device-bitplanes):
7669         (device-color-cells): Swapped parameters to device-system-metric
7670         according to the interface change.
7671
7672 1998-05-14  Kirill M. Katsnelson  <kkm@kis.ru>
7673
7674         * mouse.el (default-mouse-motion-handler): Use new name of the
7675         function event-over-vertical-divider-p.
7676         Do not set E-W arrow cursor over the divider if
7677         vertical-divider-draggable-p is nil in the window.
7678         ([top-level]): Use new name for the variable
7679         vertical-divider-map.
7680         (drag-window-divider): Respect vertical-divider-draggable-p.
7681         Variable name typo fixes.
7682
7683 1998-05-14  Hrvoje Niksic  <hniksic@srce.hr>
7684
7685         * keymap.el (kbd): Define here; handle string constants and
7686         others...
7687
7688 1998-05-15  Christian Nyb <chr@mediascience.no>
7689
7690         * simple.el (zap-up-to-char): New function.  Behaves like `zap-to-char'
7691         in Emacs 18.
7692
7693 1998-05-13  Didier Verna  <didier@xemacs.org>
7694
7695         * mouse.el (drag-window-divider): give the vertical divider a
7696         pressed look when dragging it.
7697
7698 1998-05-13  Andy Piper  <andyp@parallax.co.uk>
7699
7700         * faces.el: predicate some more face operations on x or mswindows
7701         not just x.
7702
7703         * modeline.el: enable modeline coloring for mswindows.
7704
7705 1998-05-13  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
7706
7707         * minibuf.el (minibuffer-default): Added variable; compatible with
7708         FSF Emacs.
7709         (next-history-element): Used `minibuffer-default'.
7710
7711 1998-05-12  Oliver Graf <ograf@fga.de>
7712
7713         * dragdrop.el (dragdrop-function-widget): button and mods ok
7714         arguments still look a bit strange
7715         (dragdrop-compare-mods) created
7716         (dragdrop-drop-do-functions) correctly checks for buttons and
7717         modifiers
7718
7719 1998-05-14  Hrvoje Niksic  <hniksic@srce.hr>
7720
7721         * setup-paths.el (paths-default-info-directories): Replace
7722         path-separator with directory-sep-char.
7723
7724         * files.el (path-separator): Don't define it here.
7725
7726 1998-05-14  Hrvoje Niksic  <hniksic@srce.hr>
7727
7728         * update-elc.el: Ditto.
7729
7730         * setup-paths.el (paths-construct-exec-path): Ditto.
7731
7732         * make-docfile.el: Ditto.
7733
7734         * loadup.el (really-early-error-handler): Ditto.
7735
7736         * find-paths.el (paths-decode-directory-path): Use decode-path
7737         instead of decode-path-internal.
7738
7739         * files.el (parse-colon-path): Update docstring.
7740
7741 1998-05-13  Hrvoje Niksic  <hniksic@srce.hr>
7742
7743         * subr.el (get-buffer-window-list): Make BUFFER optional.
7744
7745         * window-xemacs.el (windows-of-buffer): Defalias to
7746         get-buffer-window-list.
7747
7748 1998-05-12  Hrvoje Niksic  <hniksic@srce.hr>
7749
7750         * disass.el: Fix maintainer keyword.
7751
7752         * bytecomp.el (byte-compile-and-load-file): Autoload.
7753         (byte-compile-buffer): Ditto.
7754
7755         * lisp-mode.el (eval-last-sexp): Skip ` in `variable' so that the
7756         value is returned, not the name.
7757         (lisp-imenu-generic-expression): Enable it.
7758         (lisp-mode-variables): Ditto.
7759         (lisp-indent-offset): Change defconst to defvar.
7760         (lisp-indent-function): Ditto.
7761         (lisp-body-indent): Ditto.
7762
7763 1998-05-12  Hrvoje Niksic  <hniksic@srce.hr>
7764
7765         * modeline.el: Use zap-last-kbd-macro-event.
7766
7767         * lisp-mode.el (eval-interactive): If eval-interactive-verbose is
7768         nil, don't attempt to do anything with messages.
7769         (eval-last-sexp): Use `letf' for clarity.
7770
7771 1998-05-12  Hrvoje Niksic  <hniksic@srce.hr>
7772
7773         * startup.el: It's still `.emacs', not yet `.xemacs/init.el'.
7774
7775 1998-05-11  Martin Buchholz  <martin@xemacs.org>
7776
7777         * buff-menu.el:
7778         * lisp-mode.el:
7779         * obsolete.el:
7780         Change empty docstrings into no doc strings at all.
7781         Fix bogus FSF-format docstrings.
7782         * etags.el: Fix docstring.
7783
7784 1998-05-11  Jan Vroonhof  <vroonhof@math.ethz.ch>
7785
7786         * package-get.el (package-get): Use internal md5
7787
7788 1998-05-13  SL Baur  <steve@altair.xemacs.org>
7789
7790         * about.el (about-xemacs): Correct abuse of concat.
7791
7792 1998-05-11  SL Baur  <steve@altair.xemacs.org>
7793
7794         * info.el (Info-mode): Use easymenu.
7795
7796 1998-05-12  Hrvoje Niksic  <hniksic@srce.hr>
7797
7798         * apropos.el (apropos): Don't use concat with integers.
7799
7800         * cmdloop.el (describe-last-error): Handle the case when no error
7801         was seen gracefully.
7802
7803         * apropos.el (apropos-print): Use with-displaying-help-buffer as
7804         defun.
7805         (apropos-describe-plist): Ditto.
7806
7807         * help.el (with-displaying-help-buffer): Revert to a defun.
7808         (describe-key): Use it as defun.
7809         (describe-mode): Ditto.
7810         (describe-bindings): Ditto.
7811         (describe-prefix-bindings): Ditto.
7812         (describe-installation): Ditto.
7813         (view-lossage): Ditto.
7814         (describe-function): Ditto.
7815         (describe-variable): Ditto.
7816         (describe-syntax): Ditto.
7817
7818 1998-05-11  Oliver Graf <ograf@fga.de>
7819
7820         * dragdrop.el: changed order of require/provide
7821         (dragdrop-drop-mime-default) changed to new calling conventions
7822         (dragdrop-drop-do-functions) changed to new calling conventions
7823         (dragdrop-function-widget) this one needs more work...
7824
7825 1998-05-10  Oliver Graf <ograf@fga.de>
7826
7827         * about.el: another small change in my entry
7828         * dragdrop.el (dragdrop-drop-log-function): logging added
7829         plus customizations
7830         changed interface to handler functions. now called with event
7831         and object
7832
7833 1998-05-12  Kirill M. Katsnelson  <kkm@kis.ru>
7834
7835         * glyphs.el (divider-pointer-glyph): Declared new glyph,
7836         E-W arrow pointer displayed over draggable dividers.
7837
7838         * mouse.el (default-mouse-motion-handler): Show it when
7839         appropriate.
7840         (drag-window-divider): Added.
7841         ([top-level]): Initialized window-divider-map with a keymap
7842         binding the above function to left button down event.
7843
7844         * x-mouse.el (x-init-pointer-shape): Initialize
7845         divider-pointer-glyph from Cursor.dividerPointer, or use default
7846         E-W double arrow.
7847
7848 1998-04-30  Gunnar Evermann  <Gunnar.Evermann@nats.informatik.uni-hamburg.de>
7849
7850         * toolbar-items.el (toolbar-compile): respect should-use-dialog-box-p
7851
7852 1998-05-11  Hrvoje Niksic  <hniksic@srce.hr>
7853
7854         * simple.el (count-words-buffer): Don't query for buffer.
7855         (count-lines-buffer): Ditto.
7856
7857 1998-05-11  Jan Vroonhof <vroonhof@math.ethz.ch>
7858
7859         * help.el (where-is): add optional insert argument.
7860
7861 1998-05-11  Hrvoje Niksic  <hniksic@srce.hr>
7862
7863         * help.el (describe-key-briefly): New argument INSERT.
7864
7865         * simple.el (eval-expression): New optional argument; synch with
7866         FSF 20.3.
7867
7868         * keydefs.el (global-map): Add new register bindings.
7869
7870         * register.el: Synched with FSF 20.3.
7871
7872 1998-05-11  Jan Vroonhof <vroonhof@math.ethz.ch>
7873
7874         * window-xemacs.el (recenter): all arguments are optional.
7875
7876 1998-05-10  Kirill M. Katsnelson  <kkm@kis.ru>
7877
7878         * device.el: (device-pixel-width): Reflected name/parameters
7879         change to device-system-metric.
7880         (device-pixel-height): Ditto.
7881         (device-mm-width): Ditto.
7882         (device-mm-height): Ditto.
7883         (device-bitplanes): Ditto.
7884         (device-color-cells): Ditto.
7885
7886 1998-05-10  Hrvoje Niksic  <hniksic@srce.hr>
7887
7888         * cl-extra.el (cl-float-limits): Removed; move code to top-level.
7889
7890         * cl.el (most-positive-fixnum): Document.
7891         (most-negative-fixnum): Ditto.
7892
7893         * cus-dep.el: Updated comment.
7894
7895         * cus-load.el: Use most-positive-fixnum as the gc-inhibiting
7896         constant.
7897
7898         * cus-load.el (custom-put): Removed.
7899
7900         * files.el (after-find-file): Just resignal quit instead of
7901         signaling "canceled".
7902
7903 1998-05-10  Hrvoje Niksic  <hniksic@srce.hr>
7904
7905         * frame.el (other-frame): Use `focus-frame' instead of
7906         select-frame kludges.
7907
7908         * lisp-mode.el: Update lisp-indent-function for
7909         save-selected-frame and with-selected-frame.
7910
7911         * frame.el (save-selected-frame): New macro.
7912         (with-selected-frame): Ditto.
7913         (other-frame): Use `set-frame-focus'.
7914
7915 1998-05-06  Oliver Graf <ograf@fga.de>
7916
7917         * dragdrop.el (dragdrop-drop-dispatch): changed to new list concept
7918         (dragdrop-drop-url-default) default handler for URL drops created
7919         (dragdrop-drop-mime-default) default handler for MIME drops created
7920         (dragdrop-drop-functions) default custom for handling drops created
7921         (dragdrop-drop-do-functions) helper for drgadrop-drop-dispatch
7922
7923 1998-05-05  Jonathan Harris <jhar@tardis.ed.ac.uk>
7924
7925         * mouse.el: Removed redundant mouse-mswindows-drop function.
7926
7927 1998-05-05  Oliver Graf <ograf@fga.de>
7928
7929         * about.el: changed some text in my entry
7930         * dragdrop.el: added customs
7931
7932 1998-05-04  Oliver Graf <ograf@fga.de>
7933
7934         * mouse.el: killed global drop key bindings
7935         (mouse-offix-drop) removed
7936         * dragdrop.el: created
7937         * dumped-lisp.el: inclusion of dragdrop.el for window-systems
7938
7939 1998-05-09  Kirill M. Katsnelson  <kkm@kis.ru>
7940
7941         * x-scrollbar.el (x-init-scrollbar-from-resources): Initialize
7942         scrollbar-on-{left,top}-p from *scrollBarPlacement resources.
7943
7944         * x-misc.el (x-get-resource-and-maybe-bogosity-check): Removed
7945         obsolete comment.
7946
7947         * scrollbar.el (scrollbars-visible-p): Use new
7948         {vertical,horizontal}-scrollbar-visible-p specifiers.
7949
7950 1998-04-18  Kirill M. Katsnelson  <kkm@kis.ru>
7951
7952         * device.el (device-pixel-height):
7953         (device-pixel-width):
7954         (device-mm-width):
7955         (device-mm-height):
7956         (device-bitplanes):
7957         (device-color-cells): Moved these 6 functions from device.c; they
7958         all use single (device-system-metrics) call.
7959
7960 1998-05-09  SL Baur  <steve@altair.xemacs.org>
7961
7962         * dumped-lisp.el (preloaded-file-list): x-menubar.el and x-toolbar.el
7963         were renamed.
7964
7965         * menubar-items.el:
7966         * toolbar-items.el: Renamed from x-menubar/x-toolbar.
7967         Suggested by Hrvoje Niksic <hniksic@srce.hr>
7968
7969         * help.el (help-map): Remove Hyperbole keybinding logic.
7970         Suggested by: Michael Ernst <mernst@cs.washington.edu>
7971
7972 1998-05-08  SL Baur  <steve@altair.xemacs.org>
7973
7974         * x-menubar.el (default-menubar): Enable 'mail-user-agent' feature.
7975         From SAKIYAMA Nobuo <nobuo@db3.so-net.or.jp>
7976
7977 1998-05-07  Andy Piper  <andyp@parallax.co.uk>
7978
7979         * msw-glyphs.el: use nicer icon3 from the frame icon.
7980
7981 1998-05-07  SL Baur  <steve@altair.xemacs.org>
7982
7983         * version.el (emacs-version): Remove InfoDock conditionals.
7984
7985         * startup.el (startup-splash-frame): Change ID logo name.
7986
7987 1998-05-06  Hrvoje Niksic  <hniksic@srce.hr>
7988
7989         * files.el (after-find-file): If the user presses C-g on
7990         directory-creation prompt, kill the buffer.
7991
7992 1998-05-06  SL Baur  <steve@altair.xemacs.org>
7993
7994         * simple.el (count-words-region): Reverse previous change.
7995
7996 1998-05-05  Hrvoje Niksic  <hniksic@srce.hr>
7997
7998         * replace.el (query-replace): Just call perform-replace.
7999         (query-replace-regexp): Ditto.
8000         (perform-replace): Move region handling here.
8001         (perform-replace): Use the new arg to match-data.
8002
8003 1998-03-08  Kyle Jones  <kyle_jones@wonderworks.com>
8004
8005         * x-init.el: Install X specific display table that
8006           displays char 0240 as a space to avoid whatever it is
8007           that screws up display of that character code.
8008
8009 1998-05-03  Hrvoje Niksic  <hniksic@srce.hr>
8010
8011         * help.el (function-arglist): If no arguments are documented for a
8012         subr, print nothing rather than incorrect output.
8013
8014 1998-05-05  SL Baur  <steve@altair.xemacs.org>
8015
8016         * cmdloop.el (command-error): Update bail-out error message to use
8017         `emacs-program-name'.
8018
8019         * lib-complete.el: Remove reader macro cruft.
8020
8021         * dumped-lisp.el (preloaded-file-list): Phase I:  remove InfoDock
8022         cruft.
8023
8024         * simple.el (count-words-region): Drop interactive-p check on the
8025         message.
8026
8027 1998-05-04  Jonathan Harris <jhar@tardis.ed.ac.uk>
8028
8029         * font.el
8030         * msw-faces.el
8031         Correct spelling of mswindows-font-canonicalize-name.
8032
8033 1998-05-03 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
8034
8035         * ldap.el (ldap-host-parameters-alist): Replaced with
8036         `ldap-host-parameters-plist'
8037         (ldap-search): Adapt to previous change
8038
8039 1998-05-02  SL Baur  <steve@altair.xemacs.org>
8040
8041         * about.el (about-hackers): Update Bob Weiner bio.
8042         (about-maintainer-info): Ditto.
8043
8044 1998-05-02  Hrvoje Niksic  <hniksic@srce.hr>
8045
8046         * simple.el (display-warning-minimum-level): Docfix.
8047
8048 1998-04-04  Per Abrahamsen  <abraham@dina.kvl.dk>
8049
8050         * widget.el (:default-get): New keyword.
8051         * wid-edit.el (default, widget-default-default-get): Define it.
8052         (group, widget-group-default-get): Define it.
8053         (menu-choice, widget-choice-default-get): Define it.
8054         (widget-default-get): New function.
8055         (widget-choice-action): Call it.
8056         (widget-editable-list-entry-create): Call it.
8057
8058 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
8059
8060         * byte-optimize.el (byte-boolean-vars): Removed.
8061         (byte-optimize-lapcode): Use `built-in-variable-type' instead of
8062         lookup through `byte-boolean-vars'.
8063
8064 1998-05-01  Kirill M. Katsnelson  <kkm@kis.ru>
8065
8066         * x-scrollbar.el (x-init-scrollbar-from-resources): Stuff
8067         resource-provided values into ghost specs for scrollbar-height and
8068         scrollbar-width.
8069
8070 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
8071
8072         * byte-optimize.el: Don't attempt to optimize /=.
8073
8074         * bytecomp.el (byte-compile-one-ore-more-args): New function.
8075         (byte-compile-/=): Ditto.
8076
8077 1998-05-02  SL Baur  <steve@altair.xemacs.org>
8078
8079         * apropos.el: Use `with-displaying-help-buffer'.
8080         (apropos-print): Remove explicit mentions of "*Apropos*" buffer.
8081         Use `with-displaying-help-buffer'.
8082         (apropos-follow): Do not give special treatment to buffer cursor
8083         was in prior to a mouse click.
8084         (apropos-describe-plist): Use `with-displaying-help-buffer'.
8085         (apropos-print-doc): Set correct buffer for setting text
8086         properties.
8087
8088 1998-05-01  SL Baur  <steve@altair.xemacs.org>
8089
8090         * help.el (help-buffer-prefix-string): New variable.
8091         (help-buffer-name): Use it.
8092
8093         * modeline.el (modeline-minor-mode-menu): Alphabetize the minor
8094         mode menu.
8095
8096 1998-04-30  Greg Klanderman  <greg@alphatech.com>
8097
8098         * frame.el (other-frame): Work even when focus-follows-mouse is true.
8099
8100 1998-05-01  Hrvoje Niksic  <hniksic@srce.hr>
8101
8102         * files.el (find-file-noselect): Update docstring.
8103         (find-file-noselect): Signal an error if found an unreadable file.
8104         (file-chase-links): Save the match data.
8105         (normal-mode): Use `lwarn' and `error-message-string'.
8106         (interpreter-mode-alist): Change defconst to defvar.
8107         (inhibit-first-line-modes-regexps): Ditto.
8108         (inhibit-first-line-modes-regexps): Added .tgz.
8109         (inhibit-first-line-modes-suffixes): Change defconst to defvar.
8110         (change-major-mode-with-file-name): New user-option.
8111         (set-visited-file-name): Synched with FSF.
8112         (file-name-extension): New function, from FSF 20.3.
8113         (file-relative-name): Synched with FSF.
8114         (save-some-buffers): Support the C-r feature.
8115         (recover-session): Synched with FSF.
8116         (kill-some-buffers): Ditto.
8117         (set-auto-mode): New argument JUST-FROM-FILE-NAME.
8118
8119 1998-04-30  SL Baur  <steve@altair.xemacs.org>
8120
8121         * files.el (insert-file): Undo previous change and reenable use of
8122         format.el.
8123
8124 1998-04-30  Hrvoje Niksic  <hniksic@srce.hr>
8125
8126         * window-xemacs.el (recenter): Define.
8127
8128 1998-04-29  Andy Piper  <andyp@parallax.co.uk>
8129
8130         * font.el (mswindows-font-create-name)
8131         (mswindows-font-create-object): new functions for mswindows type
8132         fonts.
8133
8134         * msw-faces.el (mswindows-font-canicolize-name): fix so that
8135         strings are parsed as well as font objects.
8136
8137 1998-04-30  Hrvoje Niksic  <hniksic@srce.hr>
8138
8139         * modeline.el (defining-kbd-macro): Restore modeline indication of
8140         kbd-macro being recorded.
8141         (add-minor-mode): Simplify docstring.
8142         (modeline-minor-mode-menu): Remove stuff.
8143
8144 1998-04-29  Andy Piper  <andyp@parallax.co.uk>
8145
8146         * code-process.el (call-process): dynamically decide process
8147         coding type.
8148
8149 1998-04-29  Jim Radford  <radford@robby.caltech.edu>
8150
8151         * modeline.el: Add line-number-mode, column-number-mode to
8152         the modeline minor-mode menu.  Button2 on the line number does
8153         goto-line.
8154
8155 1998-04-29  Andy Piper  <andyp@parallax.co.uk>
8156
8157         * mouse.el: move x-selection-owner-p type things to
8158         selection-owner-p.
8159
8160         * msw-init.el: copy zmacs stuff from x-init.el
8161
8162         * msw-select.el (mswindows-own-selection)
8163         (mswindows-disown-selection) (mswindows-selection-owner-p): new
8164         functions. Very simple minded implementation of selectio
8165         ownership.
8166
8167         * select.el (own-selection) (disown-selection)
8168         (activate-region-as-selection) (select-make-extent-for-selection)
8169         (valid-simple-selection-p): functions moved from x-select.el for
8170         generalized selection.
8171
8172         * x-select.el: see select.el changes.
8173
8174         * x-toolbar.el: use new selection functions.
8175
8176 1998-04-28  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8177
8178         * packages.el (packages-find-package-directories): Fixed bug that
8179         would pick up multiple site-package directories.
8180         (package-locations): Added "xemacs-packages" as a late package
8181         location.
8182
8183         * find-paths.el: Now uses `emacs-program-name' and
8184         `emacs-program-version'.
8185         Additions to enforce version-specific directories in
8186         `paths-find-version-directory'.
8187
8188 1998-04-29  SL Baur  <steve@altair.xemacs.org>
8189
8190         * default.el: Removed.
8191         * site-start.el: Removed.
8192
8193 1998-04-29  Didier Verna  <didier@xemacs.org>
8194
8195         * minibuf.el (minibuffer-history-minimum-string-length): Default
8196         to nil.
8197
8198 1998-04-28  SL Baur  <steve@altair.xemacs.org>
8199
8200         * find-paths.el (paths-program-name): Rename.
8201         (paths-emacs-root-p): Ditto.
8202         (paths-find-site-directory): Ditto.
8203
8204 1998-04-26  Karl M. Hegbloom  <karlheg@inetarena.com>
8205
8206         * lisp-mode.el (emacs-lisp-mode-popup-menu-1): Add menu entry for
8207         `emacs-lisp-byte-compile-and-load'.
8208
8209 1998-04-26  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8210
8211         * ldap.el (ldap-search): Fixed additional parameter passing to
8212         `ldap-open'
8213
8214 1998-04-27  Andy Piper  <andyp@parallax.co.uk>
8215
8216         * select.el (kill-primary-selection) (selection-owner-p)
8217         (copy-primary-selection) (yank-clipboard-selection)
8218         (selection-exists-p) (delete-primary-selection): new file and
8219         functions that do the right thing for the selected device.
8220
8221         * x-menubar.el: use generalised selection functions.
8222
8223         * dumped-lisp.el: dump select.el.
8224
8225 1998-04-27  SL Baur  <steve@altair.xemacs.org>
8226
8227         * find-paths.el (paths-progname): New variable.
8228         (paths-emacs-root-p): Use it.
8229         (paths-find-site-directory): Ditto.
8230
8231 1998-04-26  SL Baur  <steve@altair.xemacs.org>
8232
8233         * loadup.el ((member "dump" command-line-args)): Dump as
8234         `infodock' if InfoDock.
8235
8236 1998-04-25  SL Baur  <steve@altair.xemacs.org>
8237
8238         * find-paths.el (construct-emacs-version): Simplify, include
8239         program name in the return value.
8240         * (paths-find-version-directory): Use it.
8241
8242 1998-04-25  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8243
8244         * info.el (Info-parse-dir-entries): Fixed regexp
8245         (Info-build-dir-anew): Remove full suffix and capitalize info file
8246         name for files with no @direntry
8247         (Info-batch-rebuild-dir): New function
8248         (Info-suffixed-file): Check for regular files instead of simple
8249         file existence (could catch directories before)
8250
8251 1998-04-25  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8252
8253         * setup-paths.el, find-paths.el: Removed uses of `not' which
8254         temacs doesn't have.
8255
8256         * find-paths.el (paths-find-emacs-roots): Included exec-prefix
8257         into root searching.
8258
8259 1998-04-24  Martin Buchholz  <martin@xemacs.org>
8260
8261         * subr.el: Remove definition of `not'.
8262
8263 Sat Apr 24 1998  Andy Piper  <andyp@parallax.co.uk>
8264
8265         * msw-glyphs.el: enable graphics support.
8266
8267 1998-04-23  Didier Verna  <didier@xemacs.org>
8268
8269         * x-menubar.el (default-menubar): restored the line-number-mode
8270         option.
8271
8272         * misc doc string updates related to the options menu.
8273
8274 1998-04-24  SL Baur  <steve@altair.xemacs.org>
8275
8276         * setup-paths.el (paths-construct-load-path): Fix typo.
8277
8278 1998-04-23  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8279
8280         * x-menubar.el (default-menubar): font-menu-this-frame-only-p and
8281         font-menu-ignore-scaled-fonts don't have to be bound now; this
8282         gets us one step further towards making --no-autoloads work.
8283
8284         * startup.el (normal-top-level): Load auto-autoloads only if
8285         lisp-directory is non-nil.
8286
8287         * setup-paths.el (paths-construct-load-path): Made it robust
8288         against nil lisp-directory.
8289
8290         * startup.el (startup-setup-paths-warning): Added `lisp-directory'
8291         to the list of variables that cause a warning when nil.
8292
8293         * toolbar.el (init-toolbar-location): Now works even when there's
8294         no toolbar icon directory.
8295
8296 1998-04-23  Hrvoje Niksic  <hniksic@srce.hr>
8297
8298         * help.el (view-lossage): Recognize it.
8299
8300         * simple.el (log-message): Mark multiline messages.
8301
8302 1998-04-22  SL Baur  <steve@altair.xemacs.org>
8303
8304         * info.el (Info-exit): `toolbar-info-frame' doesn't necessarily exist.
8305
8306 1998-4-20  Stephen J. Turnbull  <turnbull@sk.tsukuba.ac.jp>
8307
8308         * package-get.el (package-get-all):  add `\n' separator to
8309         interactive specification so that both variables are read
8310
8311 1998-04-22  Didier Verna  <didier@xemacs.org>
8312
8313         * x-menubar.el: ported the options menu to Custom.
8314         Moved the "read only" toggle button to the buffers menu.
8315         Corrected some missing ;;;###autoload or defcustom.
8316
8317         * scrollbar.el (scrollbars-visible-p): defcustom wrapper around
8318         the scrollbar-visible specifier for options menu handling.
8319
8320         * toolbar.el (toolbar-visible-p)
8321                      (toolbar-captioned-p)
8322                      (default-toolbar-position): defcustom wrappers around
8323         the toolbar specifiers for options menu handling.
8324
8325         * frame.el (get-frame-for-buffer-default-instance-limit):
8326         defcustom it for options menu handling.
8327
8328         * font-lock.el (font-lock-mode): defcustom and autoload the variable
8329         font-lock-mode for options menu handling.
8330
8331         * cus-start.el: added Custom properties to overwrite-mode for
8332         options menu handling.
8333
8334 Wed Apr 22 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>
8335
8336         * about.el: shameless self-promotion.
8337
8338 1998-04-21  Hrvoje Niksic  <hniksic@srce.hr>
8339
8340         * simple.el (raw-append-message): Slightly optimize.
8341         (remove-message): Use `push' for clarity.
8342         (append-message): Ditto.
8343         (display-warning): Dito.
8344         (raw-append-message): Send the message to the appropriate device.
8345
8346 1998-04-22  SL Baur  <steve@altair.xemacs.org>
8347
8348         * auto-save.el (auto-save-cyclic-hash-14): De-ebolification.
8349         From Sean MacLennan <Sean.MacLennan@pika.ca>
8350
8351 1998-04-18  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8352
8353         * setup-paths.el: Changed `directory-sep-char' to
8354         `path-separator', following a change in GNU Emacs.
8355
8356 1998-04-19  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8357
8358         * info.el (Info-maybe-update-dir): Bug fix in `conservative' behaviour
8359         (Info-build-dir-anew): Add a final newline.
8360         (Info-build-dir-anew): Do not issue warning when rebuilding policy
8361         is `always'
8362         (Info-rebuild-dir): Ditto
8363
8364         * dumped-lisp.el (preloaded-file-list): Added ldap.el
8365
8366 1998-04-21  SL Baur  <steve@altair.xemacs.org>
8367
8368         * simple.el (count-words-buffer): Retain zmacs region.
8369         (count-words-region): Ditto.
8370         * simple.el: (what-line): Expanded line counts.
8371         (count-lines): New parameter to conditionalize whether collapsed
8372         lines get counted.
8373         From Bob Weiner <weiner@altrasoft.com>
8374
8375 1998-04-19  SL Baur  <steve@altair.xemacs.org>
8376
8377         * packages.el (package-locations): infodock-packages must override
8378         mule-packages and packages.
8379
8380 1998-04-19  Jonathan Harris <jhar@tardis.ed.a.uk>
8381
8382         * wid-edit.el:
8383         remove rude messages from widget-activation-widget-mapper
8384         and widget-activation-glyph-mapper
8385
8386 1998-04-17  Jonathan Harris <jhar@tardis.ed.ac.uk>
8387
8388         * toolbar.el: Remove (featurep 'x) test from
8389         toolbar-make-button-list
8390
8391 1998-04-17  Hrvoje Niksic  <hniksic@srce.hr>
8392
8393         * gnuserv.el (gnuserv-edit): Switch to the next gnuserv buffer
8394         only if in the same frame.
8395
8396 1998-04-17  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8397
8398         * packages.el (package-locations): Added site-packages hierarchy.
8399
8400         * setup-paths.el (paths-default-info-directories): Introduced and
8401         used.
8402
8403         * packages.el, setup-paths.el: Set various path searching depths
8404         to 1.
8405
8406         * packages.el (packages-hierarchy-depth):
8407         (packages-load-path-depth): Introduced and used.
8408
8409         * setup-paths.el (paths-load-path-depth): Introduced and used.
8410
8411         * find-paths.el (paths-find-recursive-path): Added max-depth
8412         parameter.
8413
8414 1998-04-15  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8415
8416         * setup-paths.el (paths-construct-info-path): Removed
8417         dependency on behavior of (file-name-as-directory "").
8418
8419 1998-04-09  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8420
8421         * ldap.el (ldap-search): Adapt to the new low-level API using ldap
8422         lisp objects
8423
8424 1998-04-14  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8425
8426         * dump-paths.el, startup.el: Added handling for --debug-paths.
8427
8428 1998-04-15  William M. Perry  <wmperry@aventail.com>
8429
8430         * wid-edit.el: We cannot just set the help-echo or balloon-help
8431           properties for an extent based on the :help-echo widget
8432           property, since help-echo and balloon-help cause an EXTENT to
8433           get passed in, where :help-echo functions are expecting a WIDGET
8434
8435 1998-04-15  Kirill M. Katsnelson  <kkm@kis.ru>
8436
8437         * scrollbar.el (init-scrollbar-from-resources): Call
8438         mswindows-init-scrollbar-metrics when appropriate.
8439
8440 Thu Apr 16 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>
8441
8442         * dumped-lisp.el: dump x-toolbar for window system
8443
8444         * msw-init.el (init-post-mswindows-win): enable toolbars if we
8445         have support and xpm.
8446
8447 1998-04-16  SL Baur  <steve@altair.xemacs.org>
8448
8449         * files.el (toggle-read-only): Fix docstring.
8450         From Didier Verna <didier@xemacs.org>
8451
8452 1998-04-14  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8453
8454         * startup.el (normal-top-level): Load autoload-file-name without
8455         specifying an extension---some people only auto-autoload.el.gz.
8456
8457 1998-04-06  Hrvoje Niksic  <hniksic@srce.hr>
8458
8459         * files.el (backup-enable-predicate): Don't bomb on NAME being
8460         nil.
8461
8462 1998-04-13  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8463
8464         * find-paths.el, packages.el: Now prefers configure'd paths.
8465         This shouldn't cause any of the originally anticipated problems as
8466         the current paths architecture will not define the various
8467         configure-xxx variables if they're not specified on the configure
8468         command line.
8469
8470         * find-paths.el, setup-paths.el, packages.el: Removed all
8471         mentionings of "/" as a path separator.
8472         Used paths-construct-path throughout.
8473
8474         * find-paths.el (paths-construct-path): Created to assemble paths
8475         from directory components.
8476
8477         * setup-paths.el, packages.el: Used paths-decode-directory-path
8478         instead of decode-path-internal.
8479
8480         * find-paths.el: Removed unused (and bogus) paths-find-emacs-path
8481         and associates.
8482         (paths-decode-directory-path) Created.
8483
8484         * setup-paths.el: Changed configure-exec-path to
8485         configure-exec-directory.
8486
8487 1998-04-11  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8488
8489         * packages.el (packages-find-packages): Fixed decoding of
8490         EMACSPACKAGEPATH.
8491
8492         * startup.el: -no-packages -> -no-early-packages.
8493
8494         (packages-load-package-lisps): Fixed loading of auto-autoload
8495         files.
8496
8497         * startup.el (normal-top-level): Fixed loading of core
8498         auto-autoload.
8499
8500         * obsolete.el: Un-obsoleted site-directory.  Sigh.
8501
8502         * startup.el, packages.el, dump-paths.el: Added proper settings
8503         for site-directory and lisp-directory variables.
8504
8505         * startup.el, loadup.el: Renamed inhibit-update-autoloads to
8506         inhibit-package-autoloads and fixed handling of it.
8507
8508         * startup.el, packages.el, dump-paths.el, loadup.el: Fixed
8509         handling of former inhibit-package-init, now
8510         inhibit-early-packages, to make -vanilla etc. work.
8511
8512 1998-04-10  Kirill M. Katsnelson  <kkm@kis.ru>
8513
8514         * code-process.el (start-process): Fallback to 'undecided instead
8515         of 'binary for process input coding stream.
8516
8517         * process.el (start-process): Docstring fix.
8518
8519 1998-04-09  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8520
8521         * info.el (Info-insert-dir): Do not insert temporary dir files
8522         in Info-dir-file-attributes
8523         (Info-build-dir-anew): Ensure temporary buffer is not read-only
8524         (Info-rebuild-dir): Ditto.
8525
8526 1998-04-09  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8527
8528         * obsolete.el: Added obsoleteness declarations for
8529         `site-directory' and `Info-default-directory-list'.
8530
8531 1998-04-08  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8532
8533         * find-paths.el (paths-find-emacs-root): Only look at the
8534         executable at the end of the symlink chain for determining the
8535         Emacs root.
8536
8537 1998-04-07  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8538
8539         * setup-paths.el (paths-construct-info-path): Changed construction
8540         to cater to gone default in configure.
8541
8542         * find-paths.el (paths-uniq-append): Added.
8543
8544         * packages.el: Rewritten package path construction once again.
8545
8546         * dump-paths.el, startup.el: Removed package-path as a global
8547         variable.
8548
8549         * package-admin.el (package-admin-add-single-file-package):
8550         (package-admin-add-binary-package): Changed package-path to
8551         late-packages.
8552
8553         * packages.el (packages-split-path): Split path at "/" rather than
8554         nil according to change in emacs.c.
8555
8556 1998-04-06  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8557
8558         * setup-paths.el (paths-construct-info-path): Changed info path
8559         order so that directories come out right.
8560         (paths-find-lock-directory): Fixed bug: It used to think
8561         configure-lock-directory is a path.
8562
8563 1998-04-06  Jeff Miller <jmiller@smart.net>
8564
8565         * x-toolbar.el:  Added toolbar-vector-xxxxxx defvars.  Modified
8566         initial-toolbar-spec to use new toolbar-vector-xxxxxx defvars.  This
8567         eases the use of toolbar-add/kill-item functions.
8568
8569 1998-04-07  Kirill M. Katsnelson  <kkm@kis.ru>
8570
8571         * code-files.el (file-coding-system-alist): Commented out
8572         loaddefs.el magical treatment.
8573
8574 1998-04-06  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8575
8576         * info.el (Info-rebuild-outdated-dir): Added new option
8577         `conservative' and made it the default
8578         (Info-rebuild-dir): Appropriately parse multi-line description
8579         strings, and multi-section dir files. Issue warning when dir
8580         is rebuilt as temporary
8581         (Info-build-dir-anew): Issue warning when dir is built as
8582         temporary
8583
8584 1998-04-04  Kirill M. Katsnelson  <kkm@kis.ru>
8585
8586         * list-mode.el (list-mode-map): Bind highlight motion commands to
8587         standard keys left, right, C-b and C-f.
8588
8589 1998-03-29  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
8590
8591         * files.el (auto-mode-alist): allow .sc for Scheme->C
8592
8593 1998-04-06  SL Baur  <steve@altair.xemacs.org>
8594
8595         * loadup.el (pureload): Don't quote (garbage-collect).
8596
8597 1998-04-04  SL Baur  <steve@altair.xemacs.org>
8598
8599         * package-get-base.el: Updated.
8600
8601 1998-04-04  Hrvoje Niksic  <hniksic@srce.hr>
8602
8603         * isearch-mode.el (isearch-just-started): New variable.
8604         (isearch-mode): Set it.
8605         (isearch-repeat): Advance one character forward only if the search
8606         was successful, and was not just started.
8607         (isearch-repeat): Clear isearch-just-started.
8608
8609 1998-04-02  SL Baur  <steve@altair.xemacs.org>
8610
8611         * finder.el (finder-compile-keywords): Don't eval new finder-inf
8612         if running -batch.
8613
8614 1998-03-26  Hrvoje Niksic  <hniksic@srce.hr>
8615
8616         * subr.el (listify-key-sequence): Removed.
8617
8618 1998-03-31  Hrvoje Niksic  <hniksic@srce.hr>
8619
8620         * bytecomp.el (byte-compile-print-gensym): New option.
8621         (byte-compile-output-file-form): Use it.
8622         (byte-compile-output-docform): Ditto.
8623         (byte-compile-compiled-obj-to-list): Ditto.
8624
8625 Sun Mar 29 1998  Andy Piper  <andyp@parallax.co.uk>
8626
8627         * msw-glyphs.el: set frame icon if xpm support.
8628
8629 1998-03-30  Kyle Jones  <kyle_jones@wonderworks.com>
8630
8631         * help.el: Code that pretty prints variable values
8632           removed.
8633
8634 1998-04-02  SL Baur  <steve@altair.xemacs.org>
8635
8636         * find-paths.el (paths-emacs-root-p): Correct test for installation
8637         directory.
8638         From Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8639
8640 1998-03-30  Kyle Jones  <kyle_jones@wonderworks.com>
8641
8642         * loaddefs.el: Don't set debug-ignored-errors; leave
8643           its default value set to nil.
8644
8645 1998-03-29  Damon Lipparelli  <lipp@primus.com>
8646
8647         * info.el (Info-rebuild-dir): fixed mis-spelling.
8648
8649 1998-03-29  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
8650
8651         * info.el (Info-rebuild-outdated-dir): New custom var
8652         (Info-insert-node): Create/update dir file when needed, ie when it
8653         does not exist or is older than some info files in directory
8654
8655 1998-04-01  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8656
8657         * setup-paths.el, dump-paths.el, startup.el, packages.el: Allowed
8658         for last packages, mainly for using a 20.4 package base.
8659
8660         * packages.el (late-packages): Typo fix.  It was called
8661         early-packages.
8662
8663         * find-paths.el (paths-find-emacs-root): Bug fix: it now chases
8664         relative symlinks correctly.
8665         (paths-find-emacs-roots): More rigorous checking for plausible
8666         configuration-time root.
8667
8668         * startup.el (normal-top-level): Added a warning if XEmacs cannot
8669         find its roots.
8670
8671 1998-03-27  Martin Buchholz  <martin@xemacs.org>
8672
8673         * faces.el: Fix docstrings.
8674         * glyphs.el: Fix docstrings.
8675         * mouse.el: Fix docstrings.
8676
8677         * frame.el: Change phrase `current frame' to `selected frame'.
8678
8679         * faces.el (face-spec-set-match-display): Make FRAME arg optional.
8680
8681         * bytecomp.el (displaying-byte-compile-warnings): Rewrite some
8682         macros using backquote to make them infinitely more readable.
8683
8684 1998-03-30  SL Baur  <steve@altair.xemacs.org>
8685
8686         * packages.el (packages-find-package-path): Hardcoded specialized
8687         InfoDock support until we can clean this up.
8688
8689         * help.el (describe-bindings-1): Return the value of the bindings
8690         help buffer created.
8691         (describe-bindings): Ditto.
8692
8693         * simple.el (set-variable): Restore previous behavior of not
8694         bombing if the variable to set is not boundp.
8695
8696 1998-03-30  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8697
8698         * packages.el (packages-handle-package-dumped-lisps): Allow for
8699         non-local files to be loaded off the package-lisp variable.
8700
8701 1998-03-27  Kyle Jones  <kyle_jones@wonderworks.com>
8702
8703         * x-faces.el: Global X resources should override
8704           specs for all device classes (color, grayscale, mono);
8705           code currently doesn't override any of them.  Fixed by
8706           calling remove-specifier with '(x default) as the tag
8707           set and allowing inexact matches.
8708
8709 1998-03-27  Kyle Jones  <kyle_jones@wonderworks.com>
8710
8711         * faces.el: Separated face initializations based on
8712           device classes into device type specific (tag set,
8713           instantiator) pairs.
8714
8715 1998-03-09  Hrvoje Niksic  <hniksic@srce.hr>
8716
8717         * wid-edit.el (widget-choice-action): Remember user's explicit
8718         choice.
8719         (widget-choice-value-create): Respect it.
8720         From Richard Stallman <rms@gnu.org>
8721
8722 1998-03-26  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8723
8724         * setup-paths.el (paths-construct-info-path): Always append
8725         existing directories from configure-time info path.
8726
8727         * startup.el (startup-setup-paths): Renamed misnamed info-path to
8728         Info-directory-list.
8729
8730         * info.el: Removed Info-default-directory-list which was broken by
8731         design.
8732         Removed bogus initialization of Info-directory-list---startup.el
8733         can do a much better job.
8734         Added autoload of Info-directory-list.
8735
8736         * setup-paths.el (paths-construct-load-path): Fixed a bug pointed
8737         out by Martin Buchholz <martin@xemacs.org>: EMACSLOADPATH used to
8738         be exclusive; now it's merely given precedence, just like in the
8739         old days.
8740
8741 1998-03-25  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8742
8743         * find-paths.el (paths-find-architecture-directory): Fix bug with
8744         finding; it used to default too early.
8745
8746 1998-03-25  Martin Buchholz <martin@xemacs.org>
8747
8748         * packages.el (packages-split-path): Fix a bug; it used to fail
8749         for paths that weren't split.
8750
8751 1998-03-26  SL Baur  <steve@altair.xemacs.org>
8752
8753         * finder.el (finder-compile-keywords): trap on errors.
8754
8755 1998-03-24  Kyle Jones  <kyle_jones@wonderworks.com>
8756
8757         * x-faces.el (remove-specifier-specs-matching-tag-set-cdrs): Pass
8758           fourth argument of t so that only the specs exactly
8759           matching the tag lists are removed.
8760
8761 1998-03-25  SL Baur  <steve@altair.xemacs.org>
8762
8763         * make-docfile.el: Don't discard the BOOTSTRAPLOADPATH.
8764
8765 1998-03-23  SL Baur  <steve@altair.xemacs.org>
8766
8767         * minibuf.el (mouse-read-file-name-1): If a default directory was
8768         specified, use it for generating the completions.
8769
8770 1998-03-23  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8771
8772         * update-elc.el: Now respects inhibit-package-init and
8773         inhibit-site-lisp.
8774         Now does path construction with loadup-paths.
8775
8776         * startup.el (normal-top-level, startup-setup-paths): Now respects
8777         inhibit-package-init and inhibit-site-lisp.
8778
8779         * packages.el (packages-find-package-path): Extended package path
8780         by version-specific hierarchies.
8781         (packages-find-packages): Now respects inhibit flag and
8782         inhibit-site-lisp.
8783         Moved path setup to loadup-paths.
8784
8785         * make-docfile.el: Now respects inhibit-package-init and
8786         inhibit-site-lisp.
8787         Now does path construction with loadup-paths.
8788
8789         * loadup.el: Now respects inhibit-package-init and
8790         inhibit-site-lisp.
8791
8792         * dumped-lisp.el (preloaded-file-list): Added loadup-paths.
8793
8794         * loadup-paths.el: New file: setup load-path to encompass
8795         packages.
8796
8797 1998-03-22  SL Baur  <steve@altair.xemacs.org>
8798
8799         * auto-show.el: load-gc renamed to pureload.
8800         * site-load.el: Ditto.
8801         * packages.el (toplevel): Ditto.
8802         * loadup.el (really-early-error-handler): Ditto.
8803         * dumped-lisp.el (preloaded-file-list): Ditto.
8804         * cus-face.el (custom-declare-face): Ditto.
8805
8806 1998-03-22  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
8807
8808         * <Today>: The Big Path Searching Overhaul.
8809
8810         * find-paths.el: New file: find and assemble paths in the
8811         installation hierarchy.
8812
8813         * setup-paths.el: New file: global layout of paths and directories
8814         within the XEmacs hierarchy.
8815
8816         * packages.el: Replaced everything related to path searching and
8817         startup by code in terms of find-paths.
8818
8819         * loadup.el, make-docfile.el, update-elc.el, startup.el: Now calls
8820         the new path searching engine.
8821
8822         * dumped-lisp.el (preloaded-file-list): Added new files find-paths
8823         and setup-paths.
8824
8825 1998-03-22  SL Baur  <steve@altair.xemacs.org>
8826
8827         * dumped-lisp.el (preloaded-file-list): Load setup-paths.elc not
8828         setup-paths.el.
8829
8830 1998-03-20  Kirill M. Katsnelson  <kkm@kis.ru>
8831
8832         * msw-glyphs.el: Added check for 'mswindows feature, so the file
8833         compiles identically in any configuration.
8834         Removed irrelevant commentary.
8835
8836 1998-03-20  Kirill M. Katsnelson  <kkm@kis.ru>
8837
8838         * simple.el (set-variable): Allow setting specifiers.
8839
8840 1998-03-19  SL Baur  <steve@altair.xemacs.org>
8841
8842         * lisp.el (forward-sexp): Revert previous change.
8843
8844 1998-03-18  SL Baur  <steve@altair.xemacs.org>
8845
8846         * frame.el (frame-initialize): Use `delete-console' instead of
8847         `delete-device' to delete the stream console to match the usage in
8848         Fkill_emacs.
8849
8850 1998-03-16  SL Baur  <steve@altair.xemacs.org>
8851
8852         * files.el (cdpath-previous): New variable.
8853         (cd): Use it.
8854         From Bob Weiner <weiner@wave.altrasoft.com>
8855
8856 1998-03-15  Kyle Jones  <kyle_jones@wonderworks.com>
8857
8858         * keydefs.el: Changed keybindings of forward-char,
8859           backward, scroll-up and scroll-down to point to their
8860           -command counterparts.
8861
8862         * simple.el: New functions: forwarc-char-command,
8863           backwrad-char-command, scroll-up-command,
8864           scroll-down-command which work liek their counterparts
8865           except that they honor the variable
8866           signal-error-on-buffer-boundary.
8867
8868           Definition of signal-error-on-buffer-boundary received
8869           from src/cmds.c.
8870
8871           defvar declaration added for word-across-newline to avoid
8872           byte-compiler warning about the free variable reference.
8873
8874 1998-03-14  Kirill M. Katsnelson  <kkm@kis.ru>
8875
8876         * winnt.el: Removed "%t" from the beginning of
8877         modeline-format. From now on, there's no nt-specifics in the modeline.
8878
8879 1998-03-14  SL Baur  <steve@altair.xemacs.org>
8880
8881         * setup-paths.el (paths-setup-paths-warning): Replace occurrences
8882         of `when' with `if'.
8883
8884 1998-03-03  Kirill M. Katsnelson  <kkm@kis.ru>
8885
8886         * msw-glyphs.el: New file. Defines TTY-style glyphs for
8887         mswindows. Must be reworked along with glyphs.el, or
8888         merged into it, after there is images support.
8889
8890         * dumped-lisp.el (preloaded-file-list): Dump msw-glyphs.el when
8891         'mswindows.
8892
8893 1998-03-13  SL Baur  <steve@altair.xemacs.org>
8894
8895         * faces.el: fix for text cursor initialization.
8896         Suggested by Kyle Jones <kyle_jones@wonderworks.com>
8897         From Andy Piper <andyp@parallax.co.uk>
8898
8899 1998-03-11  Pete Ware  <ware@cis.ohio-state.edu>
8900
8901         * files.el (set-auto-mode): If a mode is not fboundp, check to see
8902         if there is an existing package that handles it and warn the user
8903         about that mode.
8904
8905 1998-03-02  Kirill M. Katsnelson  <kkm@kis.ru>
8906
8907         * x-menubar.el (default-menubar): Greyed out "Help / Basics /
8908         Installation" menu item when Installation-string is not bound.
8909
8910 1998-03-11  SL Baur  <steve@altair.xemacs.org>
8911
8912         * lisp.el (forward-sexp): Fix for test for balanced sexp.
8913         From Jeremiah W. James <jerry@cs.ucsb.edu>
8914
8915 1998-03-10  Kyle Jones  <kyle_jones@wonderworks.com>
8916
8917         * msw-faces.el:
8918         * faces.el: Fix face initialization.
8919
8920 1998-03-10  Glynn Clements  <glynn@sensei.co.uk>
8921
8922         * files.el (backup-enable-predicate): fix breakage introduced
8923         by TMPDIR patch.
8924
8925 1998-03-09  Kyle Jones  <kyle_jones@wonderworks.com>
8926
8927         * x-faces.el (x-init-face-from-resources): The
8928           TTY face property retrieval functions don't return
8929           specifiers, so use face-property instead.
8930
8931 1998-03-09  SL Baur  <steve@altair.xemacs.org>
8932
8933         * mwheel.el (mwheel-install): Use portable keysyms and syntax.
8934
8935 1998-03-09  Kyle Jones  <kyle_jones@wonderworks.com>
8936
8937         * x-menubar.el: Expanded documentation for
8938           option-save-faces.  Changed Options -> Browse Faces
8939           menu entry to invoke customize-face.
8940
8941 1998-03-09  Kyle Jones  <kyle_jones@wonderworks.com>
8942
8943         * faces.el: Most face initialization moved out of
8944           init-other-random-faces to the top level so that the
8945           initialization happens before Xemacs is dumped.  Much
8946           of the fascist "face-differs-from-default-p or FROB!"
8947           code has been retired in favor of letting the user do
8948           what they want to do.  Face initialization code changed
8949           to use `default' specifier tag so that the settings can
8950           be overridden later if the user wishes it.
8951
8952 1998-03-08  SL Baur  <steve@altair.xemacs.org>
8953
8954         * about.el (about-hackers): Update contributors list.
8955
8956 1998-03-07  Kyle Jones  <kyle_jones@wonderworks.com>
8957
8958         * specifier.el: Define new specifier tag `default'.
8959
8960         * modeline.el: Initialize faces using `default' tag.
8961
8962         * x-faces.el (x-init-face-from-resources): Remove
8963           specifier specs containing the `default' tag before
8964           adding new specs.
8965
8966 1998-03-02  John Jones  <jj@asu.edu>
8967
8968         * package-get.el (package-get-all): fixed arguments on call to
8969         package-admin-add-single-file-package.
8970         * package-get.el (package-get-installedp): fixed to match
8971         advertised behavior.
8972         * package-get.el: added function package-get-update-all which
8973         installs newest versions of all the current packages (if they are
8974         not already installed).
8975
8976 1998-03-04  Jens-Ulrik Petersen  <petersen@kurims.kyoto-u.ac.jp>
8977
8978         * files.el (find-file-noselect): Uncommented `truename' binding in
8979         `let*' and use it later to set `buffer-file-truename' iff it's
8980         still nil, as happens for example when finding a compressed
8981         file with "jka-compr".
8982
8983 Wed Mar 04 08:55:12 1998  Andy Piper  <andyp@parallax.co.uk>
8984
8985         * faces.el: in make-face-* type functions do the operation for all
8986         window systems, not just the first one found.
8987
8988         * font.el: call mswindows-list-fonts for mswindows.
8989
8990 1998-03-02  Glynn Clements  <glynn@sensei.co.uk>
8991
8992         * code-process.el (call-process-region):
8993         * process.el (call-process-region):
8994         * package-get.el (package-get-dir):
8995         * files.el (backup-enable-predicate):
8996         * gnuserv.el (gnuserv-temp-file-regexp):
8997         Use temp-directory in place of `/tmp'.
8998
8999 Fri Feb 20 21:22:34 1998  Darryl Okahata  <darrylo@sr.hp.com>
9000
9001         * "Fast" dired-in-C enhancements for Windows 95/NT:
9002
9003         * files.el: Added function, `wildcard-to-regexp', from GNU
9004           Emacs.
9005
9006         * files.el (insert-directory): Modified to use special
9007           dired-in-C enhancements if present.
9008
9009 Mon Mar 02 11:37:36 1998  Andy Piper  <andyp@parallax.co.uk>
9010
9011         * code-files.el: make default coding no-conversion.
9012
9013 1998-03-02  SL Baur  <steve@altair.xemacs.org>
9014
9015         * dumped-lisp.el (preloaded-file-list): Find Installation.el from
9016         the load-path.
9017
9018         * update-elc.el: Strip directory when testing for files not to
9019         bytecompile.
9020
9021 1998-03-02  Aki Vehtari  <Aki.Vehtari@hut.fi>
9022
9023         * lisp-mode.el: Use recommended form for menus.
9024
9025         * info.el (Info-construct-menu): Use recommended form for menus.
9026
9027         * gnuserv.el (gnuserv-edit-files): Use recommended form for menu
9028         entry.
9029
9030 1998-02-28  Kyle Jones  <kyle_jones@wonderworks.com>
9031
9032         * frame.el: Resurrect get-frame-for-buffer-default-to-current.
9033           (get-frame-for-buffer-noselect): Always return frames
9034           in the not-this-window-p cond clause.
9035
9036 1998-02-27  SL Baur  <steve@altair.xemacs.org>
9037
9038         * help.el (describe-installation): New function.
9039
9040         * x-menubar.el (default-menubar): Add describe-installation to
9041         Help menu.
9042
9043         * packages.el (packages-unbytecompiled-lisp): Installation.el
9044         should not be bytecompiled.
9045
9046         * dumped-lisp.el (preloaded-file-list): Dump Installation with
9047         XEmacs.
9048
9049         * x-menubar.el (default-menubar): Use correct guard for VM menu
9050         entry.
9051
9052         * coding.el: Add coding systems for iso-8859-[12] for No-Mule + file
9053         coding.
9054         From Andy Piper <andyp@parallax.co.uk>
9055
9056 1998-02-26  Oscar Figueiredo  <Oscar.Figueiredo@di.epfl.ch>
9057
9058         * ldap.el: Do not require ldap-internal at compile time.
9059
9060 Tue Feb 17 12:50:37 1998  Andy Piper  <andyp@parallax.co.uk>
9061
9062         * code-files.el: new file. a virtual copy of mule-files.el
9063         but without charset
9064         dependencies. (toggle-buffer-file-ocding-system) new function for
9065         changing the eol type for the current buffer.
9066
9067         * code-process.el: new file. a copy of
9068         mule-process.el. mule-process.el will disappear when things have
9069         settled.
9070
9071         * coding.el: new file. a virtual copy of mule-files.el but
9072         without charset dependencies. (coding-system-base) new function
9073         for getting the parent coding system of a coding system with eol
9074         type set.
9075
9076         * dumped-lisp.el: add above files for the non-mule case.
9077
9078 1998-02-25  Kyle Jones  <kyle_jones@wonderworks.com>
9079
9080         * window-xemacs.el (display-buffer): If no explicit
9081           frame is specified, search for a window that displays
9082           the buffer on the currently selected frame, before
9083           searching other frames.
9084
9085 1998-02-25  Kyle Jones  <kyle_jones@wonderworks.com>
9086
9087         * frame.el (get-frame-for-buffer): If not-this-window-p
9088           is non-nil, use window on the selected frame if it is not
9089           also the selected window.  When defaulting, search for
9090           windows on the currently selected fgrame before searching
9091           other frames.
9092
9093 1998-02-25  Didier Verna  <didier@xemacs.org>
9094
9095         * modeline.el (modeline-swap-buffers): originally named
9096         `mouse-release-modeline'. Whether to actually swap the buffers is
9097         decided in `mouse-drag-modeline'.
9098         (mouse-drag-modeline): A button release event is considered a
9099         mouse click is both X (modeline scroll) and Y (modeline drag) pos
9100         stay unchanged.
9101
9102 1998-02-25  SL Baur  <steve@altair.xemacs.org>
9103
9104         * x-menubar.el: Put redo on the menubar.
9105         From Aki Vehtari <Aki.Vehtari@hut.fi>
9106
9107 1998-02-22  Greg Klanderman  <greg@alphatech.com>
9108
9109         * bytecomp.el (displaying-byte-compile-warnings): if
9110         temp-buffer-show-function is set, use it to display current set of
9111         warnings in the "*Compile-Log-Show*" buffer.
9112
9113         * simple.el (display-warning-buffer): if temp-buffer-show-function
9114         is set, use it to display current set of warnings in the
9115         "*Warnings-Show*" buffer.
9116
9117 1998-02-20  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9118
9119         * cl-extra.el (equalp): Make (equalp ?A ?a) return t as in
9120         Common Lisp.
9121
9122 1998-02-23  Aki Vehtari  <Aki.Vehtari@hut.fi>
9123
9124         * menubar.el: Allow button descriptors at least 2 long.
9125
9126         * x-menubar.el (default-menubar): Use recommended forms.
9127         (file-menu-filter): Remove.
9128         (edit-menu-filter): Remove.
9129
9130 1998-02-24  SL Baur  <steve@altair.xemacs.org>
9131
9132         * about.el (about-hackers): Updated.
9133
9134 1998-02-22  Greg Klanderman  <greg@alphatech.com>
9135
9136         * help.el (help-max-help-buffers): new variable
9137         (help-register-and-maybe-prune-excess): new function
9138         (help-buffer-name): use help-max-help-buffers.
9139         (with-displaying-help-buffer): use
9140         help-register-and-maybe-prune-excess.
9141
9142         * help.el (help-maybe-pretty-print-value): if the value fits on
9143         one line, let it.
9144
9145 1998-02-21  Greg Klanderman  <greg@alphatech.com>
9146
9147         * (with-displaying-help-buffer): there is no need to kill the buffer
9148         if it exists, because with-output-to-temp-buffer will clear it.
9149         further, killing the buffer violates the rule that
9150         temp-buffer-show-function, if set, has the full responsibility of
9151         showing the temp buffer.  killing the buffer fucks with the window
9152         configuration, hosing temp-buffer-show-function.
9153
9154
9155 1998-02-23  Didier Verna  <didier@xemacs.org>
9156
9157         * modeline.el (mouse-drag-modeline):
9158         - Always scroll the modeline that was originally clicked on.
9159         - Use x pixels instead of x characters (which doesn't work anyway)
9160         as horizontal reference for modeline dragging. This allows us to
9161         keep on dragging the modeline even if the motion event occurs in
9162         another window.
9163
9164 1998-02-23  Didier Verna  <didier@xemacs.org>
9165
9166         * x-mouse.el (x-init-pointer-shape): use a crossed-arrows cursor
9167         glyph on the modeline to indicate that dragging the mouse has an
9168         effect both horizontally and vertically.
9169
9170 1998-02-24  SL Baur  <steve@altair.xemacs.org>
9171
9172         * about.el (about-xemacs): Get rid of redundant visible version
9173         number.
9174
9175 1998-02-19  SL Baur  <steve@altair.xemacs.org>
9176
9177         * about.el (about-hackers): Update credits.
9178
9179 1997-12-22  Christoph Wedler  <wedler@fmi.uni-passau.de>
9180
9181         * prim/register.el (view-register): Show register type file-query.
9182
9183 1998-02-17  Kyle Jones  <kyle_jones@wonderworks.com>
9184
9185         * mode-motion.el (mode-motion-highlight-internal):
9186           save-excursion inside save-window-exucrsion form to
9187           hide buffer point changes from save-window-excursion.
9188           Prevents display flickering when the mouse pointer
9189           moves.
9190
9191 1998-02-17  Didier Verna  <didier@xemacs.org>
9192
9193         * mouse.el (default-mouse-track-set-point-in-window): rewrote this
9194         function to handle correctly the case of a toolbar one side of the
9195         window: scrolling will not necessarily happen.
9196
9197 1998-02-17  Kyle Jones  <kyle_jones@wonderworks.com>
9198
9199         * files.el (after-find-file): Restore missing argument
9200           to format that provides filename for "... consider M-x
9201           recover-file" message.  Also call `message' with "%s"
9202           as the first arg instead of an arbitrary string.
9203
9204 1998-02-18  SL Baur  <steve@altair.xemacs.org>
9205
9206         * about.el (about-hackers): Various additions.
9207
9208 1998-02-15  SL Baur  <steve@altair.xemacs.org>
9209
9210         * autoload.el (generate-file-autoloads-1): Don't force an extra
9211         line out when copying on-the-same line autoloads.
9212
9213         * x-menubar.el (default-menubar): Add Sokoban to the menubar if it
9214         is installed.
9215
9216 1998-02-14  Martin Buchholz  <martin@xemacs.org>
9217
9218         * x11/x-win-xfree86.el (x-win-init-xfree86):
9219         * x11/x-win-sun.el (x-win-init-sun):
9220         * x11/x-init.el (x-initialize-compose):
9221         * prim/simple.el:
9222         (backward-or-forward-kill-sexp):
9223         (backward-or-forward-kill-sentence):
9224         (backward-or-forward-kill-word):
9225         (backward-or-forward-delete-char):
9226         * prim/isearch-mode.el (isearch-help-or-delete-char):
9227         Use x-keysym-on-keyboard-sans-modifiers-p instead of
9228         x-keysym-on-keyboard-p to detect backspace.
9229         Use symbols instead of strings (now deprecated) with x-keysym-*-p.
9230         Clean up symbols used with dead keys, checking Linux and solaris
9231         keysyms.
9232         Simplify x-win-*.el using above methods.
9233         Change documentation for x-keysym-*-p functions.
9234
9235 1998-02-14  SL Baur  <steve@altair.xemacs.org>
9236
9237         * about.el (about-hackers): Restore entries for Michael Sperber and
9238         Vinnie Shelton.
9239         From Vinnie Shelton <acs@acm.org>
9240
9241 1998-02-14  Hrvoje Niksic  <hniksic@srce.hr>
9242
9243         * simple.el (count-words-region): Ditto.
9244
9245 1998-02-12  Hrvoje Niksic  <hniksic@srce.hr>
9246
9247         * simple.el (count-words-buffer): Document.  Don't print anything
9248         if non-interactive.
9249
9250 1998-02-12  SL Baur  <steve@altair.xemacs.org>
9251
9252         * packages.el (packages-hardcoded-lisp): easymenu.el is in
9253         multiple files in InfoDock.
9254
9255 1998-02-11  SL Baur  <steve@altair.xemacs.org>
9256
9257         * packages.el (packages-hardcoded-lisp): id-vers.elc is loaded
9258         from version.el in InfoDock.
9259
9260         * dumped-lisp.el (preloaded-file-list): Don't treat InfoDock
9261         specially.
9262
9263 1998-02-09  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9264
9265         * bytecomp-runtime.el (proclaim-inline): Single quotes around
9266         variable name in docstring.
9267
9268 1998-02-10  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
9269
9270         * menubar.h: Include "gui.h".
9271
9272 1998-02-10  SL Baur  <steve@altair.xemacs.org>
9273
9274         * site-load.el: Fix documentation.
9275
9276 1998-02-09  SL Baur  <steve@altair.xemacs.org>
9277
9278         * package-get-base.el (package-get-base): Updated.
9279
9280         * keymap.el: PC-ize.
9281
9282 1998-02-08  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9283
9284         * hyper-apropos.el (hyper-apropos-get-doc): Print the `loaded
9285         from' on a fresh line.
9286
9287 1998-02-08  Hrvoje Niksic  <hniksic@srce.hr>
9288
9289         * help.el (help-maybe-pretty-print-value): prin1, not princ the
9290         object.
9291
9292 1998-02-09  SL Baur  <steve@altair.xemacs.org>
9293
9294         * undo-stack.el: PC-ize.
9295
9296         * cmdloop.el: PC-ize.
9297
9298 1998-02-08  SL Baur  <steve@altair.xemacs.org>
9299
9300         * bytecomp-runtime.el: PC-ize.
9301
9302         * byte-optimize.el: Prolog fixup.  PC-ize.
9303
9304         * cus-dep.el: Spelling fix.
9305
9306         * text-mode.el: Synch with Emacs 20.2.  (Original ChangeLog
9307         entries follow).
9308
9309 1997-08-29  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
9310
9311         * text-mode.el (text-mode-hook-identify): New function,
9312         put on text-mode-hook.  Set text-mode-variant here.
9313         (text-mode): Don't set it here.
9314
9315 1997-08-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
9316
9317         * text-mode.el (text-mode-hook): New defvar.
9318         (text-mode-variant): New variable.
9319         (text-mode): Set that variable locally.
9320         (toggle-text-mode-auto-fill): New command.
9321
9322 1997-06-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
9323
9324         * text-mode.el (text-mode): Let all-white lines separate paragraphs.
9325
9326 1997-06-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
9327
9328         * text-mode.el (paragraph-indent-text-mode):
9329         Renamed from spaced-text-mode.
9330         (text-mode-map): Bind TAB to indent-relative.
9331         (indented-text-mode-map): Variable deleted.
9332         (indented-text-mode): Now an alias for text-mode.
9333
9334 1998-02-05  SL Baur  <steve@altair.xemacs.org>
9335
9336         * loadup.el: test-atoms debugging stuffs removed.
9337
9338 1998-02-03  Martin Buchholz  <Martin Buchholz <martin@xemacs.org>
9339
9340         * lisp/loaddefs.el (completion-ignored-extensions): Add ".class"
9341
9342 1997-12-30  Colin Rafferty  <colin@xemacs.org>
9343
9344         * help.el (describe-beta): Made it use `locate-data-file'.
9345         (describe-distribution): Ditto.
9346         (describe-copying): Ditto.
9347         (describe-project): Ditto.
9348         (view-emacs-news): Ditto.
9349
9350         * help-nomule.el (help-with-tutorial): Made it use
9351         `locate-data-file' to find tutorial.
9352
9353 1998-01-28  Jonathon Harris  <jhar@tardis.ed.ac.uk>
9354
9355         * about.el: Corrected my email address.
9356
9357         * mouse.el: Added 'mouse-mswindows-drop' similar to
9358         'mouse-offix-drop'.
9359
9360 1998-01-27  SL Baur  <steve@altair.xemacs.org>
9361
9362         * loadup.el (running-xemacs): Spelling fix.
9363
9364 1998-01-26  Colin Rafferty  <colin@xemacs.org>
9365
9366         * packages.el (packages-find-packages-1): Don't allow a backwards
9367         compatible lisp tree to overwrite `preloaded-file-list'.
9368
9369 1998-01-26  SL Baur  <steve@altair.xemacs.org>
9370
9371         * loadup.el: Don't delete "xemacs" prior to dumping.
9372
9373 1998-01-24  SL Baur  <steve@altair.xemacs.org>
9374
9375         * package-info.el (pi-last-mod-date): New function.
9376         (pi-author-version): New function.
9377         (batch-update-package-info): Use them.
9378
9379 1998-01-23  Colin Rafferty  <colin@xemacs.org>
9380
9381         * frame.el (get-frame-for-buffer-default-to-current): Create.
9382         (get-frame-for-buffer-noselect): Allow user to use current frame
9383         with `get-frame-for-buffer-default-to-current'.
9384
9385 1998-01-22  Hrvoje Niksic  <hniksic@srce.hr>
9386
9387         * bytecomp.el (byte-compile-output-file-form): Set print-gensym.
9388         (byte-compile-output-docform): Ditto.
9389         (byte-compile-compiled-obj-to-list): Ditto.
9390
9391 1998-01-22  Kyle Jones  <kyle_jones@wonderworks.com>
9392
9393         * startup.el (command-line-1): Removed code that ran
9394           buffer-menu.
9395
9396 1998-01-21  Hrvoje Niksic  <hniksic@srce.hr>
9397
9398         * help-macro.el (make-help-screen): Bind `help-read-key' via flet.
9399
9400 1998-01-17  Hrvoje Niksic  <hniksic@srce.hr>
9401
9402         * frame.el (suspend-emacs-or-iconify-frame): Check using
9403         `device-on-window-system-p' instead of explicitly checking for X,
9404         so that the same logic works for MS Windows.
9405         (suspend-or-iconify-emacs): Ditto.
9406
9407 1998-01-14  Hrvoje Niksic  <hniksic@srce.hr>
9408
9409         * about.el (about-maintainer-info): Andy Piper is back.
9410         (xemacs-hackers): Updated Andy Piper's email address.
9411         (about-hackers): Added Jonathan Harris.
9412         (about-hackers): Updated Tibor Polgar's email address.
9413
9414 1998-01-18  SL Baur  <steve@altair.xemacs.org>
9415
9416         * about.el: Add xemacs.org email manager.
9417
9418         * package-get-base.el (package-get-base): Updated with most recent
9419         package updates.
9420
9421 1998-01-14  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9422
9423         * help.el (function-arglist): Use `indirect-function' instead of
9424         `symbol-function' so that aliases are treated correctly.
9425
9426 1998-01-13  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9427
9428         * help.el (help-map): Add f1 binding to `help-for-help'.
9429         Suggested by Karl M. Hegbloom <karlheg@inetarena.com>.
9430         (describe-key-briefly): Use `princ' "%s" to print object.
9431         (with-displaying-help-buffer): Kill buffer if it exists, again.
9432         (describe-key): Use `princ' "%s" to print object.
9433         (describe-function-1): Use `princ' "%s" to print object.
9434         Commented out alias lines removed.
9435         (help-pretty-print-limit): New variable to control pretty-printing
9436         of variable values.
9437         (help-maybe-pretty-print-value): Steve wins!  Renamed back from
9438         `help-pretty-print-value' again.  Only print-print when OBJECT is
9439         list of length less than `help-pretty-print-limit'.
9440         (describe-variable): Use `help-maybe-pretty-print-value' again.
9441
9442 1998-01-18  SL Baur  <steve@altair.xemacs.org>
9443
9444         * simple.el (blink-matching-open): Remove C++ kludge.
9445         Suggested by Bob Weiner <weiner@wave.altrasoft.com>
9446
9447 1998-01-14  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9448
9449         * info.el (Info-default-directory-list): Made the documentation
9450         more explanitory.
9451
9452 1998-01-13  Martin Buchholz  <martin@xemacs.org>
9453
9454         * lisp/packages.el:
9455         * lisp/package-admin.el:
9456         * lisp/build-report.el:
9457         Fix typos.
9458
9459 1998-01-14  Christoph Wedler  <wedler@fmi.uni-passau.de>
9460
9461         * Patches/font-lock.el (java-font-lock-keywords-*): Would produce
9462         warnings in Java buffers without final newline and editing the
9463         last line.
9464
9465 1998-01-17  SL Baur  <steve@altair.xemacs.org>
9466
9467         * packages.el (packages-find-packages-1): Don't allow a backwards
9468         compatible lisp tree to overwrite `preloaded-file-list'.
9469         Suggested by Colin Rafferty  <colin@xemacs.org>
9470
9471         * mouse.el (mouse-offix-drop): Set undo-boundary.
9472         From Oliver Graf <ograf@fga.de>
9473
9474 1998-01-13  SL Baur  <steve@altair.xemacs.org>
9475
9476         * loadup.el (load-gc): rewrite as defun.
9477         Print something sensical if a required dump-time file isn't found.
9478
9479 1998-01-12  SL Baur  <steve@altair.xemacs.org>
9480
9481         * menubar.el (check-menu-syntax): Emergency dirty fix -- the 0 plist
9482         bug strikes a menudescriptor.
9483
9484         * package-get-base.el (package-get-base): Updated.
9485
9486         * package-info.el (batch-update-package-info): Derive REQUIRES
9487         from the Makefile.
9488
9489 1998-01-13  Hrvoje Niksic  <hniksic@srce.hr>
9490
9491         * files.el (save-some-buffers): Don't play games with deleting
9492         other windows if we are in the minibuffer window.
9493
9494 1998-01-08  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9495
9496         * modeline.el (modeline-minor-mode-menu): Add support for :active
9497         (add-minor-mode): Document :active property to TOGGLE.
9498
9499 1998-01-07  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9500
9501         * modeline.el (modeline-minor-mode-menu): Add support for an
9502         `:included' predicate in the `toggle-sym' plist.
9503         (add-minor-mode): Document the :included property, format
9504         docstring some more.
9505         (modeline-minor-mode-menu): Documentation string added.
9506
9507 1998-01-02  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9508
9509         * modeline.el (modeline-minor-mode-menu): genmenlab the menu
9510         labels from the symbol-names by thwacking off the overly redundant
9511         and overused "mode", parenthesizing "minor", and capitalizing the
9512         resultant strings.  Also shortened the menu's title by eliminating
9513         the redundant buffer name.
9514         (add-minor-mode): Beautified the docstring, added mention of the
9515         `:menu-tag' property of TOGGLE.
9516         (modeline-minor-mode-menu): Frinked the `:menu-tag' property on
9517         `toggle-sym' to beatify the mode-life menus.
9518         * (abbrev-mode):  (put)'ed a `:menu-tag' on it and
9519         `auto-fill-function'.
9520
9521 1998-01-02  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9522
9523         * modeline.el (modeline-minor-mode-menu): Changed the string-only
9524         menus to :style 'toggle.
9525
9526 1997-12-10  Markus Linnala  <maage@cs.tut.fi>
9527
9528         * simple.el: Use mh-user-agent-compose as mh-e-user-agent.
9529
9530 1997-12-11  Christoph Wedler  <wedler@fmi.uni-passau.de>
9531
9532         * packages/hyper-apropos.el (hyper-apropos-insert-face): Would
9533         only recognize first hyperlink.
9534         (hyper-apropos-highlightify): Deletia, this is already done by
9535         `hyper-apropos-insert-face'.
9536         (hyper-apropos-help-mode): Don't call `hyper-apropos-highlightify.
9537
9538 1998-01-09  SL Baur  <steve@altair.xemacs.org>
9539
9540         * x-toolbar.el (toolbar-ispell-internal): Use ispell-message for
9541         mail.
9542         (toolbar-mail-reader): Add support for `send'.
9543         From Jonathan Marten <jonathan.marten@UK.Sun.COM>
9544
9545 1998-01-05  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9546
9547         * info.el (Info-emacs-info-file-name): Add defvar for
9548         `Info-emacs-info-file-name' so that `Info-goto-emacs-command-node'
9549         will function properly.
9550
9551 1998-01-05  Gary D. Foster  <gfoster@ragesoft.com>
9552
9553         * simple.el: make the backwards delete function called by
9554         `backward-or-forward-delete-char' user configurable.
9555
9556 1998-01-09  Karl M. Hegbloom  <karlheg@bittersweet.inetarena.com>
9557
9558         * hyper-apropos.el (hyper-apropos-get-doc): Print where a byte
9559         compiled function got loaded from.
9560
9561 1998-01-09  SL Baur  <steve@altair.xemacs.org>
9562
9563         * term/apollo.el: Synched up with InfoDock 3.6.2.
9564
9565 1998-01-08  SL Baur  <steve@altair.xemacs.org>
9566
9567         * startup.el (load-init-file): Load autoloads earlier.
9568         (startup-splash-frame): Handle InfoDock logo.
9569
9570         * x-init.el (init-post-x-win): Don't call init-x-toolbar in
9571         InfoDock.
9572         (x-init-toolbar-from-resources): Move from x-toolbar.el.
9573
9574         * toolbar.el (init-toolbar-from-resources): InfoDock x-toolbar.el
9575         doesn't have this function.
9576
9577         * packages.el (locate-data-file): Fix to call `locate-file'.
9578
9579 1998-01-07  SL Baur  <steve@altair.xemacs.org>
9580
9581         * dumped-lisp.el (preloaded-file-list): InfoDock uses its own
9582         version of version.el.
9583         (preloaded-file-list): Ditto for x-menubar.el and x-toolbar.el.
9584
9585         * x-menubar.el (default-menubar): Guard reference to
9586         `gnuserv-frame'.
9587         (default-menubar): Guard references to `font-lock-mode'.
9588         (default-menubar): Guard references to font-menu-this-frame-only-p'.
9589         (default-menubar): Guard references to `font-menu-ignore-scaled-fonts'.
9590
9591         * make-docfile.el: Don't snarf doc strings from autoloads.
9592
9593         * startup.el (load-init-file): Use algorithm from loaddefs.el for
9594         loading auto-autoloads files.
9595
9596         * loaddefs.el: Disable dumping autoloads.
9597
9598 1998-01-05  SL Baur  <steve@altair.xemacs.org>
9599
9600         * lisp-mnt.el: Synch to Emacs 20.2.
9601
9602         * help.el: Remove manual autoload of `finder-by-keyword'.
9603
9604         * finder.el (finder-by-keyword): Autoload.
9605
9606         * help.el: Conditionalize hyperbole setup.
9607
9608 1998-01-04  SL Baur  <steve@altair.xemacs.org>
9609
9610         * packages.el (package-require): Update to reflect new data format.
9611
9612 1998-01-02  Didier Verna  <didier@xemacs.org>
9613
9614         * x-menubar.el (default-menubar): make the tutorials available
9615         through the menubar. (Plus some compilation warnings cleanup).
9616
9617 1998-01-04  SL Baur  <steve@altair.xemacs.org>
9618
9619         * check-features.el: New file.  Perform sanity check after build.
9620
9621         * dumped-lisp.el (preloaded-file-list): Move tooltalk dumped lisp
9622         files to tooltalk package.
9623         (preloaded-file-list): Moved sparcworks dumped lisp files to Sun
9624         package.
9625
9626         * package-admin.el (package-admin-xemacs): Use better default for
9627         location of XEmacs binary.
9628
9629 1998-01-03  Aki Vehtari  <Aki.Vehtari@hut.fi>
9630
9631         * x-menubar.el (buffers-menu-submenus-for-groups-p): Replace const
9632         tag with sexp and add value tag with value `t'.
9633
9634 1998-01-03  SL Baur  <steve@altair.xemacs.org>
9635
9636         * package-get.el: Changes to work with real data.
9637         From Pete Ware <ware@cis.ohio-state.edu>
9638
9639         * packages.el (packages-reload-autoloads): Guard load for the time
9640         being.
9641
9642         * update-elc.el ("packages.el"): Force loading packages.el instead
9643         of possibly out-of-date packges.elc.
9644         * make-docfile.el ("packages.el"): Ditto.
9645
9646 1998-01-02  Colin Rafferty  <colin@xemacs.org>
9647
9648         * build-report.el (build-report-delete-regexp): Added a rule for
9649         the main tarball shadowing anything past it.
9650
9651 1998-01-02  SL Baur  <steve@altair.xemacs.org>
9652
9653         * packages.el (package-provide): Delete a previous provide.
9654
9655         * package-info.el: New file.
9656
9657         * package-get.el: New file.
9658         From Pete Ware <ware@cis.ohio-state.edu>
9659         (package-get): Fix md5 computation to work with Mule.
9660
9661 1997-12-11  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9662
9663         * simple.el (log-message-*): Quote symbols in docstrings properly.
9664
9665 1998-01-01  SL Baur  <steve@altair.xemacs.org>
9666
9667         * packages.el (packages-new-autoloads): Ignore symbolic links.
9668
9669         * cus-face.el (face-custom-attributes-get): Fix typo.
9670         From Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp>
9671
9672 1997-12-31  SL Baur  <steve@altair.xemacs.org>
9673
9674         * startup.el (load-init-file): Reload new or changed autoloads
9675         unless inhibited.  Reload modified dumped lisp (stubbed).
9676
9677         * packages.el (packages-new-autoloads): New function.
9678         (packages-reload-autoloads): New function.
9679         (packages-reload-dumped-lisp): New (stub) function.
9680
9681         * loadup.el: Inhibit reloading dumped files when running temacs.
9682
9683         * loadhist.el (file-provides): Extend to handle variant
9684         extensions.
9685
9686         * replace.el (query-replace): Fix typo.
9687
9688 1997-12-30  SL Baur  <steve@altair.xemacs.org>
9689
9690         * make-docfile.el: list-autoloads-path has been renamed.
9691         * update-elc.el: list-autoloads has been renamed.
9692
9693         * packages.el (packages-list-autoloads): Renamed.
9694         (packages-list-autoloads-path): Ditto.
9695
9696 1997-12-29  Colin Rafferty  <colin@xemacs.org>
9697
9698         * packages.el (packages-find-packages-1): Made it signal a warning
9699         for an error in an auto-autoload.el file.
9700
9701 1997-12-30  SL Baur  <steve@altair.xemacs.org>
9702
9703         * x-menubar.el (buffers-menu-submenus-for-groups-p): Replace sexp
9704         tag with const.
9705         From Aki Vehtari <Aki.Vehtari@hut.fi>
9706
9707         * dumped-lisp.el (preloaded-file-list): Dump loadhist with XEmacs.
9708
9709         * loadhist.el (unload-feature): Remove autoload.
9710
9711 1997-12-28  SL Baur  <steve@altair.xemacs.org>
9712
9713         * loadhist.el: Unpackaged.
9714
9715         * help.el (describe-symbol-find-file): Rename
9716         `describe-function-find-file' and make old name obsolete.
9717         (describe-function-1): Use it.
9718         (describe-function-1): Guard reference to
9719         `compiled-function-annotation'.
9720
9721 1997-12-27  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9722
9723         * help.el (help-mode-bury): Now a call to `help-mode-quit' with
9724         argument.
9725         (help-mode-quit): New optional arg to control whether it kills or
9726         buries.  Tidied up.
9727         (with-displaying-help-buffer): Don't kill buffer initially, even
9728         if it exists: it is erased by `with-output-to-temp-buffer' anyway.
9729         (help-pretty-print-value): Rename back from
9730         `help-maybe-pretty-print-value'!  If `pp-internal' is available
9731         use it, otherwise use dumped `cl-prettyprint'.
9732         (describe-variable): Use `help-pretty-print-value' again.
9733         (find-func): Removed reference to "find-func" at end.
9734
9735 1997-12-26  Kirill M. Katsnelson  <kkm@kis.ru>
9736
9737         * dumped-lisp.el: x-menubar.el dumped along with mswindows native
9738           GUI XEmacs. Rename? x-menubar is rather window system
9739           independant, except for a couple of items.
9740
9741 1997-12-26  SL Baur  <steve@altair.xemacs.org>
9742
9743         * x-menubar.el (default-menubar): Remove hyperbole and oobr
9744         entries as they will no longer be distributed with XEmacs.
9745
9746         * format.el (format-alist): Fix image/tiff regexps.
9747         From P. E. Jareth Hein <jareth@camelot-soft.com>
9748
9749         * help.el (help-maybe-pretty-print-value): Rename.
9750         (describe-variable): Use it.
9751         (describe-variable): Add trailing linefeed.
9752
9753 1997-12-26  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9754
9755         * help.el (describe-function-1): Don't output anything for
9756           arglist of autoload functions.
9757
9758 1997-12-26  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9759
9760         * help.el (describe-function-1): Don't output anything for
9761           arglist of autoload functions.
9762
9763 1997-12-26  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9764
9765         * help.el (help-mode-map): New bindings for `help-mode-bury',
9766         `describe-function-at-point', `describe-variable-at-point',
9767         `Info-elisp-ref', `customize-variable', `help-next-section' and
9768         `help-prev-section'.
9769         (help-next-section): New function.
9770         (help-prev-section): New function.
9771         (help-mode-quit): Changed to kill the help buffer.
9772         (help-mode-bury): Formerly `help-mode-quit'.  Bury buffer
9773         correctly.
9774         (help-buffer-name): New function to generate the name of help
9775         buffers.
9776         (with-displaying-help-buffer): Is now a macro.  Takes an new first
9777         argument giving the name of the help buffer.
9778         (describe-key): Use `with-displaying-help-buffer' with name.
9779         (describe-mode): Ditto.
9780         (describe-bindings): Ditto.
9781         (describe-prefix-bindings): Ditto.
9782         (view-lossage): Ditto.
9783         (with-syntax-table): New macro.
9784         (function-called-at-point): Use `ignore-errors' and
9785         `with-syntax-table'.
9786         (function-at-point): Ditto.
9787         (describe-function): Use `with-displaying-help-buffer' with name.
9788         (function-arglist): Extracted from `describe-function-1'.  Returns
9789         function's arglist as string.
9790         (function-documentation): Extracted from `describe-function-1'.
9791         Returns function's docstring.
9792         (describe-function-1): Remove all the "stream" garbage, including
9793         the stream argument.  Use `function-arglist' and
9794         `function-documentation'.
9795         (describe-function-arglist): Just use `function-arglist'.
9796         (variable-at-point): Use `ignore-errors' and `with-syntax-table'.
9797         (help-pretty-print-value): New function to help with
9798         pretty-printing variable values.  Knows about `#<...>'.  Needs
9799         `pp-internal'.
9800         (describe-variable): Use `with-displaying-help-buffer' with name.
9801         Formatting improved.  Display file where variable is defined, if
9802         known.  Use `help-pretty-print-value'.
9803         (describe-syntax): Use `with-displaying-help-buffer' with name.
9804         (list-processes): Remove "stream" garbage.
9805
9806 1997-12-25  SL Baur  <steve@altair.xemacs.org>
9807
9808         * x-init.el (x-initialize-keyboard): Don't load x-win*.el files,
9809         call a dumped routine instead.
9810
9811         * x-win-xfree86.el: Wrap file in defun.
9812         * x-win-sun.el: Ditto.
9813
9814 1997-12-23  SL Baur  <steve@altair.xemacs.org>
9815
9816         * help.el (view-emacs-news): Remove usage of outl-mouse which
9817         advises functions and does other evil things.
9818
9819 1997-12-22  SL Baur  <steve@altair.xemacs.org>
9820
9821         * format.el (format-alist): Add `image/tiff'.
9822         From P. E. Jareth Hein <jareth@camelot-soft.com>
9823
9824 1997-12-21  SL Baur  <steve@altair.xemacs.org>
9825
9826         * about.el (about-hackers): More names added.
9827
9828         * make-docfile.el: Remove superfluous package path search.
9829
9830         * loaddefs.el: Commentary changes.  Removal of VM autoloads.
9831
9832 1997-12-20  SL Baur  <steve@altair.xemacs.org>
9833
9834         * shadow.el (find-emacs-lisp-shadows): Add _pkg to the list of
9835         ignored shadows.
9836
9837 1997-12-18  SL Baur  <steve@altair.xemacs.org>
9838
9839         * startup.el (set-default-load-path): Make sure lisp and site-lisp
9840         get trailing slashes when added to the load-path.
9841
9842         * x-init.el (init-x-win): Locate where XEmacs X localization files
9843         are.
9844
9845 1997-12-18  Kyle Jones  <kyle_jones@wonderworks.com>
9846
9847         * x-faces.el: Added support for foregroundToolBarColor
9848           to xpm-color-symbols.
9849
9850 1997-12-17  Hrvoje Niksic  <hniksic@srce.hr>
9851
9852         * etags.el (tags-remove-duplicates): Removed.
9853         (buffer-tag-table-list): Use `delete-duplicates'.
9854
9855         * cl-extra.el (coerce): Coerce to bit-vector and weak-list
9856         correctly.
9857         (get*): Defalias to `get'.
9858
9859         * cl.el (eql): Compare integers with `eq'.
9860         (cl-map-extents): Check for `map-extents' first.
9861
9862 1997-12-17  Didier Verna  <didier@xemacs.org>
9863
9864         * leim/quail/latin-pre.el ("french-prefix"): doc string cleanup +
9865         added the 'numero', 'copyright' and 'trademark' symbols.
9866
9867         * leim/quail/latin-post.el ("french-postfix"): see above.
9868
9869 1997-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9870
9871         * widget.el (define-widget): Check the arguments.
9872
9873         * cus-edit.el (customize-face): Use `check-argument-type'.
9874         (custom-variable-value-create): Use `signal' to signal error.
9875         (custom-variable-reset-saved): Ditto.
9876         (custom-variable-reset-standard): Ditto.
9877         (custom-face-reset-saved): Ditto.
9878
9879         * wid-edit.el (widget-prompt-value): Use `signal' to signal error.
9880         (widget-default-format-handler): Ditto.
9881         (widget-checklist-add-item): Ditto.
9882         (widget-radio-add-item): Ditto.
9883         (widget-editable-list-entry-create): Ditto.
9884         (widget-sexp-prompt-value): Ditto.
9885
9886         * custom.el (custom-declare-variable): Signal errors better.
9887         (custom-handle-keyword): Ditto.
9888         (custom-declare-group): Ditto.
9889
9890         * window-xemacs.el (windows): Ditto.
9891
9892         * menubar.el (menu): Ditto.
9893
9894         * keydefs.el (keyboard): Ditto.
9895
9896         * minibuf.el (minibuffer): Ditto.
9897
9898         * process.el (execute): Ditto.
9899
9900         * fill.el (fill): Ditto.
9901
9902         * modeline.el (modeline): Ditto.
9903
9904         * help.el (help): Ditto.
9905
9906         * faces.el (faces): Ditto.
9907
9908         * files.el (files): Ditto.
9909
9910         * x-init.el (x): Ditto.
9911
9912         * lisp-mode.el (lisp): Ditto.
9913
9914         * process.el (processes): Ditto.
9915
9916         * mouse.el (mouse): Ditto.
9917
9918         * abbrev.el (abbrev): Moved from cus-edit.
9919
9920         * font-lock.el (lisp-font-lock-keywords-1): Recognize `defcustom'
9921         as variable declaration.
9922
9923 1997-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9924
9925         * menubar.el (find-menu-item): Use `check-argument-type'.
9926         (find-menu-item): Cosmetic changes.
9927
9928 1997-12-18  SL Baur  <steve@altair.xemacs.org>
9929
9930         * x-menubar.el (default-menubar): Guard usage of lpr-switches.
9931
9932 1997-12-17  SL Baur  <steve@altair.xemacs.org>
9933
9934         * startup.el (set-default-load-path): Only search package-path
9935         when not running temacs.
9936
9937         * dumped-lisp.el (preloaded-file-list): Remove Egg/Its dumped lisp
9938         files.
9939
9940         * loadup.el: Correct commentary.  Reformatting.
9941         (really-early-error-handler): Use absolute path to the
9942         first dumped-lisp.el file.
9943         (really-early-error-handler): Print full path name of
9944         each dumped lisp file (inherited from InfoDock).
9945
9946         * shadow.el (find-emacs-lisp-shadows): Ignore multiple
9947         dumped-lisp.el files.
9948
9949         * make-docfile.el (preloaded-file-list): Reorder when the
9950         package-path is searched.
9951         * update-elc.el: Ditto.
9952
9953         * lisp-mode.el (call-with-condition-handler): Treat the same as
9954         `condition-case' for indentation.
9955
9956         * about.el (about-xemacs): Update release date.
9957
9958 1997-12-17  Hrvoje Niksic  <hniksic@srce.hr>
9959
9960         * cl-macs.el (case): Signal error if `t' or `otherwise' are seen
9961         anywhere but at the last clause.
9962         (ecase): Disallow `t' and `otherwise'.
9963
9964 1997-12-16  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
9965
9966         * cus-edit.el (custom-buffer-create-buttons): New function
9967         from stuff moved out of `custom-buffer-create-internal'.
9968         (custom-novice): New variable.  Default t.
9969         (custom-display-global-buttons): Ditto.  Default `top'.
9970         (custom-buffer-create-internal): Only display help if
9971         `custom-novice' is non-nil.  Display global buttons according to
9972         `custom-display-global-buttons'.
9973
9974 1997-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9975
9976         * menubar.el (find-menu-item): Use `check-argument-type'.
9977         (find-menu-item): Cosmetic changes.
9978
9979 1997-12-15  Hrvoje Niksic  <hniksic@srce.hr>
9980
9981         * modeline.el (mouse-drag-modeline): Give the modeline a "pressed"
9982         look.
9983
9984 1997-12-16  Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
9985
9986         * format.el (format-deannotate-region):  Bug fix.
9987         Deannotating a region containing unknown tags would fail
9988         (causing decoding of text/enriched to fail at user level)
9989
9990 1997-12-16  Kyle Jones  <kyle_jones@wonderworks.com>
9991
9992         * minibuf.el (read-directory-name): Support sixth
9993           arg, HISTORY, as already documented.
9994
9995 1997-12-17  Hrvoje Niksic  <hniksic@srce.hr>
9996
9997         * etags.el (get-tag-table-buffer): Use explicit lists as arguments
9998         to `ecase'.
9999
10000 1997-12-14  SL Baur  <steve@altair.xemacs.org>
10001
10002         * skk/skk-leim.el (skk-auto-fill-activate): Synch with
10003         skk-activate.
10004
10005 1997-12-13  SL Baur  <steve@altair.xemacs.org>
10006
10007         * dumped-lisp.el (preloaded-file-list): Remove debugging statement.