diff options
| author | Joakim Verona | 2011-09-15 16:11:02 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-09-15 16:11:02 +0200 |
| commit | b728e88fdffdd34065f996682113b072bbc7008c (patch) | |
| tree | c0622d02a303baaf2d6c4db2b50866305ca960e0 /doc | |
| parent | 8d07d23ecd32b9e9f07234313c2e712a8c42b524 (diff) | |
| parent | 39b3d70b17789e237021787ab80ccdd123b97312 (diff) | |
| download | emacs-b728e88fdffdd34065f996682113b072bbc7008c.tar.gz emacs-b728e88fdffdd34065f996682113b072bbc7008c.zip | |
upstream
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/package.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/lists.texi | 2 |
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 @@ | |||
| 1 | 2011-09-15 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * package.texi (Package Menu): Add package-menu-mark-upgrades. | ||
| 4 | |||
| 1 | 2011-09-12 Eric Hanchrow <eric.hanchrow@gmail.com> | 5 | 2011-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. | |||
| 107 | Remove any installation or deletion mark previously added to the | 107 | Remove any installation or deletion mark previously added to the |
| 108 | current line by an @kbd{i} or @kbd{d} command. | 108 | current line by an @kbd{i} or @kbd{d} command. |
| 109 | 109 | ||
| 110 | @item U | ||
| 111 | Mark all package with a newer available version for ``upgrading'' | ||
| 112 | (@code{package-menu-mark-upgrades}). This places an installation mark | ||
| 113 | on the new available versions, and a deletion mark on the old | ||
| 114 | installed versions. | ||
| 115 | |||
| 110 | @item x | 116 | @item x |
| 111 | Download and install all packages marked with @kbd{i}, and their | 117 | Download and install all packages marked with @kbd{i}, and their |
| 112 | dependencies; also, delete all packages marked with @kbd{d} | 118 | dependencies; 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 @@ | |||
| 1 | 2011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * lists.texi (Sets And Lists): Fix typo. (Bug#9393) | ||
| 4 | |||
| 1 | 2011-09-11 Juanma Barranquero <lekktu@gmail.com> | 5 | 2011-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: | |||
| 1454 | l | 1454 | l |
| 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))) |