aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/misc.texi9
-rw-r--r--doc/lispref/ChangeLog8
-rw-r--r--doc/lispref/modes.texi12
-rw-r--r--doc/lispref/objects.texi4
5 files changed, 32 insertions, 5 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 8285a313191..55ec7b75cce 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12010-08-21 Glenn Morris <rgm@gnu.org>
2
3 * misc.texi (Amusements): Mention bubbles and animate.
4
12010-07-31 Eli Zaretskii <eliz@gnu.org> 52010-07-31 Eli Zaretskii <eliz@gnu.org>
2 6
3 * files.texi (Visiting): Add more index entries for 7 * files.texi (Visiting): Add more index entries for
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index 387e1be715a..029cf410664 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -2784,6 +2784,10 @@ bored, try an argument of 9. Sit back and watch.
2784 If you want a little more personal involvement, try @kbd{M-x gomoku}, 2784 If you want a little more personal involvement, try @kbd{M-x gomoku},
2785which plays the game Go Moku with you. 2785which plays the game Go Moku with you.
2786 2786
2787@findex bubbles
2788 @kbd{M-x bubbles} is a game in which the object is to remove as many
2789bubbles as you can in the smallest number of moves.
2790
2787@findex blackbox 2791@findex blackbox
2788@findex mpuz 2792@findex mpuz
2789@findex 5x5 2793@findex 5x5
@@ -2832,6 +2836,11 @@ bats.
2832@kbd{M-x solitaire} plays a game of solitaire in which you jump pegs 2836@kbd{M-x solitaire} plays a game of solitaire in which you jump pegs
2833across other pegs. 2837across other pegs.
2834 2838
2839@findex animate-birthday-present
2840@cindex animate
2841The @code{animate} package makes text dance. For an example, try
2842@kbd{M-x animate-birthday-present}.
2843
2835@findex studlify-region 2844@findex studlify-region
2836@cindex StudlyCaps 2845@cindex StudlyCaps
2837@kbd{M-x studlify-region} studlify-cases the region, producing 2846@kbd{M-x studlify-region} studlify-cases the region, producing
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 459bd925cf4..9c09410c849 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,11 @@
12010-08-22 Chong Yidong <cyd@stupidchicken.com>
2
3 * modes.texi (Defining Minor Modes): Doc fix (Bug#6880).
4
52010-08-22 Chong Yidong <cyd@stupidchicken.com>
6
7 * objects.texi (Bool-Vector Type): Minor definition tweak (Bug#6878).
8
12010-08-20 Eli Zaretskii <eliz@gnu.org> 92010-08-20 Eli Zaretskii <eliz@gnu.org>
2 10
3 * commands.texi (Misc Events): Add cross-references to where 11 * commands.texi (Misc Events): Add cross-references to where
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 3953da59b93..12f16b67663 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -1411,14 +1411,20 @@ The string @var{lighter} says what to display in the mode line
1411when the mode is enabled; if it is @code{nil}, the mode is not displayed 1411when the mode is enabled; if it is @code{nil}, the mode is not displayed
1412in the mode line. 1412in the mode line.
1413 1413
1414The optional argument @var{keymap} specifies the keymap for the minor mode. 1414The optional argument @var{keymap} specifies the keymap for the minor
1415It can be a variable name, whose value is the keymap, or it can be an alist 1415mode. If non-@code{nil}, it should be a variable name (whose value is
1416specifying bindings in this form: 1416a keymap), a keymap, or an alist of the form
1417 1417
1418@example 1418@example
1419(@var{key-sequence} . @var{definition}) 1419(@var{key-sequence} . @var{definition})
1420@end example 1420@end example
1421 1421
1422@noindent
1423where each @var{key-sequence} and @var{definition} are arguments
1424suitable for passing to @code{define-key} (@pxref{Changing Key
1425Bindings}). If @var{keymap} is a keymap or an alist, this also
1426defines the variable @code{@var{mode}-map}.
1427
1422The above three arguments @var{init-value}, @var{lighter}, and 1428The above three arguments @var{init-value}, @var{lighter}, and
1423@var{keymap} can be (partially) omitted when @var{keyword-args} are 1429@var{keymap} can be (partially) omitted when @var{keyword-args} are
1424used. The @var{keyword-args} consist of keywords followed by 1430used. The @var{keyword-args} consist of keywords followed by
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index 5c3ac13cdaf..c8ccb15a2d3 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -1189,8 +1189,8 @@ Syntax tables (@pxref{Syntax Tables}).
1189@node Bool-Vector Type 1189@node Bool-Vector Type
1190@subsection Bool-Vector Type 1190@subsection Bool-Vector Type
1191 1191
1192 A @dfn{bool-vector} is a one-dimensional array of elements that 1192 A @dfn{bool-vector} is a one-dimensional array whose elements must
1193must be @code{t} or @code{nil}. 1193be @code{t} or @code{nil}.
1194 1194
1195 The printed representation of a bool-vector is like a string, except 1195 The printed representation of a bool-vector is like a string, except
1196that it begins with @samp{#&} followed by the length. The string 1196that it begins with @samp{#&} followed by the length. The string