aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/package.texi6
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/lists.texi2
4 files changed, 15 insertions, 1 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 5fba9eda3b0..d87493d57b3 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12011-09-15 Chong Yidong <cyd@stupidchicken.com>
2
3 * package.texi (Package Menu): Add package-menu-mark-upgrades.
4
12011-09-12 Eric Hanchrow <eric.hanchrow@gmail.com> 52011-09-12 Eric Hanchrow <eric.hanchrow@gmail.com>
2 6
3 * frames.texi (Frame Commands): Note that delete-other-frames only 7 * frames.texi (Frame Commands): Note that delete-other-frames only
diff --git a/doc/emacs/package.texi b/doc/emacs/package.texi
index 739a8ce6c65..b342cbbf18c 100644
--- a/doc/emacs/package.texi
+++ b/doc/emacs/package.texi
@@ -107,6 +107,12 @@ entails.
107Remove any installation or deletion mark previously added to the 107Remove any installation or deletion mark previously added to the
108current line by an @kbd{i} or @kbd{d} command. 108current line by an @kbd{i} or @kbd{d} command.
109 109
110@item U
111Mark all package with a newer available version for ``upgrading''
112(@code{package-menu-mark-upgrades}). This places an installation mark
113on the new available versions, and a deletion mark on the old
114installed versions.
115
110@item x 116@item x
111Download and install all packages marked with @kbd{i}, and their 117Download and install all packages marked with @kbd{i}, and their
112dependencies; also, delete all packages marked with @kbd{d} 118dependencies; also, delete all packages marked with @kbd{d}
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 4873680d0a1..71dc8a8ff89 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
2
3 * lists.texi (Sets And Lists): Fix typo. (Bug#9393)
4
12011-09-11 Juanma Barranquero <lekktu@gmail.com> 52011-09-11 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * processes.texi (Network Servers): Clarify what the process 7 * processes.texi (Network Servers): Clarify what the process
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 7a530b602e0..056c924e72c 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1454,7 +1454,7 @@ For example:
1454l 1454l
1455 @result{} ((2) (1)) 1455 @result{} ((2) (1))
1456;; @r{If you want to change @code{l} reliably,} 1456;; @r{If you want to change @code{l} reliably,}
1457;; @r{write @code{(setq l (delete elt l))}.} 1457;; @r{write @code{(setq l (delete '(2) l))}.}
1458@end group 1458@end group
1459@group 1459@group
1460(setq l '((2) (1) (2))) 1460(setq l '((2) (1) (2)))