diff options
| author | Thien-Thi Nguyen | 2007-10-01 06:36:58 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2007-10-01 06:36:58 +0000 |
| commit | 5db17239182556967bfaa5723214f31b8a91db6f (patch) | |
| tree | 05769eedcb269567c869472d4410eda480a2aa77 | |
| parent | 86e405cfcbd467a812f6d4c4366477e6d6e0a430 (diff) | |
| download | emacs-5db17239182556967bfaa5723214f31b8a91db6f.tar.gz emacs-5db17239182556967bfaa5723214f31b8a91db6f.zip | |
(zone): Let-bind show-trailing-whitespace to nil.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/play/zone.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b8546373c97..51f225f30ed 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-10-01 Thien-Thi Nguyen <ttn@gnuvola.org> | ||
| 2 | |||
| 3 | * play/zone.el (zone): Let-bind show-trailing-whitespace to nil. | ||
| 4 | Suggested by Chris Moore <christopher.ian.moore@gmail.com>. | ||
| 5 | |||
| 1 | 2007-10-01 Jay Belanger <jay.p.belanger@gmail.com> | 6 | 2007-10-01 Jay Belanger <jay.p.belanger@gmail.com> |
| 2 | 7 | ||
| 3 | * calc/calc-math.el (math-largest-emacs-expt): Handle the cases | 8 | * calc/calc-math.el (math-largest-emacs-expt): Handle the cases |
diff --git a/lisp/play/zone.el b/lisp/play/zone.el index c146f4baa83..896c1d4ac0a 100644 --- a/lisp/play/zone.el +++ b/lisp/play/zone.el | |||
| @@ -138,6 +138,7 @@ If the element is a function or a list of a function and a number, | |||
| 138 | (sit-for 0 500) | 138 | (sit-for 0 500) |
| 139 | (let ((pgm (elt zone-programs (random (length zone-programs)))) | 139 | (let ((pgm (elt zone-programs (random (length zone-programs)))) |
| 140 | (ct (and f (frame-parameter f 'cursor-type))) | 140 | (ct (and f (frame-parameter f 'cursor-type))) |
| 141 | (show-trailing-whitespace nil) | ||
| 141 | (restore (list '(kill-buffer outbuf)))) | 142 | (restore (list '(kill-buffer outbuf)))) |
| 142 | (when ct | 143 | (when ct |
| 143 | (modify-frame-parameters f '((cursor-type . (bar . 0)))) | 144 | (modify-frame-parameters f '((cursor-type . (bar . 0)))) |
| @@ -684,6 +685,7 @@ If nil, `zone-pgm-random-life' chooses a value from 0-3 (inclusive).") | |||
| 684 | (life (or zone-pgm-random-life-wait (random 4))) | 685 | (life (or zone-pgm-random-life-wait (random 4))) |
| 685 | (kill-buffer nil)))) | 686 | (kill-buffer nil)))) |
| 686 | 687 | ||
| 688 | |||
| 687 | (random t) | 689 | (random t) |
| 688 | 690 | ||
| 689 | ;;;;;;;;;;;;;;; | 691 | ;;;;;;;;;;;;;;; |