diff options
| author | Richard Stallman | 2015-04-05 08:36:56 -0400 |
|---|---|---|
| committer | Richard Stallman | 2015-04-05 08:42:43 -0400 |
| commit | 4e23cd0ccde4ad1e14fe2870ccf140487af649b2 (patch) | |
| tree | b709ac1e92a892f6ec1faa85eb59a9e5960c25dd /lisp/play | |
| parent | dca743f0941909a80e3f28c023977120b6203e20 (diff) | |
| parent | 16eec6fc55dcc05d1d819f18998e84a9580b2521 (diff) | |
| download | emacs-4e23cd0ccde4ad1e14fe2870ccf140487af649b2.tar.gz emacs-4e23cd0ccde4ad1e14fe2870ccf140487af649b2.zip | |
* mail/rmail.el (rmail-show-message-1): When displaying a mime message,
indicate start and finish in the echo area.
* mail/rmail.el (rmail-epa-decrypt): Disregard <pre> before armor.
Ignore more kinds of whitespace in mime headers.
Modify the decrypted mime part's mime type so it will be displayed
by default when visiting this message again.
* net/browse-url.el (browse-url-firefox-program): Prefer IceCat, doc.
(browse-url-firefox-arguments)
(browse-url-firefox-startup-arguments): Doc fix.
Diffstat (limited to 'lisp/play')
| -rw-r--r-- | lisp/play/gamegrid.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index b4c3c594731..df06d5a6ab2 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el | |||
| @@ -462,22 +462,22 @@ FILE is created there." | |||
| 462 | ;; `gamegrid-add-score' was supposed to be used in the past and | 462 | ;; `gamegrid-add-score' was supposed to be used in the past and |
| 463 | ;; is covered here for backward-compatibility. | 463 | ;; is covered here for backward-compatibility. |
| 464 | ;; | 464 | ;; |
| 465 | ;; 2. The helper program "update-game-score" is setuid and the | 465 | ;; 2. The helper program "update-game-score" is setgid or setuid |
| 466 | ;; file FILE does already exist in a system wide shared game | 466 | ;; and the file FILE does already exist in a system wide shared |
| 467 | ;; directory. This should be the normal case on POSIX systems, | 467 | ;; game directory. This should be the normal case on POSIX |
| 468 | ;; if the game was installed system wide. Use | 468 | ;; systems, if the game was installed system wide. Use |
| 469 | ;; "update-game-score" to add the score to the file in the | 469 | ;; "update-game-score" to add the score to the file in the |
| 470 | ;; shared game directory. | 470 | ;; shared game directory. |
| 471 | ;; | 471 | ;; |
| 472 | ;; 3. "update-game-score" is setuid, but the file FILE does *not* | 472 | ;; 3. "update-game-score" is setgid/setuid, but the file FILE does |
| 473 | ;; exist in the system wide shared game directory. Use | 473 | ;; *not* exist in the system wide shared game directory. Use |
| 474 | ;; `gamegrid-add-score-insecure' to create--if necessary--and | 474 | ;; `gamegrid-add-score-insecure' to create--if necessary--and |
| 475 | ;; update FILE. This is for the case that a user has installed | 475 | ;; update FILE. This is for the case that a user has installed |
| 476 | ;; a game on her own. | 476 | ;; a game on her own. |
| 477 | ;; | 477 | ;; |
| 478 | ;; 4. "update-game-score" is not setuid. Use it to create/update | 478 | ;; 4. "update-game-score" is not setgid/setuid. Use it to |
| 479 | ;; FILE in the user's home directory. There is presumably no | 479 | ;; create/update FILE in the user's home directory. There is |
| 480 | ;; shared game directory. | 480 | ;; presumably no shared game directory. |
| 481 | 481 | ||
| 482 | (defvar gamegrid-shared-game-dir) | 482 | (defvar gamegrid-shared-game-dir) |
| 483 | 483 | ||
| @@ -491,7 +491,7 @@ FILE is created there." | |||
| 491 | (gamegrid-add-score-insecure file score)) | 491 | (gamegrid-add-score-insecure file score)) |
| 492 | ((and gamegrid-shared-game-dir | 492 | ((and gamegrid-shared-game-dir |
| 493 | (file-exists-p (expand-file-name file shared-game-score-directory))) | 493 | (file-exists-p (expand-file-name file shared-game-score-directory))) |
| 494 | ;; Use the setuid (or setgid) "update-game-score" program | 494 | ;; Use the setgid (or setuid) "update-game-score" program |
| 495 | ;; to update a system-wide score file. | 495 | ;; to update a system-wide score file. |
| 496 | (gamegrid-add-score-with-update-game-score-1 file | 496 | (gamegrid-add-score-with-update-game-score-1 file |
| 497 | (expand-file-name file shared-game-score-directory) score)) | 497 | (expand-file-name file shared-game-score-directory) score)) |