From: Stefan Monnier Date: Mon, 5 Sep 2005 15:43:54 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~7254 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1550ae60d1c9e81cd68ec4c2b2aae20c1450818e;p=emacs.git *** empty log message *** --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ed7b77e5da..a24c34c9461 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,10 +1,17 @@ +2005-09-05 Stefan Monnier + + * progmodes/compile.el (compilation-goto-locus): Take into account + iconified frames when determining whether the buffer is + already visible. + Don't reset window height if the window already existed. + 2005-09-04 Chong Yidong - * custom.el (load-theme): Renamed from require-theme. + * custom.el (load-theme): Rename from require-theme. Add interactive spec. - (enable-theme): Renamed from custom-enable-theme. + (enable-theme): Rename from custom-enable-theme. Add interactive spec. - (disable-theme): Renamed from custom-disable-theme. + (disable-theme): Rename from custom-disable-theme. Add interactive spec. (custom-make-theme-feature): Doc fix. (custom-theme-directory): Doc fix. @@ -489,6 +496,12 @@ New hook. (add-to-diary-list): Call `diary-modify-entry-list-string-function' +2005-08-24 Stefan Monnier + + * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify. + + * custom.el (custom-theme-set-variables): Sort minor modes last. + 2005-08-24 Vinicius Jose Latorre * subr.el (version-separator, version-regexp-alist): New vars used by @@ -564,18 +577,16 @@ (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string): Move to beginning of file. (scheme-interaction-mode-commands-alist) - (scheme-interaction-mode-map, scheme-debugger-mode-map): Declare - them before use. Note: the initialization code for the variables - has not been moved because it uses functions that reference the - variables. + (scheme-interaction-mode-map, scheme-debugger-mode-map): + Declare them before use. Note: the initialization code for the variables + has not been moved because it uses functions that reference the variables. (xscheme-control-g-message-string, xscheme-process-filter-alist) (xscheme-prompt-for-expression-map): Declare them before use. (scheme-debugger-mode-commands): "?\ " -> "?\s". 2005-08-23 Ed Swarthout (tiny change) - * hexl.el (hexl-print-current-point-info): Fix simple spelling - error. + * hexl.el (hexl-print-current-point-info): Fix simple spelling error. 2005-08-22 Juri Linkov diff --git a/src/ChangeLog b/src/ChangeLog index bc76f96208a..44f8892668c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -8,8 +8,18 @@ * editfns.c (Fpropertize): Don't insist that properties be symbols. +2005-09-02 Stefan Monnier + + * dired.c (directory_files_internal_unwind, directory_files_internal) + (file_name_completion): Use a Save_Value object rather than a cons of + two 16bit ints to store the DIR*. + (directory_files_internal, file_name_completion): Handle both EINTR and + EAGAIN consistently after `readdir'. + 2005-09-01 Stefan Monnier + * intervals.c (update_interval): Add position info in error. + * dispnew.c (window_to_frame_hpos, update_window): Avoid gcc warning about unused variable `f'.