# HG changeset patch # User Colin Walters # Date 1020122198 0 # Node ID dbde822f9021ee3b793f6d017c76c36796576be0 # Parent f365c85cce403cfe5fe0dc143309e14606179588 *** empty log message *** diff -r f365c85cce40 -r dbde822f9021 ChangeLog --- a/ChangeLog Mon Apr 29 23:12:29 2002 +0000 +++ b/ChangeLog Mon Apr 29 23:16:38 2002 +0000 @@ -1,3 +1,8 @@ +2002-04-28 Colin Walters + + * configure.in: Delete configure check for access to the game + user. + 2002-04-29 Pavel Jan,Bm(Bk * make-dist: lwlib/Imakefile is removed. diff -r f365c85cce40 -r dbde822f9021 etc/NEWS --- a/etc/NEWS Mon Apr 29 23:12:29 2002 +0000 +++ b/etc/NEWS Mon Apr 29 23:16:38 2002 +0000 @@ -25,9 +25,8 @@ 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. +to a game user is not available, then scores will be stored separately +in each user's home directory. --- ** Leim is now part of the Emacs distribution. diff -r f365c85cce40 -r dbde822f9021 lib-src/ChangeLog --- a/lib-src/ChangeLog Mon Apr 29 23:12:29 2002 +0000 +++ b/lib-src/ChangeLog Mon Apr 29 23:16:38 2002 +0000 @@ -1,3 +1,19 @@ +2002-04-28 Colin Walters + + * Makefile.in (${archlibdir}): Don't conditionalize on + HAVE_SHARED_GAME_DIR. Instead, test at installation time whether + or not we have access to the specified game user. + + * update-game-score.c (SCORE_FILE_PREFIX): Delete. + (main): New argument -d, for specifying directory. + (usage): Document. + (get_user_id): Compute + (get_home_dir): Deleted. + (get_prefix): New function, taken from main. + (main): Check whether or not we are running setuid. Move prefix + computation to get_prefix. Don't call getpwent; we don't need to + any more. Instead, move it to get_user_id(). + 2002-04-24 Pavel Jan,Bm(Bk * ebrowse.c (skip_initializer): Return void. diff -r f365c85cce40 -r dbde822f9021 lisp/ChangeLog --- a/lisp/ChangeLog Mon Apr 29 23:12:29 2002 +0000 +++ b/lisp/ChangeLog Mon Apr 29 23:16:38 2002 +0000 @@ -1,5 +1,12 @@ 2002-04-29 Colin Walters + * ibuf-ext.el (ibuffer-kill-filter-group): Call `delete' function. + (ibuffer-kill-line): Copy the filter group data structure when + killing. + (ibuffer-yank): Handle case where we're yanking on the default + group correctly. + (ibuffer-delete-saved-filter-groups): Doc fix. + * play/gamegrid.el (gamegrid-add-score-with-update-game-score): Test whether or not update-game-score is setuid, and do the right thing. diff -r f365c85cce40 -r dbde822f9021 src/ChangeLog --- a/src/ChangeLog Mon Apr 29 23:12:29 2002 +0000 +++ b/src/ChangeLog Mon Apr 29 23:16:38 2002 +0000 @@ -1,7 +1,7 @@ 2002-04-28 Colin Walters - * callproc.c (Vgame_score_directory): Default to - "~/.emacs.d/games". + * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]: + Default to "~/.emacs.d/games". 2002-04-29 Stefan Monnier