Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0329d8a3
Commit
0329d8a3
authored
Feb 23, 2008
by
Glenn Morris
Browse files
(menu-bar-games-menu): Add Bubbles and Pong. Add :help for Solitaire and Tetris.
parent
0fc1e8fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
3 deletions
+25
-3
etc/NEWS
etc/NEWS
+2
-1
lisp/ChangeLog
lisp/ChangeLog
+13
-0
lisp/menu-bar.el
lisp/menu-bar.el
+10
-2
No files found.
etc/NEWS
View file @
0329d8a3
...
...
@@ -295,7 +295,8 @@ any invalid parts of your document.
attribute name or data value by using information about what is
allowed by the schema in that context.
** A new game called `bubbles' has been added.
** A new game called `bubbles' has been added. This is a version of
the "Same Game" with configurable difficulty level.
** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt.
...
...
lisp/ChangeLog
View file @
0329d8a3
2008-02-23 Glenn Morris <rgm@gnu.org>
* menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
Add :help for Solitaire and Tetris.
* mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
(smtpmail-code-conv-from): Doc fix. Fix custom type.
(smtpmail-queue-index-file): Make it a defcustom.
(smtpmail-queue-index): Delete.
(smtpmail-send-it, smtpmail-send-queued-mail):
Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
smtpmail-queue-index.
2008-02-23 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-find-revision): Make vc-parent-buffer local before
...
...
lisp/menu-bar.el
View file @
0329d8a3
...
...
@@ -1096,12 +1096,17 @@ mail status in mode line"))
'(menu-item "
Zone
Out
" zone
:help "
Play
tricks
with
Emacs
display
when
Emacs
is
idle
"))
(define-key menu-bar-games-menu [tetris]
'(menu-item "
Tetris
" tetris))
'(menu-item "
Tetris
" tetris
:help "
Falling
blocks
game
"))
(define-key menu-bar-games-menu [solitaire]
'(menu-item "
Solitaire
" solitaire))
'(menu-item "
Solitaire
" solitaire
:help "
Get
rid
of
all
the
stones
"))
(define-key menu-bar-games-menu [snake]
'(menu-item "
Snake
" snake
:help "
Move
snake
around
avoiding
collisions
"))
(define-key menu-bar-games-menu [pong]
'(menu-item "
Pong
" pong
:help "
Bounce
the
ball
to
your
opponent
"))
(define-key menu-bar-games-menu [mult]
'(menu-item "
Multiplication
Puzzle
" mpuz
:help "
Exercise
brain
with
multiplication
"))
...
...
@@ -1114,6 +1119,9 @@ mail status in mode line"))
(define-key menu-bar-games-menu [gomoku]
'(menu-item "
Gomoku
" gomoku
:help "
Mark
5
contiguous
squares
(
like
tic-tac-toe
)
"))
(define-key menu-bar-games-menu [bubbles]
'(menu-item "
Bubbles
" bubbles
:help "
Remove
all
bubbles
using
the
fewest
moves
"))
(define-key menu-bar-games-menu [black-box]
'(menu-item "
Blackbox
" blackbox
:help "
Find
balls
in
a
black
box
by
shooting
rays
"))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment