aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoakim Verona2011-09-14 11:45:59 +0200
committerJoakim Verona2011-09-14 11:45:59 +0200
commit8d07d23ecd32b9e9f07234313c2e712a8c42b524 (patch)
treed5d925a00733d9a6d1f637b8f3dfdd40c33a2fe7 /doc
parent8918dacdb34e848edcd894e32de5b7b4e2fa19ea (diff)
parent46888499da0bb61ce47d339275d5a0c757a02eb2 (diff)
downloademacs-8d07d23ecd32b9e9f07234313c2e712a8c42b524.tar.gz
emacs-8d07d23ecd32b9e9f07234313c2e712a8c42b524.zip
upstream
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog9
-rw-r--r--doc/emacs/frames.texi12
-rw-r--r--doc/emacs/sending.texi11
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/processes.texi6
-rw-r--r--doc/misc/ChangeLog11
-rw-r--r--doc/misc/gnus.texi51
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 @@
12011-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
62011-09-10 Eli Zaretskii <eliz@gnu.org>
7
8 * sending.texi (Mail Misc): Document mail-add-attachment.
9
12011-09-04 Eli Zaretskii <eliz@gnu.org> 102011-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
451Delete all frames except the selected one. 451Delete 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
455the last frame, to prevent you from losing the ability to interact 455last frame. This prevents you from losing the ability to interact
456with the Emacs process. Note that when Emacs is run as a daemon 456with 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
458remains after all the ordinary, interactive frames are deleted. In 458remains after all the ordinary, interactive frames are deleted. In
459this case, @kbd{C-x 5 0} can delete the last interactive frame; you 459this case, @kbd{C-x 5 0} can delete the last interactive frame; you
460can use @command{emacsclient} to reconnect to the Emacs session. 460can 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
463frames on the current terminal. For example, if you call it from an X
464frame, it deletes the other frames on that X display; if the Emacs
465process has frames open on other X displays or text terminals, those
466are 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
464focus-switching between windows, in order for @kbd{C-x 5 o} 470focus-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
559is done using the MIME (Multipurpose Internet Mail Extensions) 559is done using the Multipurpose Internet Mail Extensions
560standard. 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,
563and for the attachment's @dfn{content type}, @dfn{description}, and 563and 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,
570or @samp{attachment}, which means the link will be separate from the 570or @samp{attachment}, which means the link will be separate from the
571body. 571body.
572 572
573@findex mail-add-attachment
574 The @code{mml-attach-file} command is specific to Message mode; in
575Mail mode use @kbd{mail-add-attachment} instead. It will prompt only
576for the name of the file, and will determine the content type and the
577disposition automatically. If you want to include some description of
578the 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
574mail buffer. Instead, some placeholder text is inserted into the mail 581mail buffer. Instead, some placeholder text is inserted into the mail
575buffer, like this: 582buffer, 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 @@
12011-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
12011-08-30 Dani Moncayo <dmoncayo@gmail.com> (tiny change) 62011-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
1981buffer for the purpose. The buffer name is the server's buffer name 1981buffer for the purpose. The buffer name is the server's buffer name
1982or process name, concatenated with the client identification string. 1982or process name, concatenated with the client identification string.
1983 1983
1984The server's process buffer value is never used directly by Emacs, but 1984The server's process buffer value is never used directly, but the log
1985it is passed to the log function, which can log connections by 1985function can retrieve it and use it to log connections by inserting
1986inserting text there. 1986text there.
1987 1987
1988@item 1988@item
1989The communication type and the process filter and sentinel are 1989The 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 @@
12011-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
72011-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
12011-08-15 Suvayu Ali <fatkasuvayu+linux@gmail.com> (tiny change) 122011-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
1011news. This variable should be a list where the first element says 1011news. 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
1013native method. All groups not fetched with this method are 1013native method. All groups not fetched with this method are
1014foreign groups. 1014secondary or foreign groups.
1015 1015
1016For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where 1016For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where
1017you want to get your daily dosage of news from, you'd say: 1017you 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}.
2983Predicates include @code{tick}, @code{unsend}, @code{undownload}, 2983Predicates 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
3338List groups limited within the current selection 3338Further 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
3340with dormant articles with @kbd{A ?}, you can then further limit with
3341@kbd{A / c}, which will then limit to groups with cached articles,
3342giving you the groups that have both dormant articles and cached
3343articles.
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
6169Articles that according to the server haven't been shown to the user
6170before are marked with a @samp{N} in the second column
6171(@code{gnus-recent-mark}). Note that not all servers support this
6172mark, 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
6177Articles that haven't been seen before in Gnus by the user are marked 6173Articles that haven't been seen before in Gnus by the user are marked
6178with a @samp{.} in the second column (@code{gnus-unseen-mark}). 6174with a @samp{.} in the second column (@code{gnus-unseen-mark}).
6179Compare 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
22268Require confirmation before exiting Gnus. This variable is @code{t} by 22263If non-@code{nil}, require a confirmation when exiting Gnus. If
22269default. 22264@code{quiet}, update any active summary buffers automatically without
22265querying. 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
27993built. 27989built.
27994 27990
27995@item 27991@item
27996The new @code{recent} mark @samp{.} indicates newly arrived messages (as
27997opposed to old but unread messages).
27998
27999@item
28000Gnus supports RFC 2369 mailing list headers, and adds a number of 27992Gnus supports RFC 2369 mailing list headers, and adds a number of
28001related commands in mailing list groups. @xref{Mailing List}. 27993related 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
28586Gnus will always use one method (and back end) as the @dfn{native}, or 28578Gnus will always use one method (and back end) as the @dfn{native}, or
28587default, way of getting news. 28579default, way of getting news. Groups from the native select method
28580have names like @samp{gnu.emacs.gnus}.
28588 28581
28589@item foreign 28582@item foreign
28590@cindex foreign 28583@cindex foreign
28591You can also have any number of foreign groups active at the same time. 28584You can also have any number of foreign groups active at the same
28592These are groups that use non-native non-secondary back ends for getting 28585time. These are groups that use non-native non-secondary back ends
28593news. 28586for 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
28597Secondary back ends are somewhere half-way between being native and being 28591Secondary back ends are somewhere half-way between being native and
28598foreign, but they mostly act like they are native. 28592being foreign, but they mostly act like they are native, but they, too
28593have 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.
29572marks (preserving all marks not mentioned). @var{mark} is a list of 29567marks (preserving all marks not mentioned). @var{mark} is a list of
29573marks; where each mark is a symbol. Currently used marks are 29568marks; 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
29577possible, not limit itself to these. 29572itself to these.
29578 29573
29579Given contradictory actions, the last action in the list should be the 29574Given contradictory actions, the last action in the list should be the
29580effective one. That is, if your action contains a request to add the 29575effective one. That is, if your action contains a request to add the