diff lisp/ChangeLog @ 440:8de8e3f6228a r21-2-28

Import from CVS: tag r21-2-28
author cvs
date Mon, 13 Aug 2007 11:33:38 +0200
parents 84b14dcb0985
children abe6d1db359e
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Aug 13 11:32:27 2007 +0200
+++ b/lisp/ChangeLog	Mon Aug 13 11:33:38 2007 +0200
@@ -1,3 +1,180 @@
+2000-02-07  Martin Buchholz <martin@xemacs.org>
+
+	* XEmacs 21.2.28 is released.
+
+2000-02-07  Martin Buchholz  <martin@xemacs.org>
+
+	* cl-extra.el (getf): Just call `get', never `get*'.
+	Make arglist match docstring.
+	Fix bug: (getf nil t t) ==> Lisp nesting exceeds `max-lisp-eval-depth'
+	* cl-macs.el (get* compiler macro): Simply replace `get*' by `get'.
+	* byte-optimize.el: remove references to `get*'.
+
+2000-02-06  Martin Buchholz  <martin@xemacs.org>
+
+	* mule/european.el: Add syntax information for Latin3 and Latin4.
+
+2000-02-02  Martin Buchholz  <martin@xemacs.org>
+
+	* byte-optimize.el: Byte-optimize (length "foo")
+
+2000-02-03   Daiki Ueno  <ueno@ueda.info.waseda.ac.jp>
+
+	* window.el (shrink-window-if-larger-than-buffer): Rewrite full
+	width check using `window-leftmost-p' and `window-rightmost-p'.
+
+2000-02-02  Per Abrahamsen  <abraham@dina.kvl.dk>
+
+	* wid-edit.el (widget-match-inline): An atom never matches a
+          list.  
+
+2000-01-29  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* modeline.el: Consolidated 'x and 'mswindows specification under
+	'win tag.
+
+2000-01-29  Andy Piper  <andy@xemacs.org>
+
+	* gutter-items.el: (format-buffers-tab-line): Try and be
+	intelligent about buffer naming when we have duplicates.
+
+2000-01-29  Andy Piper  <andy@xemacs.org>
+
+	* gutter-items.el (gutter-visible-p): Make sure the gutter gets
+	updated when it becomes visible.
+
+2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* bytecomp.el (byte-compile-insert-header): Properly set coding
+	system under MULE and file-coding.
+
+2000-01-28  Martin Buchholz  <martin@xemacs.org>
+
+	* coding.el (dontusethis-set-value-file-name-coding-system-handler): 
+	(dontusethis-set-value-terminal-coding-system-handler): 
+	(dontusethis-set-value-keyboard-coding-system-handler): 
+	Never undefine coding system aliases.  Emergency fix for gnus.
+
+2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* files.el (abbreviate-file-name): Use directory-sep-char instead
+	of hard-coded "/".
+
+2000-01-27  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* startup.el (user-init-file-base-list): New variable, replacing
+	user-init-file-base.
+	(find-user-init-file): New function.
+	(command-line-early): Use it.
+	(load-user-init-file): Ditto.
+
+2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* gutter-items.el (update-tab-in-gutter): Use proper locale when
+	calling valid-image-instantiator-format-p
+
+2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* isearch-mode.el (isearch-mode): The variable is
+	isearch-unhidden-extents, not isearch-opened-extents.
+
+2000-01-26  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* minibuf.el (next-history-element): Modify error message if a
+	default value is available.
+
+2000-01-26  Martin Buchholz  <martin@xemacs.org>
+
+	* bytecomp.el (byte-compile-file): Don't unconditionally write
+	.elc files in binary - might contain non-Latin1.
+
+2000-01-24  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* process.el (shell-quote-argument): Use (nt-quote-process-args)
+	for windows-nt.
+
+	* version.el: 
+	* startup.el (user-init-file-base): 
+	* process.el (call-process-region): 
+	* files.el (make-backup-file-name): 
+	(backup-file-name-p): 
+	(file-relative-name): 
+	(abbreviate-file-name): 
+	(set-auto-mode): 
+	* code-process.el (call-process-region): Removed unnecessary
+	branching on 'windows-nt and 'ms-dos system types. Phased 'ms-dos
+	support out of the universe.
+
+	* process.el:
+	* code-process.el: 
+	* bytecomp.el (byte-compile-file): Removed reference to
+	buffer-file-type, and commented usage of binary-process-output
+	NTEmacs variables.
+
+2000-01-24  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+	* help.el (function-arglist): Add case for macro.
+
+2000-01-22  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* cus-edit.el (custom-display): Removed "MS-DOS" and added Windows
+	printers.
+	(custom-display): Added a menu for printer/display tags.
+
+	* frame.el (frame-type):
+	* device.el (device-type): Added 'msprinter to the doc string, and
+	removed 'pc -- it is not going to be implemented ever.
+	(call-device-method): Fixed docstring typo.
+	Defined specifier tags 'printer and 'display.
+
+2000-01-22  Kyle Jones  <kyle_jones@wonderworks.com>
+
+	* lisp/itimer.el (itimer-run-expired-timers): (consp
+	  last-command-event-time) instead of (consp
+	  'last-command-event-time).
+
+2000-01-21  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* msw-glyphs.el: Removed obsolete commentary.
+
+2000-01-21  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* minibuf.el (read-file-name): Use abbreviate-file-name to produce
+	better default value.
+
+2000-01-21  Hrvoje Niksic  <hniksic@iskon.hr>
+
+	* minibuf.el (read-expression): Add a DEFAULT-VALUE argument.
+	(read-string): Ditto.
+	(eval-minibuffer): Ditto.
+	(read-command): Ditto.
+	(read-function): Ditto.
+	(read-variable): Ditto.
+	(read-number): Ditto.
+	(read-shell-command): Ditto.
+	(read-number): Record history.
+
+2000-01-20  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+	* etags.el (find-tag-tag): Use DEFAULT of completing-read.
+
+2000-01-20  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+	* faces.el (startup-initialize-custom-faces): New function.
+	Reset all faces created during auto-autoloads loading time
+	by defface.
+	* startup.el (command-line): Call it.
+
+2000-01-19  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+	* about.el (about-hackers): Add myself to contributors list.
+
+2000-01-12  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
+
+	* menubar-items.el (maybe-add-init-button): Removed an argument in
+	a call to load-user-init-file, as the function managed to lose its
+	formal parameter a few betas ago.
+
 2000-01-18  Martin Buchholz <martin@xemacs.org>
 
 	* XEmacs 21.2.27 is released.
@@ -4964,7 +5141,7 @@
 	* frame.el (get-frame-for-buffer-default-instance-limit):
 	defcustom it for options menu handling.
 
-	* font-lock.el (font-lock-mode): defcustom and autolaod the variable
+	* font-lock.el (font-lock-mode): defcustom and autoload the variable
 	font-lock-mode for options menu handling.
 
 	* cus-start.el: added Custom properties to overwrite-mode for