aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters2002-04-10 19:17:05 +0000
committerColin Walters2002-04-10 19:17:05 +0000
commitb9b966e0d92f49c2db7524734c3b04f4c57b96a2 (patch)
tree17d90fe9ad233a526821315a1e9072f4c4cfd681
parent6b910f7d685454a76f3e3c58aa08f5a2db37d68b (diff)
downloademacs-b9b966e0d92f49c2db7524734c3b04f4c57b96a2.tar.gz
emacs-b9b966e0d92f49c2db7524734c3b04f4c57b96a2.zip
*** empty log message ***
-rw-r--r--ChangeLog5
-rw-r--r--lib-src/ChangeLog15
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog2
4 files changed, 22 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 751db7b3121..064b4f74016 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12002-04-10 Colin Walters <walters@verbum.org>
2
3 * configure.in: Add --game-dir, --game-user. Test to see if we
4 can use them.
5
12002-04-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 62002-04-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 7
3 * configure.in: Add --with-sound. 8 * configure.in: Add --with-sound.
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 8444748c437..e480cf1ff47 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,5 +1,20 @@
12002-04-10 Colin Walters <walters@verbum.org> 12002-04-10 Colin Walters <walters@verbum.org>
2 2
3 * update-game-score.c: (toplevel): Include stdarg.h.
4 (MAX_DATA_LEN, MAX_SCORES): New.
5 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
6 default to ~/.emacs.d/games.
7 (get_user_id): Don't zero uid in the case where we can't get the
8 username.
9 (lose): New function.
10 (main): Actually use `max', and default it to MAX_SCORES.
11 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
12 function.
13 (read_score): Handle the case of reading unamelen characters, then
14 finishing. Use mktemp if mkstemp isn't available.
15 (lock_file, unlock_file): Delete unused versions.
16 (lock_file): Always sleep, even if we unlinked the lock file.
17
3 * Makefile.in (gamedir, gameuser): New variables. 18 * Makefile.in (gamedir, gameuser): New variables.
4 (toplevel, UTILITIES): Add update-game-score. 19 (toplevel, UTILITIES): Add update-game-score.
5 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR. 20 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 274625b4614..d83fda2e175 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -131,14 +131,10 @@
131 131
132 * files.el (display-time-string): Fix last change. 132 * files.el (display-time-string): Fix last change.
133 133
134<<<<<<< ChangeLog
135>>>>>>> 1.3683
136=======
1372002-04-07 Sam Steingold <sds@gnu.org> 1342002-04-07 Sam Steingold <sds@gnu.org>
138 135
139 * vc-cvs.el (vc-cvs-checkin): Pass the required argument to `error'. 136 * vc-cvs.el (vc-cvs-checkin): Pass the required argument to `error'.
140 137
141>>>>>>> 1.3687
1422002-04-07 Jason Rumney <jasonr@gnu.org> 1382002-04-07 Jason Rumney <jasonr@gnu.org>
143 139
144 * international/mule-cmds.el (set-default-coding-systems) 140 * international/mule-cmds.el (set-default-coding-systems)
@@ -152,7 +148,6 @@
152 148
153 * simple.el (play-sound): Move to subr.el. 149 * simple.el (play-sound): Move to subr.el.
154 150
155>>>>>>> 1.3679
1562002-04-06 Richard M. Stallman <rms@gnu.org> 1512002-04-06 Richard M. Stallman <rms@gnu.org>
157 152
158 * files.el (display-time-string-forms): Mark as risky. 153 * files.el (display-time-string-forms): Mark as risky.
diff --git a/src/ChangeLog b/src/ChangeLog
index ef3df3e0ad3..c2bbd882222 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12002-04-10 Colin Walters <walters@verbum.org> 12002-04-10 Colin Walters <walters@verbum.org>
2 2
3 * config.in: Add HAVE_SHARED_GAME_DIR.
4
3 * callproc.c: (Vgame_score_directory): New variable. 5 * callproc.c: (Vgame_score_directory): New variable.
4 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP. 6 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
5 7