*** empty log message ***

This commit is contained in:
Colin Walters 2002-04-25 19:12:38 +00:00
parent ec2c23832d
commit 672ab90ba1
2 changed files with 52 additions and 7 deletions

View file

@ -21,13 +21,13 @@ so we will look at it
installed programs.
** By default, Emacs now uses a setgid helper program to update game
scores. Game scores are normally stored in ${prefix}/var/games/emacs.
This may be controlled by the configure option `--with-game-dir'. The
specific user that Emacs uses to own the game scores is controlled by
`--with-game-user'. If access to a game user is not available
(e.g. Emacs is not being built as root, or the specified game user
doesn't exist), then scores will be stored separately in each user's
home directory.
scores. The directory ${localstatedir}/games/emacs is the normal
place for game scores to be stored. This may be controlled by the
configure option `--with-game-dir'. The specific user that Emacs uses
to own the game scores is controlled by `--with-game-user'. If access
to a game user is not available (e.g. Emacs is not being built as
root, or the specified game user doesn't exist), then scores will be
stored separately in each user's home directory.
---
** Leim is now part of the Emacs distribution.

View file

@ -1,3 +1,48 @@
2002-04-25 Colin Walters <walters@verbum.org>
* replace.el (multi-occur-by-filename-regexp): Doc fix.
(occur-engine): Go to `point-min'.
* ibuf-ext.el (ibuffer-filtering-groups): Renamed to
`ibuffer-filter-groups'. All users updated.
(ibuffer-show-empty-filter-groups): New variable.
(ibuffer-saved-filter-groups): New variable.
(ibuffer-maybe-save-stuff): Renamed from
`ibuffer-maybe-save-saved-filters'. Callers updated. Handle
`ibuffer-saved-filter-groups'.
(ibuffer-hidden-filtering-groups): Renamed to
`ibuffer-hidden-filter-groups'.
(ibuffer-filter-group-kill-ring): New variable.
(ibuffer-save-with-custom): Doc fix.
(ibuffer-set-filter-groups-by-mode): New function.
(ibuffer-clear-filter-groups): New function.
(ibuffer-current-filter-groups-with-position): Renamed from
`ibuffer-current-filter-groups'. Callers updated.
(ibuffer-kill-filter-group): New function.
(ibuffer-kill-line): New function.
(ibuffer-yank): New function.
(ibuffer-save-filter-groups): New function.
(ibuffer-delete-saved-filter-groups): New function.
(ibuffer-switch-to-saved-filter-groups): New function.
(ibuffer-mark-on-buffer): Add optional arguments for adding a
specific mark, and marking on a specific group.
* ibuffer.el (ibuffer-formats): Doc fix.
(ibuffer-mode-map): Bind <up> to `ibuffer-backward-line'. Bind
new functions from ibuf-ext.el. Add menu entries for them.
Remove superfluous tooltips.
(ibuffer-toggle-marks): If on a group name, then toggle marks just
in that group.
(ibuffer-mark-interactive): Handle filter groups.
(ibuffer-mark-forward, ibuffer-unmark-forward)
(ibuffer-mark-for-delete, ibuffer-unmark-backward)
(ibuffer-mark-for-delete-backwards): Update docs.
(ibuffer-current-filter-groups): Moved to ibuf-ext.el, and renamed
to `ibuffer-current-filter-groups-with-position'.
(ibuffer-redisplay-engine): Handle
`ibuffer-show-empty-filter-groups'.
(ibuffer-mode): Add some documentation about filter groups.
2002-04-25 Andreas Schwab <schwab@suse.de>
* find-dired.el (find-name-dired): Don't quote pattern twice.