diff options
| author | Thien-Thi Nguyen | 2004-12-15 13:59:17 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-12-15 13:59:17 +0000 |
| commit | 6f5546a98c4c0790fc729c8bc35de1835c6a123b (patch) | |
| tree | 731396d79157523dfcb62792170317fa35e208c7 | |
| parent | 3ef8085247089b62a44c019d65f8a300ddf3a790 (diff) | |
| download | emacs-6f5546a98c4c0790fc729c8bc35de1835c6a123b.tar.gz emacs-6f5546a98c4c0790fc729c8bc35de1835c6a123b.zip | |
Add to THANKS in Commentary; nfc.
| -rw-r--r-- | lisp/ChangeLog | 20 | ||||
| -rw-r--r-- | lisp/play/zone.el | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f647f1a456d..b99750e938d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | 2004-12-15 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * play/zone.el (zone): Set `truncate-lines'. | ||
| 4 | Also, init `tab-width' with value from original buffer. | ||
| 5 | (zone-shift-up): Rewrite for speed. | ||
| 6 | (zone-shift-down, zone-shift-left, zone-shift-right): Likewise. | ||
| 7 | (zone-pgm-jitter): Remove redundant entries from ops vector. | ||
| 8 | (zone-exploding-remove): Reduce iteration count. | ||
| 9 | (zone-cpos): Convert to defsubst. | ||
| 10 | (zone-replace-char): New defsubst. | ||
| 11 | (zone-park/sit-for): Likewise. | ||
| 12 | (zone-fret): Take window-start arg. | ||
| 13 | Update callers. Use `zone-park/sit-for'. | ||
| 14 | (zone-fill-out-screen): Rewrite. | ||
| 15 | (zone-fall-through-ws): Likewise. Update callers. | ||
| 16 | (zone-pgm-drip): Use `zone-replace-char'. | ||
| 17 | Move var inits before while-loop. Use `zone-park/sit-for'. | ||
| 18 | (zone-pgm-random-life): Handle empty initial field. | ||
| 19 | Use `zone-replace-char' and `zone-park/sit-for'. | ||
| 20 | |||
| 1 | 2004-12-15 Juri Linkov <juri@jurta.org> | 21 | 2004-12-15 Juri Linkov <juri@jurta.org> |
| 2 | 22 | ||
| 3 | * isearch.el (isearch-update): Test isearch-lazy-highlight | 23 | * isearch.el (isearch-update): Test isearch-lazy-highlight |
diff --git a/lisp/play/zone.el b/lisp/play/zone.el index 2116e0c78b6..b47a287701d 100644 --- a/lisp/play/zone.el +++ b/lisp/play/zone.el | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | ;; computers as slow as mine. | 36 | ;; computers as slow as mine. |
| 37 | 37 | ||
| 38 | ;; THANKS: Christopher Mayer, Scott Flinchbaugh, Rachel Kalmar, | 38 | ;; THANKS: Christopher Mayer, Scott Flinchbaugh, Rachel Kalmar, |
| 39 | ;; Max Froumentin. | 39 | ;; Max Froumentin, Juri Linkov, Luigi Panzeri. |
| 40 | 40 | ||
| 41 | ;;; Code: | 41 | ;;; Code: |
| 42 | 42 | ||