diff options
| author | Colin Walters | 2002-04-29 23:16:38 +0000 |
|---|---|---|
| committer | Colin Walters | 2002-04-29 23:16:38 +0000 |
| commit | 5167cfda36b6784cba15bde63e8e9a19f07bfb39 (patch) | |
| tree | f6afa237a2143d87525f0f67fba0380f08e82ddf | |
| parent | b6cee49460597a2e510e6a1911f59e14dcdb4645 (diff) | |
| download | emacs-5167cfda36b6784cba15bde63e8e9a19f07bfb39.tar.gz emacs-5167cfda36b6784cba15bde63e8e9a19f07bfb39.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lib-src/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
5 files changed, 32 insertions, 5 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-04-28 Colin Walters <walters@verbum.org> | ||
| 2 | |||
| 3 | * configure.in: Delete configure check for access to the game | ||
| 4 | user. | ||
| 5 | |||
| 1 | 2002-04-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 6 | 2002-04-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 7 | ||
| 3 | * make-dist: lwlib/Imakefile is removed. | 8 | * make-dist: lwlib/Imakefile is removed. |
| @@ -25,9 +25,8 @@ scores. The directory ${localstatedir}/games/emacs is the normal | |||
| 25 | place for game scores to be stored. This may be controlled by the | 25 | place for game scores to be stored. This may be controlled by the |
| 26 | configure option `--with-game-dir'. The specific user that Emacs uses | 26 | configure option `--with-game-dir'. The specific user that Emacs uses |
| 27 | to own the game scores is controlled by `--with-game-user'. If access | 27 | to own the game scores is controlled by `--with-game-user'. If access |
| 28 | to a game user is not available (e.g. Emacs is not being built as | 28 | to a game user is not available, then scores will be stored separately |
| 29 | root, or the specified game user doesn't exist), then scores will be | 29 | in each user's home directory. |
| 30 | stored separately in each user's home directory. | ||
| 31 | 30 | ||
| 32 | --- | 31 | --- |
| 33 | ** Leim is now part of the Emacs distribution. | 32 | ** Leim is now part of the Emacs distribution. |
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 8b7fe0c37bd..042357d6dc4 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2002-04-28 Colin Walters <walters@verbum.org> | ||
| 2 | |||
| 3 | * Makefile.in (${archlibdir}): Don't conditionalize on | ||
| 4 | HAVE_SHARED_GAME_DIR. Instead, test at installation time whether | ||
| 5 | or not we have access to the specified game user. | ||
| 6 | |||
| 7 | * update-game-score.c (SCORE_FILE_PREFIX): Delete. | ||
| 8 | (main): New argument -d, for specifying directory. | ||
| 9 | (usage): Document. | ||
| 10 | (get_user_id): Compute | ||
| 11 | (get_home_dir): Deleted. | ||
| 12 | (get_prefix): New function, taken from main. | ||
| 13 | (main): Check whether or not we are running setuid. Move prefix | ||
| 14 | computation to get_prefix. Don't call getpwent; we don't need to | ||
| 15 | any more. Instead, move it to get_user_id(). | ||
| 16 | |||
| 1 | 2002-04-24 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 17 | 2002-04-24 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 18 | ||
| 3 | * ebrowse.c (skip_initializer): Return void. | 19 | * ebrowse.c (skip_initializer): Return void. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3a1e9117878..7246ec6f46d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,12 @@ | |||
| 1 | 2002-04-29 Colin Walters <walters@verbum.org> | 1 | 2002-04-29 Colin Walters <walters@verbum.org> |
| 2 | 2 | ||
| 3 | * ibuf-ext.el (ibuffer-kill-filter-group): Call `delete' function. | ||
| 4 | (ibuffer-kill-line): Copy the filter group data structure when | ||
| 5 | killing. | ||
| 6 | (ibuffer-yank): Handle case where we're yanking on the default | ||
| 7 | group correctly. | ||
| 8 | (ibuffer-delete-saved-filter-groups): Doc fix. | ||
| 9 | |||
| 3 | * play/gamegrid.el (gamegrid-add-score-with-update-game-score): | 10 | * play/gamegrid.el (gamegrid-add-score-with-update-game-score): |
| 4 | Test whether or not update-game-score is setuid, and do the right | 11 | Test whether or not update-game-score is setuid, and do the right |
| 5 | thing. | 12 | thing. |
diff --git a/src/ChangeLog b/src/ChangeLog index 28096607bfa..998bdebb361 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2002-04-28 Colin Walters <walters@verbum.org> | 1 | 2002-04-28 Colin Walters <walters@verbum.org> |
| 2 | 2 | ||
| 3 | * callproc.c (Vgame_score_directory): Default to | 3 | * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]: |
| 4 | "~/.emacs.d/games". | 4 | Default to "~/.emacs.d/games". |
| 5 | 5 | ||
| 6 | 2002-04-29 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2002-04-29 Stefan Monnier <monnier@cs.yale.edu> |
| 7 | 7 | ||