aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-02-09 17:56:25 -0800
committerGlenn Morris2013-02-09 17:56:25 -0800
commit490a9458c8310140a255b30330e9940fb68e27ef (patch)
tree3788432fb3f95464bb087bebd43ed9d3aff32c6a /doc
parent9cbab8d6abe6aa4caae260c8ed37386103a34f8e (diff)
parentc4af1efc91cb57cc7dbaa1ee21b2d4b85fd3f87b (diff)
downloademacs-490a9458c8310140a255b30330e9940fb68e27ef.tar.gz
emacs-490a9458c8310140a255b30330e9940fb68e27ef.zip
Merge from emacs-24; up to 2012-12-15T12:19:04Z!juri@jurta.org
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/trouble.texi2
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/keymaps.texi4
4 files changed, 12 insertions, 2 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index d2f44eabb0e..bcd9c0c0693 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12013-02-10 Glenn Morris <rgm@gnu.org>
2
3 * trouble.texi (Checklist): Update bug keybinding.
4
12013-02-09 Eli Zaretskii <eliz@gnu.org> 52013-02-09 Eli Zaretskii <eliz@gnu.org>
2 6
3 * msdog.texi (Text and Binary): Delete the description of 7 * msdog.texi (Text and Binary): Delete the description of
diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi
index 97c0ff97530..1c667bc56cb 100644
--- a/doc/emacs/trouble.texi
+++ b/doc/emacs/trouble.texi
@@ -662,7 +662,7 @@ will be sent to the Emacs maintainers at @email{bug-gnu-emacs@@gnu.org}.
662(If you want to suggest an improvement or new feature, use the same 662(If you want to suggest an improvement or new feature, use the same
663address.) If you cannot send mail from inside Emacs, you can copy the 663address.) If you cannot send mail from inside Emacs, you can copy the
664text of your report to your normal mail client (if your system 664text of your report to your normal mail client (if your system
665supports it, you can type @kbd{C-c m} to have Emacs do this for you) 665supports it, you can type @kbd{C-c M-i} to have Emacs do this for you)
666and send it to that address. Or you can simply send an email to that 666and send it to that address. Or you can simply send an email to that
667address describing the problem. 667address describing the problem.
668 668
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 90b2349387f..a61d84a77b1 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-02-10 Glenn Morris <rgm@gnu.org>
2
3 * keymaps.texi (Creating Keymaps): Update make-keymap result.
4
12013-02-09 Eli Zaretskii <eliz@gnu.org> 52013-02-09 Eli Zaretskii <eliz@gnu.org>
2 6
3 * modes.texi (%-Constructs): Remove the description of %t. 7 * modes.texi (%-Constructs): Remove the description of %t.
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index 7c66bbec801..54211d1aa0b 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -327,10 +327,12 @@ these characters to @code{nil}, and does not bind any other kind of
327event. The argument @var{prompt} specifies a 327event. The argument @var{prompt} specifies a
328prompt string, as in @code{make-sparse-keymap}. 328prompt string, as in @code{make-sparse-keymap}.
329 329
330@c This example seems kind of pointless, but I guess it serves
331@c to contrast the result with make-sparse-keymap above.
330@example 332@example
331@group 333@group
332(make-keymap) 334(make-keymap)
333 @result{} (keymap #^[t nil nil nil @dots{} nil nil keymap]) 335 @result{} (keymap #^[nil nil keymap nil nil nil @dots{}])
334@end group 336@end group
335@end example 337@end example
336 338