diff options
| author | Glenn Morris | 2008-02-23 19:35:42 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-23 19:35:42 +0000 |
| commit | 0329d8a3e84dcf8cc2fb1d8913f86a935ebaeb1e (patch) | |
| tree | cdbf26a874c6ab864e89bd666470561f573b1f99 | |
| parent | 0fc1e8febff30b4fb065e283bf267d1fa9f03025 (diff) | |
| download | emacs-0329d8a3e84dcf8cc2fb1d8913f86a935ebaeb1e.tar.gz emacs-0329d8a3e84dcf8cc2fb1d8913f86a935ebaeb1e.zip | |
(menu-bar-games-menu): Add Bubbles and Pong. Add :help for Solitaire and Tetris.
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/menu-bar.el | 12 |
3 files changed, 25 insertions, 3 deletions
| @@ -295,7 +295,8 @@ any invalid parts of your document. | |||
| 295 | attribute name or data value by using information about what is | 295 | attribute name or data value by using information about what is |
| 296 | allowed by the schema in that context. | 296 | allowed by the schema in that context. |
| 297 | 297 | ||
| 298 | ** A new game called `bubbles' has been added. | 298 | ** A new game called `bubbles' has been added. This is a version of |
| 299 | the "Same Game" with configurable difficulty level. | ||
| 299 | 300 | ||
| 300 | ** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt. | 301 | ** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt. |
| 301 | 302 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c22c36407a5..51a687ade61 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2008-02-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong. | ||
| 4 | Add :help for Solitaire and Tetris. | ||
| 5 | |||
| 6 | * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings. | ||
| 7 | (smtpmail-code-conv-from): Doc fix. Fix custom type. | ||
| 8 | (smtpmail-queue-index-file): Make it a defcustom. | ||
| 9 | (smtpmail-queue-index): Delete. | ||
| 10 | (smtpmail-send-it, smtpmail-send-queued-mail): | ||
| 11 | Use smtpmail-queue-index-file and smtpmail-queue-dir rather than | ||
| 12 | smtpmail-queue-index. | ||
| 13 | |||
| 1 | 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu> | 14 | 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 15 | ||
| 3 | * vc.el (vc-find-revision): Make vc-parent-buffer local before | 16 | * vc.el (vc-find-revision): Make vc-parent-buffer local before |
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 36cf45b55c5..9d6303314cd 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -1096,12 +1096,17 @@ mail status in mode line")) | |||
| 1096 | '(menu-item "Zone Out" zone | 1096 | '(menu-item "Zone Out" zone |
| 1097 | :help "Play tricks with Emacs display when Emacs is idle")) | 1097 | :help "Play tricks with Emacs display when Emacs is idle")) |
| 1098 | (define-key menu-bar-games-menu [tetris] | 1098 | (define-key menu-bar-games-menu [tetris] |
| 1099 | '(menu-item "Tetris" tetris)) | 1099 | '(menu-item "Tetris" tetris |
| 1100 | :help "Falling blocks game")) | ||
| 1100 | (define-key menu-bar-games-menu [solitaire] | 1101 | (define-key menu-bar-games-menu [solitaire] |
| 1101 | '(menu-item "Solitaire" solitaire)) | 1102 | '(menu-item "Solitaire" solitaire |
| 1103 | :help "Get rid of all the stones")) | ||
| 1102 | (define-key menu-bar-games-menu [snake] | 1104 | (define-key menu-bar-games-menu [snake] |
| 1103 | '(menu-item "Snake" snake | 1105 | '(menu-item "Snake" snake |
| 1104 | :help "Move snake around avoiding collisions")) | 1106 | :help "Move snake around avoiding collisions")) |
| 1107 | (define-key menu-bar-games-menu [pong] | ||
| 1108 | '(menu-item "Pong" pong | ||
| 1109 | :help "Bounce the ball to your opponent")) | ||
| 1105 | (define-key menu-bar-games-menu [mult] | 1110 | (define-key menu-bar-games-menu [mult] |
| 1106 | '(menu-item "Multiplication Puzzle" mpuz | 1111 | '(menu-item "Multiplication Puzzle" mpuz |
| 1107 | :help "Exercise brain with multiplication")) | 1112 | :help "Exercise brain with multiplication")) |
| @@ -1114,6 +1119,9 @@ mail status in mode line")) | |||
| 1114 | (define-key menu-bar-games-menu [gomoku] | 1119 | (define-key menu-bar-games-menu [gomoku] |
| 1115 | '(menu-item "Gomoku" gomoku | 1120 | '(menu-item "Gomoku" gomoku |
| 1116 | :help "Mark 5 contiguous squares (like tic-tac-toe)")) | 1121 | :help "Mark 5 contiguous squares (like tic-tac-toe)")) |
| 1122 | (define-key menu-bar-games-menu [bubbles] | ||
| 1123 | '(menu-item "Bubbles" bubbles | ||
| 1124 | :help "Remove all bubbles using the fewest moves")) | ||
| 1117 | (define-key menu-bar-games-menu [black-box] | 1125 | (define-key menu-bar-games-menu [black-box] |
| 1118 | '(menu-item "Blackbox" blackbox | 1126 | '(menu-item "Blackbox" blackbox |
| 1119 | :help "Find balls in a black box by shooting rays")) | 1127 | :help "Find balls in a black box by shooting rays")) |