]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
* hi-lock.el (hi-lock-buffer-mode): Turn on font-lock.
[gnu-emacs] / lisp / ChangeLog
index 185bfdacab6e941d32532988e204f08985f6a385..11df73f864925386409f75e55c5e977c84c0acf3 100644 (file)
@@ -1,3 +1,516 @@
+2005-11-24  Chong Yidong  <cyd@stupidchicken.com>
+
+       * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
+       Use define-minor-mode, and make it a local mode.  Turn on
+       font-lock.
+       (hi-lock-mode): New global minor mode.
+       (turn-on-hi-lock-if-enabled): New function.
+       (hi-lock-line-face-buffer, hi-lock-face-buffer)
+       (hi-lock-set-pattern): Changed arguments to regexp and face
+       instead of a font-lock pattern.  Directly set face property,
+       instead of refontifying.
+       (hi-lock-font-lock-hook): Check if font-lock is being turned on.
+       (hi-lock-find-patterns): Use line-number-at-pos.
+
+       (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode.  Use new
+       arguments for hi-lock-set-pattern.
+       (hi-lock-unface-buffer, hi-lock-set-file-patterns): Call
+       font-lock-fontify-buffer.
+       (hi-lock-find-file-hook, hi-lock-current-line)
+       (hi-lock-refontify, hi-lock-set-patterns): Deleted unused
+       functions.
+
+       (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
+       turned off.
+
+       * progmodes/compile.el (compilation-setup): Don't fiddle with
+       font-lock-defaults.
+
+2005-11-25  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gdb-ui.el (gdb-var-create-handler)
+       (gdb-var-list-children-handler): Find values for all variable
+       objects.  gud-speedbar-buttons decides whether to display them.
+
+2005-11-24  Romain Francoise  <romain@orebokech.com>
+
+       * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
+       buffer name with a space.
+
+2005-11-24  Carsten Dominik  <dominik@science.uva.nl>
+
+       * textmodes/org.el: (org-export-plain-list-max-depth): Renamed
+       from `org-export-local-list-max-depth'.  Default values changed to
+       3.
+       (org-auto-renumber-ordered-lists,
+       org-plain-list-ordered-item-terminator): New options.
+       (org-at-item-p, org-beginning-of-item, org-end-of-item,
+       org-get-indentation, org-get-string-indentation,
+       org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
+       functions.
+       (org-move-item-down, org-move-item-up): New commands.
+       (org-export-as-html): New classes for CSS support.  Bug fix in
+       regular expression detecting fixed-width regions.  Respect
+       `org-local-list-ordered-item-terminator'.
+       (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
+       also a list item.
+       (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
+       New item moving functions added.
+
+2005-11-24  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-repeat): With empty search ring
+       set `isearch-error' to the error string instead of signaling
+       error with the function `error'.
+
+2005-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * term/mac-win.el: Make modifier `ctrl' an alias of `control'.
+
+2005-11-24  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
+       and variable.
+       (gdb-var-create-handler, gdb-var-list-children-handler):
+       Don't match on "char **...".
+       (gdb-var-update-handler): Find values for all variable objects.
+       (gdb-info-frames-custom): Identify frames by leading "#".
+
+       * progmodes/gud.el (gud-speedbar-menu-items): Add
+       gdb-speedbar-auto-raise as radio button.
+       (gud-speedbar-buttons): Raise speedbar if requested.
+       Don't match on "char **...".
+       (gud-speedbar-buttons): Add (pointer) value for non-leaves.
+       Make it editable.
+
+2005-11-23  Chong Yidong  <cyd@stupidchicken.com>
+
+       * info.el (Info-fontify-node): Handle the case where
+       Info-current-file is t.
+
+2005-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (blink-matching-open): Fix off-by-one in last change.
+
+2005-11-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * term/mac-win.el: Don't change default directory.
+
+2005-11-22  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * cus-edit.el (Custom-reset-standard): Make it handle Custom group
+       buffers correctly.  (It used to throw an error in such buffers.)
+       Make it ask for confirmation in group buffers and other Custom
+       buffers containing more than one customization item.
+
+2005-11-22  John Paul Wallington  <jpw@gnu.org>
+
+       * net/goto-addr.el (goto-address-fontify): Put `follow-link'
+       property on mail and url overlays.
+       (goto-address-at-point): Use `posn-set-point' instead of
+       `mouse-set-point' because the latter is not fbound when configured
+       without X.
+
+2005-11-22  Lars Hansen  <larsh@soem.dk>
+
+       * ls-lisp.el (ls-lisp-parse-symlink): Delete.
+       (ls-lisp-classify, ls-lisp-format): Delete call to
+       ls-lisp-parse-symlink.
+       (ls-lisp-handle-switches): Handle symlinks to directories as
+       directories when ls-lisp-dirs-first in non-nil.
+
+2005-11-21  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * startup.el (command-line): Make sure that loaddefs.el is handled
+       correctly in load-history.
+
+2005-11-22  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
+       (gdb-struct-string, gdb-array-string): New constants.
+       (gdb-info-locals-handler): Use them.
+       (gdb-reset): Reset gdb-var-list to nil.
+
+2005-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
+       in patterns.
+
+2005-11-21  Juri Linkov  <juri@jurta.org>
+
+       * custom.el (defcustom): Update link types in docstring.
+
+2005-11-20  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
+
+       * custom.el (defgroup): Add doc-string-elt info.
+
+       * widget.el (define-widget): Don't use declare for the doc-string-elt.
+
+2005-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * newcomment.el (comment-enter-backward): Fix last fix.
+
+       * simple.el (blink-matching-open):
+       * paren.el (show-paren-function): Allow new paren-class info.
+
+2005-11-20  Chong Yidong  <cyd@stupidchicken.com>
+
+       * faces.el: Revert 2005-11-17 change.  :ignore-defface is now
+       handled automagically.
+
+2005-11-20  Juri Linkov  <juri@jurta.org>
+
+       * simple.el (what-cursor-position):
+       * descr-text.el (describe-char): Use Lisp-readable syntax
+       for octal and hex.  Reorder decimal, octal and hex values.
+       Remove excess whitespace in the output.  Use `=' in `column='
+       like in `point=' and `Hscroll='.
+
+       * international/mule-cmds.el (encoded-string-description):
+       Use Lisp-readable syntax for hex.
+
+2005-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * newcomment.el (comment-enter-backward): Handle the case where the
+       comment is closed by EOB.
+
+2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
+
+       * longlines.el (longlines-before-revert-hook)
+       (longlines-after-revert-hook): New functions.
+       (longlines-mode): Turn off longlines temporarily when reverting.
+       Add a message-setup-hook.
+       (longlines-decode-buffer): New function.
+       (longlines-wrap-line): Preserve marker positions.
+
+2005-11-19  Andreas Schwab  <schwab@suse.de>
+
+       * emacs-lisp/shadow.el: Handle compressed files.
+
+2005-11-19  Romain Francoise  <romain@orebokech.com>
+
+       * net/browse-url.el (browse-url-default-browser): Signal an error
+       if no usable browser can be found, rather than try to load w3.
+
+2005-11-16  Ryan Yeske  <rcyeske@gmail.com>
+
+       * net/rcirc.el (rcirc-mangle-text): Add bold face property without
+       replacing existing properties.
+       (rcirc-my-nick, rcirc-other-nick, rcirc-server)
+       (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
+       tty specs.
+       (rcirc-server-prefix, rcirc-server): New faces.
+       (rcirc-url-regexp): Generate with rx macro.
+       (rcirc-last-server-message-time): New variable.
+       (rcirc-filter): Record time of last message.
+       (rcirc-keepalive): Kill processes that did not send a message
+       since the last ping.
+       (rcirc-mode): Give rcirc-topic a local binding here.
+
+2005-11-19  Michael Cadilhac  <michael.cadilhac@lrde.org>  (tiny change)
+
+       * subr.el (read-passwd): Fontify the prompt as we do with other
+       prompts.
+
+2005-11-19  Ryan Yeske  <rcyeske@gmail.com>
+
+       * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
+       binding buffer-read-only to nil.
+
+2005-11-19  Eli Zaretskii  <eliz@gnu.org>
+
+       * complete.el (partial-completion-mode):
+       Mention completion-auto-help in the doc string.
+
+       * man.el (Man-highlight-references): Doc fix.  Reformat code in a
+       more Lisp-ish way.
+
+2005-11-19  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se> (tiny change)
+
+       * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
+       digits, not 8, to avoid misalignment for files larger than 100MB.
+
+2005-11-19  Eli Zaretskii  <eliz@gnu.org>
+
+       * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
+       Mention "keyboard shortcuts" in the help text.
+
+2005-11-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * startup.el (fancy-splash-default-action): Discard only
+       mouse-down and succeeding mouse-up events in the splash screen
+       window so that drag-n-drop event can be processed.
+
+2005-11-18  Chong Yidong  <cyd@stupidchicken.com>
+
+       * longlines.el (longlines-mode): Add hacks for mail-mode and
+       message-mode.
+
+2005-11-18  Carsten Dominik  <dominik@science.uva.nl>
+
+       * textmodes/org.el: (org-table-sort-lines): New command.
+       (org-tbl-menu): Add entry for `org-table-sort-lines'.
+       (org-add-file): Command removed, use `org-agenda-file-to-front'
+       instead.
+       (org-export-icalendar): Use `org-icalendar-combined-name'.
+       (org-cycle-agenda-files, org-agenda-file-to-end)
+       (org-agenda-file-to-front): New commands.
+       (org-table-tab-jumps-over-hlines,org-export-html-style): New
+       options.
+       (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
+       (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
+       New functions.
+       (org-fill-paragraph): Call `org-table-align' in tables.
+       (org-mode): Call `org-set-autofill-regexps'.
+       (org-export-as-html): Support for local handformatted lists.
+       Modified to produce valid HTML 4.0. Use `org-export-html-style'.
+       (org-export-local-list-max-depth): New option.
+       (org-html-expand): Use `org-html-protect'.
+
+2005-11-18  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
+       to "p".
+       (gdb): Move definition of gud-pp to...
+
+       * progmodes/gdb-ui.el (gdb-ann3): ...here.  Make it work in the
+       speedbar.
+       (gdb-find-watch-expression): New function.
+
+2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
+
+       * faces.el (face-attribute, set-face-attribute): Mention existence
+       of `:ignore-defface' setting in docstring.
+
+2005-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (completion-setup-function): Fix last change.
+
+2005-11-17  John Paul Wallington  <jpw@pobox.com>
+
+       * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
+       Use `posn-set-point' instead of `mouse-set-point' because the
+       latter is not fbound when configured without X.
+
+       * comint.el (comint-insert-input): Likewise.
+
+2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
+
+       * simple.el (hard-newline): New variable.
+       (sendmail-user-agent-compose, next-line): Use it.
+
+       * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
+       (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
+       (mail-mail-reply-to, mail-mail-followup-to)
+       (mail-position-on-field, mail-signature, mail-yank-original)
+       (mail-attach-file): Likewise.
+
+       * mail/mailheader.el (mail-header-format)
+       (mail-header-format-function): Likewise.
+
+       * add-log.el (add-change-log-entry, change-log-merge): Likewise.
+
+2005-11-17  Juri Linkov  <juri@jurta.org>
+
+       * font-lock.el (font-lock-faces): Rename this defgroup from
+       `font-lock-highlighting-faces'.
+       (font-lock-comment-face, font-lock-comment-delimiter-face)
+       (font-lock-string-face, font-lock-doc-face)
+       (font-lock-keyword-face, font-lock-builtin-face)
+       (font-lock-function-name-face, font-lock-variable-name-face)
+       (font-lock-type-face, font-lock-constant-face)
+       (font-lock-warning-face, font-lock-negation-char-face)
+       (font-lock-preprocessor-face)
+       (font-lock-regexp-grouping-backslash)
+       (font-lock-regexp-grouping-construct): Rename :group from
+       `font-lock-highlighting-faces' to `font-lock-faces'.
+
+       * cus-edit.el (lisp, c, tex):
+       * progmodes/ada-mode.el (ada):
+       * progmodes/asm-mode.el (asm):
+       * progmodes/cperl-mode.el (cperl-faces):
+       * progmodes/cpp.el (cpp):
+       * progmodes/dcl-mode.el (dcl):
+       * progmodes/f90.el (f90):
+       * progmodes/fortran.el (fortran):
+       * progmodes/icon.el (icon):
+       * progmodes/idlwave.el (idlwave-misc):
+       * progmodes/m4-mode.el (m4):
+       * progmodes/make-mode.el (makefile):
+       * progmodes/meta-mode.el (meta-font):
+       * progmodes/modula2.el (modula2):
+       * progmodes/octave-mod.el (octave):
+       * progmodes/pascal.el (pascal):
+       * progmodes/perl-mode.el (perl):
+       * progmodes/prolog.el (prolog):
+       * progmodes/ps-mode.el (PostScript-edit):
+       * progmodes/scheme.el (scheme):
+       * progmodes/sh-script.el (sh-script):
+       * progmodes/simula.el (simula):
+       * progmodes/tcl.el (tcl):
+       * textmodes/nroff-mode.el (nroff):
+       * textmodes/reftex-vars.el (reftex-fontification-configurations):
+       * textmodes/sgml-mode.el (sgml):
+       * textmodes/texinfo.el (texinfo):
+       Add :link (custom-group-link font-lock-faces) to defgroup.
+
+       * hi-lock.el (hi-lock): Rename this defgroup from
+       `hi-lock-interactive-text-highlighting'.  Change parent group from
+       `faces' to `font-lock'.  Add link to the manual.
+       (hi-lock-mode, hi-lock-file-patterns-range)
+       (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
+       `hi-lock-interactive-text-highlighting' to `hi-lock'.
+       (hi-lock-faces): Add :group `faces'.
+
+       * cus-edit.el (custom-variable-prompt): Clarify the code.
+
+       * faces.el (face-read-string): Set the default value arg of
+       completing-read.
+
+2005-11-16  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * rfn-eshadow.el (file-name-shadow-properties)
+       (file-name-shadow-tty-properties, file-name-shadow-mode):
+       Remove autoloads, because the file is now preloaded.
+
+2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * printing.el (easy-menu-intern): Don't define.
+       (pr-get-symbol): Use easy-menu-intern only if defined.
+
+       * simple.el (blink-matching-open): Simplify a bit.
+       (completion-setup-function): Fix the case of partial-completion-mode
+       when the minibuffer's contents start with "-".
+       Obey completion-base-size-function even when
+       minibuffer-completing-file-name is non-nil.
+
+2005-11-16  Richard M. Stallman  <rms@gnu.org>
+
+       * net/eudcb-ph.el (eudc-ph-open-session):
+       Use set-process-query-on-exit-flag.
+
+       * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
+
+       * international/ucs-tables.el (ucs-set-table-for-input):
+       Use make-local-variable, not make-variable-buffer-local.
+
+       * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
+       Improve warning message text.
+
+       * savehist.el (savehist-save-hook): Add :group.
+
+       * menu-bar.el (menu-bar-help-menu):
+       Rename Find Extra Packages to External Packages.
+
+       * cus-edit.el (Custom-reset-standard): Verify that
+       :custom-standard-value prop exists before calling it.
+
+       * apropos.el (apropos-calc-scores): Use apropos-pattern.
+
+2005-11-16  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
+
+       * wid-edit.el (color): Enclose %t in %{...%}.
+
+       * cus-edit.el (face): Enclose %t in %{...%}.
+
+2005-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * savehist.el (savehist-mode-hook): Re-add the var.
+       (savehist-mode): Use it.
+
+2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/flyspell.el: Fix commenting convention.
+       Remove unnecessary leading * in custom docstrings.
+       (flyspell-emacs): Remove unused var.
+       (flyspell-delete-region-overlays): Use remove-overlays.
+       (flyspell-accept-buffer-local-defs): Use save-current-buffer.
+       (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
+       (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
+       (flyspell-debug-signal-word-checked): Use with-current-buffer.
+       (make-flyspell-overlay): Don't locally reuse a global name.
+       (flyspell-highlight-incorrect-region)
+       (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
+       (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
+       (flyspell-notify-misspell): Remove unused args `start' and `end'.
+       (flyspell-word): Adjust call accordingly.  Use ispell-send-string.
+       Wrap calls to accept-process-output inside with-local-quit since it's
+       often called from a post-command-hook.
+       (flyspell-correct-word, flyspell-auto-correct-word):
+       Use ispell-send-string.
+       (flyspell-xemacs-popup): Remove unused arg `event'.  Update call.
+
+       * calendar/diary-lib.el (diary-list-entries): Also hide the
+       terminating newline.
+
+2005-11-16  Carsten Dominik  <dominik@science.uva.nl>
+
+       * textmodes/reftex.el (reftex-use-fonts): Remove the check for
+       window-system, to allow fonts on tty.
+
+2005-11-17  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gud.el (gud-speedbar-item-info): New function.
+       (gud-install-speedbar-variables): Use it to display data type
+       of watch expression as a tooltip in speedbar.
+
+2005-11-15  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * font-core.el (global-font-lock-mode): Add :version keyword,
+       because default was changed.
+
+       * jka-cmpr-hook.el (auto-compression-mode): Ditto.
+
+       * startup.el (command-line): Use `custom-reevaluate-setting' for
+       `file-name-shadow-mode'.
+
+       * loadup.el: Preload rfn-eshadow.
+
+       * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
+       Add :version keyword.
+       (file-name-shadow-properties, file-name-shadow-tty-properties)
+       (file-name-shadow): Add :version keyword.
+
+       * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
+       instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
+       in the custom-group property of the symbol frames and the fringe
+       group got no link to its parent group frames.
+       Doc fix.
+
+2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gud.el (gud-stop-subjob): New function.
+       (gud-menu-map, gud-tool-bar-map): Use it.
+
+2005-11-16  Kim F. Storm  <storm@cua.dk>
+
+       * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
+       than kill it.
+       (gud-tool-bar-map): Likewise.  Move cont/until/finish buttons
+       to a more useful/logical place.
+
+2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gud.el (gud-menu-map): Make visibility of stop and
+       go buttons complementary.
+
+2005-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
+       (rfn-eshadow-sifn-equal): New function.
+       (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
+
+2005-11-15  Michael Kifer  <kifer@cs.stonybrook.edu>
+
+       * viper-utils (viper-non-word-characters-reformed-vi): Quote `-' in
+       string.
+
+       * viper.el (viper-emacs-state-mode-list): Ensure that
+       rcirc-mode buffers come up in Emacs state.
+
+       * ediff-util (ediff-make-temp-file): Use proper file-name-handler
+       operation.
+
 2005-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * term.el (term-termcap-format): Fix typos.
 
 2005-11-16  Kim F. Storm  <storm@cua.dk>
 
-       * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New
-       function.
+       * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
        (gud-menu-map): Use it.
 
 2005-11-14  Luc Teirlinck  <teirllm@auburn.edu>
 
 2005-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
 
-       * savehist.el (savehist-mode): Don't bother with `custom-set-minor-mode.
+       * savehist.el (savehist-mode): Don't bother with
+       `custom-set-minor-mode'.
        (savehist-coding-system): Check XEmacs version.
        (history-length): Declare also at run time.
        (savehist-mode): Don't emit a message.  Don't run the minor mode hook.
 2005-11-13  Richard M. Stallman  <rms@gnu.org>
 
        * help.el (help-for-help-internal): Improve doc of C-h a.
+       (describe-key): Improve prompt; doc fix.
 
 2005-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 
 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
 
-       * progmodes/gud.el (gud-menu-map):  Move parentheses (again).
+       * progmodes/gud.el (gud-menu-map): Move parentheses (again).
        (gud-speedbar-buttons): Match on "const char *" too.
 
        * progmodes/gdb-ui.el (gdb-var-create-handler)
 
        * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
 
+2005-11-07  John Paul Wallington  <jpw@gnu.org>
+
+       * ibuffer.el (ibuffer): Search iconified frames too when
+       getting Ibuffer buffer's window.
+
 2005-11-06  Richard M. Stallman  <rms@gnu.org>
 
        * progmodes/compile.el (compilation-internal-error-properties):
 
 2005-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
 
-       * simple.el (eval-expression-print-format): Put the char-string
-       inside the parenthesis, like the other alternative notations.
-       (kill-new): Use push.
-       (copy-to-buffer): Use with-current-buffer.
-       (completion-setup-function): Simplify.
-       (minibuffer-local-must-match-map): Don't add redundant bindings which
-       are already present in its parent (minibuffer-local-completion-map).
-
        * savehist.el (savehist-coding-system): Revert to checking XEmacs.
 
 2005-10-19  Jay Belanger  <belanger@truman.edu>
 2005-10-12  Kim F. Storm  <storm@cua.dk>
 
        * startup.el (fancy-splash-default-action): Discard mouse click in
-       the spash screen window, as it has no sensible meaning in the
+       the splash screen window, as it has no sensible meaning in the
        next window to be selected.  Fixes error reported by Jan D.
 
 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>