aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoakim Verona2013-03-04 00:04:13 +0100
committerJoakim Verona2013-03-04 00:04:13 +0100
commitf5bf5325b501b788df2afc4bd2ef3022d2c08b6d (patch)
tree79ee2a5d963e88fa621ef336a81f4a852ae263af /doc
parent85c8b5aba5b1a2b3e2a54c58838f091094610279 (diff)
parenteeb84739372b6235e54f0473a7d924cb07e5faae (diff)
downloademacs-f5bf5325b501b788df2afc4bd2ef3022d2c08b6d.tar.gz
emacs-f5bf5325b501b788df2afc4bd2ef3022d2c08b6d.zip
auto upstream
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi50
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/objects.texi4
-rw-r--r--doc/misc/ChangeLog18
-rw-r--r--doc/misc/mh-e.texi127
-rw-r--r--doc/misc/tramp.texi22
7 files changed, 119 insertions, 111 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 993d0d051e8..615551225cb 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12013-03-03 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi (Digression into C): Update example.
4 (defcustom): Fix typo.
5
12012-12-22 Glenn Morris <rgm@gnu.org> 62012-12-22 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (srcs): New variable, adding doclicense.texi. 8 * Makefile.in (srcs): New variable, adding doclicense.texi.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 3f9208c3c27..f1f9315747a 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -9116,8 +9116,8 @@ Lisp; it is written in C and is one of the primitives of the GNU Emacs
9116system. Since it is very simple, I will digress briefly from Lisp and 9116system. Since it is very simple, I will digress briefly from Lisp and
9117describe it here. 9117describe it here.
9118 9118
9119@c GNU Emacs 22 in /usr/local/src/emacs/src/editfns.c 9119@c GNU Emacs 24 in src/editfns.c
9120@c the DEFUN for buffer-substring-no-properties 9120@c the DEFUN for delete-and-extract-region
9121 9121
9122@need 1500 9122@need 1500
9123Like many of the other Emacs primitives, 9123Like many of the other Emacs primitives,
@@ -9127,22 +9127,15 @@ like this:
9127 9127
9128@smallexample 9128@smallexample
9129@group 9129@group
9130DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties, 9130DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
9131 Sbuffer_substring_no_properties, 2, 2, 0, 9131 Sdelete_and_extract_region, 2, 2, 0,
9132 doc: /* Return the characters of part of the buffer, 9132 doc: /* Delete the text between START and END and return it. */)
9133without the text properties. 9133 (Lisp_Object start, Lisp_Object end)
9134The two arguments START and END are character positions;
9135they can be in either order. */)
9136 (start, end)
9137 Lisp_Object start, end;
9138@{ 9134@{
9139 register int b, e;
9140
9141 validate_region (&start, &end); 9135 validate_region (&start, &end);
9142 b = XINT (start); 9136 if (XINT (start) == XINT (end))
9143 e = XINT (end); 9137 return empty_unibyte_string;
9144 9138 return del_range_1 (XINT (start), XINT (end), 1, 1);
9145 return make_buffer_string (b, e, 0);
9146@} 9139@}
9147@end group 9140@end group
9148@end smallexample 9141@end smallexample
@@ -9192,20 +9185,9 @@ and provides a prompt.
9192 9185
9193@item 9186@item
9194The seventh part is a documentation string, just like the one for a 9187The seventh part is a documentation string, just like the one for a
9195function written in Emacs Lisp, except that every newline must be 9188function written in Emacs Lisp. This is written as a C comment. (When
9196written explicitly as @samp{\n} followed by a backslash and carriage 9189you build Emacs, the program @command{lib-src/make-docfile} extracts
9197return. 9190these comments and uses them to make the ``real'' documentation.)
9198
9199@need 1000
9200Thus, the first two lines of documentation for @code{goto-char} are
9201written like this:
9202
9203@smallexample
9204@group
9205 "Set point to POSITION, a number or marker.\n\
9206Beginning of buffer is position (point-min), end is (point-max)."
9207@end group
9208@end smallexample
9209@end itemize 9191@end itemize
9210 9192
9211@need 1200 9193@need 1200
@@ -9218,15 +9200,15 @@ consists of the following four lines:
9218@group 9200@group
9219validate_region (&start, &end); 9201validate_region (&start, &end);
9220if (XINT (start) == XINT (end)) 9202if (XINT (start) == XINT (end))
9221 return build_string (""); 9203 return empty_unibyte_string;
9222return del_range_1 (XINT (start), XINT (end), 1, 1); 9204return del_range_1 (XINT (start), XINT (end), 1, 1);
9223@end group 9205@end group
9224@end smallexample 9206@end smallexample
9225 9207
9226The @code{validate_region} function checks whether the values 9208The @code{validate_region} function checks whether the values
9227passed as the beginning and end of the region are the proper type and 9209passed as the beginning and end of the region are the proper type and
9228are within range. If the beginning and end positions are the same, 9210are within range. If the beginning and end positions are the same,
9229then return and empty string. 9211then return an empty string.
9230 9212
9231The @code{del_range_1} function actually deletes the text. It is a 9213The @code{del_range_1} function actually deletes the text. It is a
9232complex function we will not look into. It updates the buffer and 9214complex function we will not look into. It updates the buffer and
@@ -17010,7 +16992,7 @@ For example, the customizable user option variable
17010 "Normal hook run when entering Text mode and many related modes." 16992 "Normal hook run when entering Text mode and many related modes."
17011 :type 'hook 16993 :type 'hook
17012 :options '(turn-on-auto-fill flyspell-mode) 16994 :options '(turn-on-auto-fill flyspell-mode)
17013 :group 'data) 16995 :group 'wp)
17014@end group 16996@end group
17015@end smallexample 16997@end smallexample
17016 16998
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 42f5b5f5536..16866d5c8c9 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-03-03 Glenn Morris <rgm@gnu.org>
2
3 * objects.texi (Symbol Type): Fix typo.
4
12013-02-28 Bastien Guerry <bzg@gnu.org> 52013-02-28 Bastien Guerry <bzg@gnu.org>
2 6
3 * variables.texi (File Local Variables): Fix reference. 7 * variables.texi (File Local Variables): Fix reference.
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index 0437d2337a3..3b7dc41335b 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -565,8 +565,8 @@ Lisp, upper case and lower case letters are distinct.
565@end quotation 565@end quotation
566 566
567 Here are several examples of symbol names. Note that the @samp{+} in 567 Here are several examples of symbol names. Note that the @samp{+} in
568the fifth example is escaped to prevent it from being read as a number. 568the fourth example is escaped to prevent it from being read as a number.
569This is not necessary in the fourth example because the rest of the name 569This is not necessary in the sixth example because the rest of the name
570makes it invalid as a number. 570makes it invalid as a number.
571 571
572@example 572@example
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index b256bac417f..eda50177720 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,21 @@
12013-03-03 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (External methods): Tramp does not connect Android
4 devices by itself.
5
62013-03-02 Bill Wohler <wohler@newt.com>
7
8 Release MH-E manual version 8.5.
9
10 * mh-e.texi (VERSION, EDITION, UPDATED, UPDATE-MONTH): Update for
11 release 8.5.
12
13 * mh-e.texi (Preface, Conventions, Getting Started)
14 (Using This Manual, Folder Selection, Viewing, Aliases)
15 (Identities, Speedbar, Menu Bar, Tool Bar, Scan Line Formats)
16 (Bug Reports, Mailing Lists, MH FAQ and Support, Getting MH-E):
17 Update URLs.
18
12013-03-01 Michael Albinus <michael.albinus@gmx.de> 192013-03-01 Michael Albinus <michael.albinus@gmx.de>
2 20
3 * tramp.texi (Inline methods): Remove "ssh1", "ssh2", "plink1" 21 * tramp.texi (Inline methods): Remove "ssh1", "ssh2", "plink1"
diff --git a/doc/misc/mh-e.texi b/doc/misc/mh-e.texi
index 756d5d52996..08b1164f53a 100644
--- a/doc/misc/mh-e.texi
+++ b/doc/misc/mh-e.texi
@@ -8,12 +8,12 @@
8@c %**end of header 8@c %**end of header
9 9
10@c Version of the software and manual. 10@c Version of the software and manual.
11@set VERSION 8.4 11@set VERSION 8.5
12@c Edition of the manual. It is either empty for the first edition or 12@c Edition of the manual. It is either empty for the first edition or
13@c has the form ", nth Edition" (without the quotes). 13@c has the form ", nth Edition" (without the quotes).
14@set EDITION 14@set EDITION
15@set UPDATED 2012-11-25 15@set UPDATED 2013-03-02
16@set UPDATE-MONTH November, 2012 16@set UPDATE-MONTH March, 2013
17 17
18@c Other variables. 18@c Other variables.
19@set MH-BOOK-HOME http://rand-mh.sourceforge.net/book/mh 19@set MH-BOOK-HOME http://rand-mh.sourceforge.net/book/mh
@@ -236,7 +236,7 @@ read an online tutorial by starting GNU Emacs and typing @kbd{C-h t}
236@ref{top, , GNU Emacs Manual, emacs, GNU Emacs Manual}, 236@ref{top, , GNU Emacs Manual, emacs, GNU Emacs Manual},
237@end ifinfo 237@end ifinfo
238@ifhtml 238@ifhtml
239@uref{http://www.gnu.org/software/emacs/manual/html_node/, 239@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/,
240@cite{GNU Emacs Manual}}, 240@cite{GNU Emacs Manual}},
241@end ifhtml 241@end ifhtml
242from the Free Software Foundation. 242from the Free Software Foundation.
@@ -255,9 +255,9 @@ version is distributed with Emacs and can be accessed with the
255@command{info} command (@samp{info mh-e}) or within Emacs (@kbd{C-h i 255@command{info} command (@samp{info mh-e}) or within Emacs (@kbd{C-h i
256m mh-e @key{RET}}). The online version is available at 256m mh-e @key{RET}}). The online version is available at
257@uref{http://mh-e.sourceforge.net/manual/, SourceForge}. Another great 257@uref{http://mh-e.sourceforge.net/manual/, SourceForge}. Another great
258online resource is the book @uref{http://www.ics.uci.edu/~mh/book/, 258online resource is the book
259@cite{MH & nmh: Email for Users & Programmers}} (also known as 259@uref{http://rand-mh.sourceforge.net/book/, @cite{MH & nmh: Email for
260@dfn{the MH book}). 260Users & Programmers}} (also known as @dfn{the MH book}).
261 261
262I hope you enjoy this manual! If you have any comments, or suggestions 262I hope you enjoy this manual! If you have any comments, or suggestions
263for this document, please let me know. 263for this document, please let me know.
@@ -384,7 +384,7 @@ GNU Emacs Manual}.
384@end ifnothtml 384@end ifnothtml
385@ifhtml 385@ifhtml
386See section 386See section
387@uref{http://www.gnu.org/software/emacs/manual/html_node/Easy-Customization.html, 387@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Easy-Customization.html,
388Easy Customization} in @cite{The GNU Emacs Manual}. 388Easy Customization} in @cite{The GNU Emacs Manual}.
389@end ifhtml 389@end ifhtml
390@xref{Options}. 390@xref{Options}.
@@ -404,7 +404,7 @@ GNU Emacs Manual}.
404@end ifnothtml 404@end ifnothtml
405@ifhtml 405@ifhtml
406See section 406See section
407@uref{http://www.gnu.org/software/emacs/manual/html_node/Face-Customization.html, 407@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Face-Customization.html,
408Face Customization} in @cite{The GNU Emacs Manual}. 408Face Customization} in @cite{The GNU Emacs Manual}.
409@end ifhtml 409@end ifhtml
410 410
@@ -422,7 +422,7 @@ Emacs Manual}
422@end ifnothtml 422@end ifnothtml
423@ifhtml 423@ifhtml
424See section 424See section
425@uref{http://www.gnu.org/software/emacs/manual/html_node/Hooks.html, 425@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Hooks.html,
426Hooks} in @cite{The GNU Emacs Manual} 426Hooks} in @cite{The GNU Emacs Manual}
427@end ifhtml 427@end ifhtml
428for a description about @dfn{normal hooks} and @dfn{abnormal hooks}. 428for a description about @dfn{normal hooks} and @dfn{abnormal hooks}.
@@ -473,7 +473,7 @@ point.
473@end ifnothtml 473@end ifnothtml
474@ifhtml 474@ifhtml
475See the section 475See the section
476@uref{http://www.gnu.org/software/emacs/manual/html_node/Completion.html, 476@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Completion.html,
477Completion} in @cite{The GNU Emacs Manual}. 477Completion} in @cite{The GNU Emacs Manual}.
478@end ifhtml 478@end ifhtml
479Note that @key{SPC} cannot be used for completing filenames and 479Note that @key{SPC} cannot be used for completing filenames and
@@ -550,12 +550,12 @@ to install MH or tell MH-E where to find MH.
550@cindex GNU mailutils MH 550@cindex GNU mailutils MH
551 551
552If you don't have MH on your system already, you must install a 552If you don't have MH on your system already, you must install a
553variant of MH@. The Debian mh-e package does this for you automatically 553variant of MH@. The Debian mh-e package does this for you
554(@pxref{Getting MH-E}). Most people use 554automatically (@pxref{Getting MH-E}). Most people use
555@uref{http://www.nongnu.org/nmh/, nmh}, but you may be interested in 555@uref{http://www.nongnu.org/nmh/, nmh}, but you may be interested in
556trying out @uref{http://www.gnu.org/software/mailutils/, GNU mailutils 556trying out @uref{http://mailutils.org/, GNU mailutils MH}, which
557MH}, which supports IMAP@. Your GNU/Linux distribution probably has 557supports IMAP@. Your GNU/Linux distribution probably has packages for
558packages for both of these. 558both of these.
559 559
560@cindex @command{install-mh} 560@cindex @command{install-mh}
561@cindex MH commands, @command{install-mh} 561@cindex MH commands, @command{install-mh}
@@ -1121,27 +1121,27 @@ exist,
1121@footnote{The @cite{GNU Emacs Lisp Reference Manual} may be available 1121@footnote{The @cite{GNU Emacs Lisp Reference Manual} may be available
1122online in the Info system by typing @kbd{C-h i m Emacs Lisp 1122online in the Info system by typing @kbd{C-h i m Emacs Lisp
1123@key{RET}}. It is also available online at @* 1123@key{RET}}. It is also available online at @*
1124@uref{http://www.gnu.org/software/emacs/elisp-manual/html_node/}. You 1124@uref{http://www.gnu.org/savannah-checkouts/gnu/emacs/manual/html_node/elisp/}.
1125can also order a printed manual, which has the desirable side-effect 1125You can also order a printed manual, which has the desirable
1126of helping to support the Free Software Foundation which made all this 1126side-effect of helping to support the Free Software Foundation which
1127great software available. You can find an order form by running 1127made all this great software available. You can find an order form by
1128@kbd{C-h C-d}, or you can request an order form from @i{gnu at 1128running @kbd{C-h C-d}, or you can request an order form from @i{gnu at
1129gnu.org}.} 1129gnu.org}.}
1130@end iftex 1130@end iftex
1131@ifinfo 1131@ifinfo
1132@footnote{@xref{Top, The GNU Emacs Lisp Reference Manual, , elisp, GNU 1132@footnote{@xref{Top, The GNU Emacs Lisp Reference Manual, , elisp, GNU
1133Emacs Lisp Reference Manual}, which may be available online in the 1133Emacs Lisp Reference Manual}, which may be available online in the
1134Info system. It is also available online at 1134Info system. It is also available online at
1135@uref{http://www.gnu.org/software/emacs/elisp-manual/html_node/}. You 1135@uref{http://www.gnu.org/savannah-checkouts/gnu/emacs/manual/html_node/elisp/}.
1136can also order a printed manual, which has the desirable side-effect 1136You can also order a printed manual, which has the desirable
1137of helping to support the Free Software Foundation which made all this 1137side-effect of helping to support the Free Software Foundation which
1138great software available. You can find an order form by running 1138made all this great software available. You can find an order form by
1139@kbd{C-h C-d}, or you can request an order form from @i{gnu at 1139running @kbd{C-h C-d}, or you can request an order form from @i{gnu at
1140gnu.org}.} 1140gnu.org}.}
1141@end ifinfo 1141@end ifinfo
1142@ifhtml 1142@ifhtml
1143@footnote{The 1143@footnote{The
1144@uref{http://www.gnu.org/software/emacs/elisp-manual/html_node/, 1144@uref{http://www.gnu.org/savannah-checkouts/gnu/emacs/manual/html_node/elisp/,
1145The GNU Emacs Lisp Reference Manual} may also be available online in 1145The GNU Emacs Lisp Reference Manual} may also be available online in
1146the Info system by typing @kbd{C-h i m Emacs Lisp @key{RET}}. You can 1146the Info system by typing @kbd{C-h i m Emacs Lisp @key{RET}}. You can
1147also order a printed manual, which has the desirable side-effect of 1147also order a printed manual, which has the desirable side-effect of
@@ -1311,7 +1311,7 @@ When you choose a folder in MH-E via a command such as @kbd{o}
1311@end ifnothtml 1311@end ifnothtml
1312@ifhtml 1312@ifhtml
1313(see the section 1313(see the section
1314@uref{http://www.gnu.org/software/emacs/manual/html_node/Completion.html, 1314@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Completion.html,
1315Completion} in @cite{The GNU Emacs Manual}). 1315Completion} in @cite{The GNU Emacs Manual}).
1316@end ifhtml 1316@end ifhtml
1317In addition, MH-E has several ways of choosing a suitable default so 1317In addition, MH-E has several ways of choosing a suitable default so
@@ -2089,8 +2089,7 @@ expressions are not allowed. Unique fields should have a @samp{:}
2089suffix; otherwise, the element can be used to render invisible an 2089suffix; otherwise, the element can be used to render invisible an
2090entire class of fields that start with the same prefix. If you think a 2090entire class of fields that start with the same prefix. If you think a
2091header field should be generally ignored, please update 2091header field should be generally ignored, please update
2092@uref{https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357, 2092@uref{https://sourceforge.net/p/mh-e/bugs/245/, SF #245}.
2093SF #1916032}.
2094 2093
2095@cindex header field, @samp{Face:} 2094@cindex header field, @samp{Face:}
2096@cindex header field, @samp{X-Face:} 2095@cindex header field, @samp{X-Face:}
@@ -2142,12 +2141,12 @@ Finally, MH-E will display images referenced by the
2142@samp{X-Face:} fields are present@footnote{The display of the images 2141@samp{X-Face:} fields are present@footnote{The display of the images
2143requires the @uref{http://www.gnu.org/software/wget/wget.html, 2142requires the @uref{http://www.gnu.org/software/wget/wget.html,
2144@command{wget} program} to fetch the image and the @command{convert} 2143@command{wget} program} to fetch the image and the @command{convert}
2145program from the @uref{http://www.imagemagick.org/, ImageMagick 2144program from the @uref{http://www.imagemagick.org/script/index.php,
2146suite}.}. Of the three header fields this is the most efficient in 2145ImageMagick suite}.}. Of the three header fields this is the most
2147terms of network usage since the image doesn't need to be transmitted 2146efficient in terms of network usage since the image doesn't need to be
2148with every single mail. The option @code{mh-fetch-x-image-url} 2147transmitted with every single mail. The option
2149controls the fetching of the @samp{X-Image-URL:} header field image 2148@code{mh-fetch-x-image-url} controls the fetching of the
2150with the following values: 2149@samp{X-Image-URL:} header field image with the following values:
2151 2150
2152@table @samp 2151@table @samp
2153@item Ask Before Fetching 2152@item Ask Before Fetching
@@ -6025,7 +6024,7 @@ GNU Emacs Manual}).
6025@end ifnothtml 6024@end ifnothtml
6026@ifhtml 6025@ifhtml
6027(see the section 6026(see the section
6028@uref{http://www.gnu.org/software/emacs/manual/html_node/Regexps.html, 6027@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Regexps.html,
6029Syntax of Regular Expressions} in 6028Syntax of Regular Expressions} in
6030@cite{The GNU Emacs Manual}). 6029@cite{The GNU Emacs Manual}).
6031@end ifhtml 6030@end ifhtml
@@ -6175,7 +6174,7 @@ GNU Emacs Manual}).
6175@end ifnothtml 6174@end ifnothtml
6176@ifhtml 6175@ifhtml
6177(see the section 6176(see the section
6178@uref{http://www.gnu.org/software/emacs/manual/html_node/Regexps.html, 6177@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Regexps.html,
6179Syntax of Regular Expressions} in 6178Syntax of Regular Expressions} in
6180@cite{The GNU Emacs Manual}). 6179@cite{The GNU Emacs Manual}).
6181@end ifhtml 6180@end ifhtml
@@ -6283,7 +6282,7 @@ You can also use the speedbar
6283@end ifnothtml 6282@end ifnothtml
6284@ifhtml 6283@ifhtml
6285(see the section 6284(see the section
6286@uref{http://www.gnu.org/software/emacs/manual/html_node/Speedbar.html, 6285@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Speedbar.html,
6287Speedbar Frames} in @cite{The GNU Emacs Manual}) 6286Speedbar Frames} in @cite{The GNU Emacs Manual})
6288@end ifhtml 6287@end ifhtml
6289to view your folders. To bring up the speedbar, run @kbd{M-x speedbar 6288to view your folders. To bring up the speedbar, run @kbd{M-x speedbar
@@ -6415,7 +6414,7 @@ For a description of the menu bar, please
6415@end ifnothtml 6414@end ifnothtml
6416@ifhtml 6415@ifhtml
6417see the section 6416see the section
6418@uref{http://www.gnu.org/software/emacs/manual/html_node/Menu-Bar.html, 6417@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Menu-Bar.html,
6419The Menu Bar} in @cite{The GNU Emacs Manual}. 6418The Menu Bar} in @cite{The GNU Emacs Manual}.
6420@end ifhtml 6419@end ifhtml
6421 6420
@@ -6437,7 +6436,7 @@ tool bar, please
6437@end ifnothtml 6436@end ifnothtml
6438@ifhtml 6437@ifhtml
6439see the section 6438see the section
6440@uref{http://www.gnu.org/software/emacs/manual/html_node/Tool-Bars.html, 6439@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Tool-Bars.html,
6441Tool Bars} in @cite{The GNU Emacs Manual}. 6440Tool Bars} in @cite{The GNU Emacs Manual}.
6442@end ifhtml 6441@end ifhtml
6443 6442
@@ -8219,7 +8218,7 @@ GNU Emacs Manual}.
8219@end ifnothtml 8218@end ifnothtml
8220@ifhtml 8219@ifhtml
8221section 8220section
8222@uref{http://www.gnu.org/software/emacs/manual/html_node/Regexps.html, 8221@uref{http://www.gnu.org/software/emacs/manual/html_node/emacs/Regexps.html,
8223Syntax of Regular Expressions} in @cite{The GNU Emacs Manual}. 8222Syntax of Regular Expressions} in @cite{The GNU Emacs Manual}.
8224@end ifhtml 8223@end ifhtml
8225 8224
@@ -8712,12 +8711,11 @@ I also point out some additional sources of information.
8712@kindex M-x mh-version 8711@kindex M-x mh-version
8713 8712
8714Bug reports should be filed at 8713Bug reports should be filed at
8715@uref{https://sourceforge.net/tracker/?group_id=13357&atid=113357, 8714@uref{https://sourceforge.net/p/mh-e/bugs/, SourceForge}. You need to
8716SourceForge}. You need to be a SourceForge user to submit bug reports, 8715be a SourceForge user to submit bug reports, but this is easy enough
8717but this is easy enough to do that it shouldn't be a restriction for 8716to do that it shouldn't be a restriction for you. Please include the
8718you. Please include the output of @kbd{M-x mh-version} 8717output of @kbd{M-x mh-version} (@pxref{Miscellaneous}) in any bug
8719(@pxref{Miscellaneous}) in any bug report you send unless you're 110% 8718report you send unless you're 110% positive we won't ask for it.
8720positive we won't ask for it.
8721 8719
8722@node Mailing Lists, MH FAQ and Support, Bug Reports, Odds and Ends 8720@node Mailing Lists, MH FAQ and Support, Bug Reports, Odds and Ends
8723@appendixsec MH-E Mailing Lists 8721@appendixsec MH-E Mailing Lists
@@ -8728,7 +8726,7 @@ positive we won't ask for it.
8728There are several mailing lists for MH-E@. They are @i{mh-e-users at 8726There are several mailing lists for MH-E@. They are @i{mh-e-users at
8729lists.sourceforge.net}, @i{mh-e-announce at lists.sourceforge.net}, 8727lists.sourceforge.net}, @i{mh-e-announce at lists.sourceforge.net},
8730and @i{mh-e-devel at lists.sourceforge.net}. You can subscribe or view 8728and @i{mh-e-devel at lists.sourceforge.net}. You can subscribe or view
8731the archives at @uref{https://sourceforge.net/mail/?group_id=13357, 8729the archives at @uref{https://sourceforge.net/p/mh-e/mailman/,
8732SourceForge}. Do not report bugs on these lists; please submit them 8730SourceForge}. Do not report bugs on these lists; please submit them
8733via SourceForge (@pxref{Bug Reports}). 8731via SourceForge (@pxref{Bug Reports}).
8734 8732
@@ -8746,11 +8744,10 @@ itself which you will find useful.
8746 8744
8747@cindex support 8745@cindex support
8748 8746
8749You can find FAQs on MH-E at the 8747You can find FAQs on MH-E by searching for @i{labels:support} on the
8750@uref{https://sourceforge.net/tracker/?group_id=13357&atid=213357, 8748@uref{https://sourceforge.net/p/mh-e/bugs/search/?q=labels%3Asupport,
8751Support Requests} page on SourceForge. If you don't find the answer to 8749Tickets} page on SourceForge. If you don't find the answer to your
8752your question, file a support request and your question will become a 8750question, file a ticket and your question will become a new FAQ!
8753new FAQ!
8754 8751
8755@node Getting MH-E, , MH FAQ and Support, Odds and Ends 8752@node Getting MH-E, , MH FAQ and Support, Odds and Ends
8756@appendixsec Getting MH-E 8753@appendixsec Getting MH-E
@@ -8768,13 +8765,13 @@ distribution in @file{miscellany/mh-e}.
8768@cindex release notes 8765@cindex release notes
8769 8766
8770New MH-E releases are always available for downloading at 8767New MH-E releases are always available for downloading at
8771@uref{https://sourceforge.net/project/showfiles.php?group_id=13357, 8768@uref{https://sourceforge.net/projects/mh-e/files/, SourceForge}
8772SourceForge} before they appear in an Emacs release. You can read the 8769before they appear in an Emacs release. You can read the release notes
8773release notes on that page to determine if the given release of MH-E 8770on that page to determine if the given release of MH-E is already
8774is already installed in your version of Emacs. You can also read the 8771installed in your version of Emacs. You can also read the change log
8775change log to see if you are interested in what the given release of 8772to see if you are interested in what the given release of MH-E has to
8776MH-E has to offer (although we have no doubt that you will be 8773offer (although we have no doubt that you will be extremely interested
8777extremely interested in all new releases). 8774in all new releases).
8778 8775
8779@cindex Debian 8776@cindex Debian
8780 8777
@@ -8802,10 +8799,10 @@ MH-E@. Check that you're running the new version with the command
8802@cindex documentation 8799@cindex documentation
8803 8800
8804In addition to the mh-e package, the 8801In addition to the mh-e package, the
8805@uref{https://sourceforge.net/project/showfiles.php?group_id=13357, 8802@uref{https://sourceforge.net/projects/mh-e/files/, SourceForge} site
8806SourceForge} site also contains doc and contrib packages. The former 8803also contains doc and contrib packages. The former is the latest
8807is the latest release of this manual, and the latter contains a few 8804release of this manual, and the latter contains a few contributed
8808contributed packages you might find useful. 8805packages you might find useful.
8809 8806
8810@node History, GFDL, Odds and Ends, Top 8807@node History, GFDL, Odds and Ends, Top
8811@appendix History of MH-E 8808@appendix History of MH-E
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 84eee0c4319..4a3e0ebc33c 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -998,25 +998,27 @@ name.
998@cindex method adb 998@cindex method adb
999@cindex adb method 999@cindex adb method
1000 1000
1001This special method uses the Android Debug Bridge for connecting 1001This special method uses the Android Debug Bridge for accessing
1002Android devices. The Android Debug Bridge must be installed locally. 1002Android devices. The Android Debug Bridge must be installed locally.
1003Some GNU/Linux distributions offer it for installation, otherwise it 1003Some GNU/Linux distributions offer it for installation, otherwise it
1004can be installed as part of the Android SDK. If @command{adb} is not 1004can be installed as part of the Android SDK. If the @command{adb}
1005found via the @code{$PATH} environment variable, the variable 1005program is not found via the @code{$PATH} environment variable, the
1006@var{tramp-adb-program} must point to its absolute path. 1006variable @var{tramp-adb-program} must point to its absolute path.
1007
1008Tramp does not connect Android devices to @command{adb}. This must be
1009performed outside @value{emacsname}. If there is exactly one Android
1010device connected to @command{adb}, a host name is not needed in the
1011remote file name. The default @value{tramp} name to be used is
1012@file{@trampfn{adb, , ,}} therefore. Otherwise, one could find
1013potential host names with the command @command{adb devices}.
1007 1014
1008Usually, the @command{adb} method does not need any user name. It 1015Usually, the @command{adb} method does not need any user name. It
1009runs under the permissions of the @command{adbd} process on the 1016runs under the permissions of the @command{adbd} process on the
1010Android device. If a user name is specified, @value{tramp} applies an 1017Android device. If a user name is specified, @value{tramp} applies an
1011@command{su} on the device. This does not work with all Android 1018@command{su} on the device. This does not work with all Android
1012devices, especially with nonrooted ones. In that case, an error 1019devices, especially with unrooted ones. In that case, an error
1013message is displayed. 1020message is displayed.
1014 1021
1015If there is exactly one Android device connected to the local machine,
1016a host name is not needed. The shortest @value{tramp} name to be used
1017is @file{@trampfn{adb, , ,}} therefore. Otherwise, one could find
1018potential host names with the shell command @command{adb devices}.
1019
1020@end table 1022@end table
1021 1023
1022 1024