diff options
| author | Joakim Verona | 2011-09-14 11:45:59 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-09-14 11:45:59 +0200 |
| commit | 8d07d23ecd32b9e9f07234313c2e712a8c42b524 (patch) | |
| tree | d5d925a00733d9a6d1f637b8f3dfdd40c33a2fe7 /doc | |
| parent | 8918dacdb34e848edcd894e32de5b7b4e2fa19ea (diff) | |
| parent | 46888499da0bb61ce47d339275d5a0c757a02eb2 (diff) | |
| download | emacs-8d07d23ecd32b9e9f07234313c2e712a8c42b524.tar.gz emacs-8d07d23ecd32b9e9f07234313c2e712a8c42b524.zip | |
upstream
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 9 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 12 | ||||
| -rw-r--r-- | doc/emacs/sending.texi | 11 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 6 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 11 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 51 |
7 files changed, 69 insertions, 36 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 56958417300..5fba9eda3b0 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2011-09-12 Eric Hanchrow <eric.hanchrow@gmail.com> | ||
| 2 | |||
| 3 | * frames.texi (Frame Commands): Note that delete-other-frames only | ||
| 4 | deletes frames on current terminal. | ||
| 5 | |||
| 6 | 2011-09-10 Eli Zaretskii <eliz@gnu.org> | ||
| 7 | |||
| 8 | * sending.texi (Mail Misc): Document mail-add-attachment. | ||
| 9 | |||
| 1 | 2011-09-04 Eli Zaretskii <eliz@gnu.org> | 10 | 2011-09-04 Eli Zaretskii <eliz@gnu.org> |
| 2 | 11 | ||
| 3 | * basic.texi (Inserting Text): Add index entries. (Bug#9433) | 12 | * basic.texi (Inserting Text): Add index entries. (Bug#9433) |
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index 328deaec357..8ca598c3348 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -448,17 +448,23 @@ terminal. | |||
| 448 | @item C-x 5 1 | 448 | @item C-x 5 1 |
| 449 | @kindex C-x 5 1 | 449 | @kindex C-x 5 1 |
| 450 | @findex delete-other-frames | 450 | @findex delete-other-frames |
| 451 | Delete all frames except the selected one. | 451 | Delete all frames on the current terminal, except the selected one. |
| 452 | @end table | 452 | @end table |
| 453 | 453 | ||
| 454 | The @kbd{C-x 5 0} (@code{delete-frame}) command will never delete | 454 | The @kbd{C-x 5 0} (@code{delete-frame}) command never deletes the |
| 455 | the last frame, to prevent you from losing the ability to interact | 455 | last frame. This prevents you from losing the ability to interact |
| 456 | with the Emacs process. Note that when Emacs is run as a daemon | 456 | with the Emacs process. Note that when Emacs is run as a daemon |
| 457 | (@pxref{Emacs Server}), there is always a ``virtual frame'' that | 457 | (@pxref{Emacs Server}), there is always a ``virtual frame'' that |
| 458 | remains after all the ordinary, interactive frames are deleted. In | 458 | remains after all the ordinary, interactive frames are deleted. In |
| 459 | this case, @kbd{C-x 5 0} can delete the last interactive frame; you | 459 | this case, @kbd{C-x 5 0} can delete the last interactive frame; you |
| 460 | can use @command{emacsclient} to reconnect to the Emacs session. | 460 | can use @command{emacsclient} to reconnect to the Emacs session. |
| 461 | 461 | ||
| 462 | The @kbd{C-x 5 1} (@code{delete-other-frames}) command only deletes | ||
| 463 | frames on the current terminal. For example, if you call it from an X | ||
| 464 | frame, it deletes the other frames on that X display; if the Emacs | ||
| 465 | process has frames open on other X displays or text terminals, those | ||
| 466 | are not deleted. | ||
| 467 | |||
| 462 | @vindex focus-follows-mouse | 468 | @vindex focus-follows-mouse |
| 463 | On X, you may have to tell Emacs how the window manager handles | 469 | On X, you may have to tell Emacs how the window manager handles |
| 464 | focus-switching between windows, in order for @kbd{C-x 5 o} | 470 | focus-switching between windows, in order for @kbd{C-x 5 o} |
diff --git a/doc/emacs/sending.texi b/doc/emacs/sending.texi index 02857459cc1..50ec852d740 100644 --- a/doc/emacs/sending.texi +++ b/doc/emacs/sending.texi | |||
| @@ -556,8 +556,8 @@ package, which provides more flexible citation | |||
| 556 | @cindex Multipurpose Internet Mail Extensions | 556 | @cindex Multipurpose Internet Mail Extensions |
| 557 | You can @dfn{attach} a file to an outgoing message by typing | 557 | You can @dfn{attach} a file to an outgoing message by typing |
| 558 | @kbd{C-c C-a} (@code{mml-attach-file}) in the mail buffer. Attaching | 558 | @kbd{C-c C-a} (@code{mml-attach-file}) in the mail buffer. Attaching |
| 559 | is done using the MIME (Multipurpose Internet Mail Extensions) | 559 | is done using the Multipurpose Internet Mail Extensions |
| 560 | standard. | 560 | (@acronym{MIME}) standard. |
| 561 | 561 | ||
| 562 | The @code{mml-attach-file} command prompts for the name of the file, | 562 | The @code{mml-attach-file} command prompts for the name of the file, |
| 563 | and for the attachment's @dfn{content type}, @dfn{description}, and | 563 | and for the attachment's @dfn{content type}, @dfn{description}, and |
| @@ -570,6 +570,13 @@ recipient will see a link to the attachment within the message body, | |||
| 570 | or @samp{attachment}, which means the link will be separate from the | 570 | or @samp{attachment}, which means the link will be separate from the |
| 571 | body. | 571 | body. |
| 572 | 572 | ||
| 573 | @findex mail-add-attachment | ||
| 574 | The @code{mml-attach-file} command is specific to Message mode; in | ||
| 575 | Mail mode use @kbd{mail-add-attachment} instead. It will prompt only | ||
| 576 | for the name of the file, and will determine the content type and the | ||
| 577 | disposition automatically. If you want to include some description of | ||
| 578 | the attached file, type that in the message body. | ||
| 579 | |||
| 573 | The actual contents of the attached file are not inserted into the | 580 | The actual contents of the attached file are not inserted into the |
| 574 | mail buffer. Instead, some placeholder text is inserted into the mail | 581 | mail buffer. Instead, some placeholder text is inserted into the mail |
| 575 | buffer, like this: | 582 | buffer, like this: |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3f52d684683..4873680d0a1 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-11 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * processes.texi (Network Servers): Clarify what the process | ||
| 4 | buffer is used for (bug#9233). | ||
| 5 | |||
| 1 | 2011-08-30 Dani Moncayo <dmoncayo@gmail.com> (tiny change) | 6 | 2011-08-30 Dani Moncayo <dmoncayo@gmail.com> (tiny change) |
| 2 | 7 | ||
| 3 | * lists.texi (Building Lists): Fix typo. | 8 | * lists.texi (Building Lists): Fix typo. |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 5d5b11497f7..d4f8ee9708b 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1981,9 +1981,9 @@ not get a separate process buffer; otherwise, Emacs creates a new | |||
| 1981 | buffer for the purpose. The buffer name is the server's buffer name | 1981 | buffer for the purpose. The buffer name is the server's buffer name |
| 1982 | or process name, concatenated with the client identification string. | 1982 | or process name, concatenated with the client identification string. |
| 1983 | 1983 | ||
| 1984 | The server's process buffer value is never used directly by Emacs, but | 1984 | The server's process buffer value is never used directly, but the log |
| 1985 | it is passed to the log function, which can log connections by | 1985 | function can retrieve it and use it to log connections by inserting |
| 1986 | inserting text there. | 1986 | text there. |
| 1987 | 1987 | ||
| 1988 | @item | 1988 | @item |
| 1989 | The communication type and the process filter and sentinel are | 1989 | The communication type and the process filter and sentinel are |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 8260df911a8..9826523227c 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus.texi (Listing Groups): Explain `gnus-group-list-limit'. | ||
| 4 | (Finding the News): Doc clarification. | ||
| 5 | (Terminology): Mention naming. | ||
| 6 | |||
| 7 | 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 8 | |||
| 9 | * gnus.texi: Remove mentions of `recent', which are now obsolete. | ||
| 10 | (Interactive): Document `quiet'. | ||
| 11 | |||
| 1 | 2011-08-15 Suvayu Ali <fatkasuvayu+linux@gmail.com> (tiny change) | 12 | 2011-08-15 Suvayu Ali <fatkasuvayu+linux@gmail.com> (tiny change) |
| 2 | 13 | ||
| 3 | * org.texi (Images in LaTeX export): rewrite. | 14 | * org.texi (Images in LaTeX export): rewrite. |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 439ff7fbc55..59c39893c13 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -1011,7 +1011,7 @@ The @code{gnus-select-method} variable says where Gnus should look for | |||
| 1011 | news. This variable should be a list where the first element says | 1011 | news. This variable should be a list where the first element says |
| 1012 | @dfn{how} and the second element says @dfn{where}. This method is your | 1012 | @dfn{how} and the second element says @dfn{where}. This method is your |
| 1013 | native method. All groups not fetched with this method are | 1013 | native method. All groups not fetched with this method are |
| 1014 | foreign groups. | 1014 | secondary or foreign groups. |
| 1015 | 1015 | ||
| 1016 | For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where | 1016 | For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where |
| 1017 | you want to get your daily dosage of news from, you'd say: | 1017 | you want to get your daily dosage of news from, you'd say: |
| @@ -2983,7 +2983,7 @@ The available operators are @code{not}, @code{and} and @code{or}. | |||
| 2983 | Predicates include @code{tick}, @code{unsend}, @code{undownload}, | 2983 | Predicates include @code{tick}, @code{unsend}, @code{undownload}, |
| 2984 | @code{unread}, @code{dormant}, @code{expire}, @code{reply}, | 2984 | @code{unread}, @code{dormant}, @code{expire}, @code{reply}, |
| 2985 | @code{killed}, @code{bookmark}, @code{score}, @code{save}, | 2985 | @code{killed}, @code{bookmark}, @code{score}, @code{save}, |
| 2986 | @code{cache}, @code{forward}, @code{unseen} and @code{recent}. | 2986 | @code{cache}, @code{forward}, and @code{unseen}. |
| 2987 | 2987 | ||
| 2988 | @end table | 2988 | @end table |
| 2989 | 2989 | ||
| @@ -3335,8 +3335,12 @@ List all groups with ticked articles (@code{gnus-group-list-ticked}). | |||
| 3335 | @item A / | 3335 | @item A / |
| 3336 | @kindex A / (Group) | 3336 | @kindex A / (Group) |
| 3337 | @findex gnus-group-list-limit | 3337 | @findex gnus-group-list-limit |
| 3338 | List groups limited within the current selection | 3338 | Further limit groups within the current selection |
| 3339 | (@code{gnus-group-list-limit}). | 3339 | (@code{gnus-group-list-limit}). If you've first limited to groups |
| 3340 | with dormant articles with @kbd{A ?}, you can then further limit with | ||
| 3341 | @kbd{A / c}, which will then limit to groups with cached articles, | ||
| 3342 | giving you the groups that have both dormant articles and cached | ||
| 3343 | articles. | ||
| 3340 | 3344 | ||
| 3341 | @item A f | 3345 | @item A f |
| 3342 | @kindex A f (Group) | 3346 | @kindex A f (Group) |
| @@ -6165,18 +6169,9 @@ religiously) are marked with an @samp{S} in the second column | |||
| 6165 | (@code{gnus-saved-mark}). | 6169 | (@code{gnus-saved-mark}). |
| 6166 | 6170 | ||
| 6167 | @item | 6171 | @item |
| 6168 | @vindex gnus-recent-mark | ||
| 6169 | Articles that according to the server haven't been shown to the user | ||
| 6170 | before are marked with a @samp{N} in the second column | ||
| 6171 | (@code{gnus-recent-mark}). Note that not all servers support this | ||
| 6172 | mark, in which case it simply never appears. Compare with | ||
| 6173 | @code{gnus-unseen-mark}. | ||
| 6174 | |||
| 6175 | @item | ||
| 6176 | @vindex gnus-unseen-mark | 6172 | @vindex gnus-unseen-mark |
| 6177 | Articles that haven't been seen before in Gnus by the user are marked | 6173 | Articles that haven't been seen before in Gnus by the user are marked |
| 6178 | with a @samp{.} in the second column (@code{gnus-unseen-mark}). | 6174 | with a @samp{.} in the second column (@code{gnus-unseen-mark}). |
| 6179 | Compare with @code{gnus-recent-mark}. | ||
| 6180 | 6175 | ||
| 6181 | @item | 6176 | @item |
| 6182 | @vindex gnus-downloaded-mark | 6177 | @vindex gnus-downloaded-mark |
| @@ -22265,8 +22260,9 @@ is @code{t} by default. | |||
| 22265 | 22260 | ||
| 22266 | @item gnus-interactive-exit | 22261 | @item gnus-interactive-exit |
| 22267 | @vindex gnus-interactive-exit | 22262 | @vindex gnus-interactive-exit |
| 22268 | Require confirmation before exiting Gnus. This variable is @code{t} by | 22263 | If non-@code{nil}, require a confirmation when exiting Gnus. If |
| 22269 | default. | 22264 | @code{quiet}, update any active summary buffers automatically without |
| 22265 | querying. The default value is @code{t}. | ||
| 22270 | @end table | 22266 | @end table |
| 22271 | 22267 | ||
| 22272 | 22268 | ||
| @@ -27993,10 +27989,6 @@ non-@code{nil}, the summary buffer is shown and updated as it's being | |||
| 27993 | built. | 27989 | built. |
| 27994 | 27990 | ||
| 27995 | @item | 27991 | @item |
| 27996 | The new @code{recent} mark @samp{.} indicates newly arrived messages (as | ||
| 27997 | opposed to old but unread messages). | ||
| 27998 | |||
| 27999 | @item | ||
| 28000 | Gnus supports RFC 2369 mailing list headers, and adds a number of | 27992 | Gnus supports RFC 2369 mailing list headers, and adds a number of |
| 28001 | related commands in mailing list groups. @xref{Mailing List}. | 27993 | related commands in mailing list groups. @xref{Mailing List}. |
| 28002 | 27994 | ||
| @@ -28584,18 +28576,21 @@ confusing. | |||
| 28584 | @item native | 28576 | @item native |
| 28585 | @cindex native | 28577 | @cindex native |
| 28586 | Gnus will always use one method (and back end) as the @dfn{native}, or | 28578 | Gnus will always use one method (and back end) as the @dfn{native}, or |
| 28587 | default, way of getting news. | 28579 | default, way of getting news. Groups from the native select method |
| 28580 | have names like @samp{gnu.emacs.gnus}. | ||
| 28588 | 28581 | ||
| 28589 | @item foreign | 28582 | @item foreign |
| 28590 | @cindex foreign | 28583 | @cindex foreign |
| 28591 | You can also have any number of foreign groups active at the same time. | 28584 | You can also have any number of foreign groups active at the same |
| 28592 | These are groups that use non-native non-secondary back ends for getting | 28585 | time. These are groups that use non-native non-secondary back ends |
| 28593 | news. | 28586 | for getting news. Foreign groups have names like |
| 28587 | @samp{nntp+news.gmane.org:gmane.emacs.gnus.devel}. | ||
| 28594 | 28588 | ||
| 28595 | @item secondary | 28589 | @item secondary |
| 28596 | @cindex secondary | 28590 | @cindex secondary |
| 28597 | Secondary back ends are somewhere half-way between being native and being | 28591 | Secondary back ends are somewhere half-way between being native and |
| 28598 | foreign, but they mostly act like they are native. | 28592 | being foreign, but they mostly act like they are native, but they, too |
| 28593 | have names like @samp{nntp+news.gmane.org:gmane.emacs.gnus.devel}. | ||
| 28599 | 28594 | ||
| 28600 | @item article | 28595 | @item article |
| 28601 | @cindex article | 28596 | @cindex article |
| @@ -29572,9 +29567,9 @@ propagate the mark information to the server. | |||
| 29572 | marks (preserving all marks not mentioned). @var{mark} is a list of | 29567 | marks (preserving all marks not mentioned). @var{mark} is a list of |
| 29573 | marks; where each mark is a symbol. Currently used marks are | 29568 | marks; where each mark is a symbol. Currently used marks are |
| 29574 | @code{read}, @code{tick}, @code{reply}, @code{expire}, @code{killed}, | 29569 | @code{read}, @code{tick}, @code{reply}, @code{expire}, @code{killed}, |
| 29575 | @code{dormant}, @code{save}, @code{download}, @code{unsend}, | 29570 | @code{dormant}, @code{save}, @code{download}, @code{unsend}, and |
| 29576 | @code{forward} and @code{recent}, but your back end should, if | 29571 | @code{forward}, but your back end should, if possible, not limit |
| 29577 | possible, not limit itself to these. | 29572 | itself to these. |
| 29578 | 29573 | ||
| 29579 | Given contradictory actions, the last action in the list should be the | 29574 | Given contradictory actions, the last action in the list should be the |
| 29580 | effective one. That is, if your action contains a request to add the | 29575 | effective one. That is, if your action contains a request to add the |