aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoakim Verona2013-09-10 23:52:26 +0200
committerJoakim Verona2013-09-10 23:52:26 +0200
commit63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c (patch)
treee5078c5545c777e21944a9ee4199a6f2c6d25ca9 /doc
parent92aeabcc8a007f521a664e3aee092eb80ad0f49a (diff)
downloademacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.tar.gz
emacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.zip
merge upstream
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog15
-rw-r--r--doc/emacs/Makefile.in2
-rw-r--r--doc/emacs/emacs.texi2
-rw-r--r--doc/emacs/maintaining.texi14
-rw-r--r--doc/emacs/xresources.texi20
-rw-r--r--doc/lispintro/ChangeLog15
-rw-r--r--doc/lispintro/Makefile.in2
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi16
-rw-r--r--doc/lispref/ChangeLog10
-rw-r--r--doc/lispref/Makefile.in2
-rw-r--r--doc/lispref/macros.texi4
-rw-r--r--doc/man/ChangeLog4
-rw-r--r--doc/man/emacs.14
-rw-r--r--doc/misc/ChangeLog22
-rw-r--r--doc/misc/Makefile.in248
-rw-r--r--doc/misc/efaq.texi5
-rw-r--r--doc/misc/emacs-gnutls.texi2
-rw-r--r--doc/misc/tramp.texi42
18 files changed, 113 insertions, 316 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index f94db60f25f..7ff13a70718 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,18 @@
12013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2
3 * maintaining.texi (VC Ignore): Mention `vc-ignore' with prefix argument.
4
52013-08-31 Ulrich Müller <ulm@gentoo.org>
6
7 * xresources.texi (Motif Resources):
8 Rename from LessTif Resources. Update xrefs. (Bug#15145)
9 * emacs.texi: Update menu.
10
112013-08-28 Paul Eggert <eggert@cs.ucla.edu>
12
13 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
14 for portability to hosts where /bin/sh has problems.
15
12013-08-17 Xue Fuqiao <xfq.free@gmail.com> 162013-08-17 Xue Fuqiao <xfq.free@gmail.com>
2 17
3 * text.texi (Enriched Justification): Minor fixes. 18 * text.texi (Enriched Justification): Minor fixes.
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in
index 7aeead4e2f6..bf9f8152ad4 100644
--- a/doc/emacs/Makefile.in
+++ b/doc/emacs/Makefile.in
@@ -17,7 +17,7 @@
17# You should have received a copy of the GNU General Public License 17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19 19
20SHELL = /bin/sh 20SHELL = @SHELL@
21 21
22# NB If you add any more configure variables, 22# NB If you add any more configure variables,
23# update the sed rules in the dist target below. 23# update the sed rules in the dist target below.
diff --git a/doc/emacs/emacs.texi b/doc/emacs/emacs.texi
index 8a518b82abb..985466810f2 100644
--- a/doc/emacs/emacs.texi
+++ b/doc/emacs/emacs.texi
@@ -1189,7 +1189,7 @@ X Options and Resources
1189* Resources:: Using X resources with Emacs (in general). 1189* Resources:: Using X resources with Emacs (in general).
1190* Table of Resources:: Table of specific X resources that affect Emacs. 1190* Table of Resources:: Table of specific X resources that affect Emacs.
1191* Lucid Resources:: X resources for Lucid menus. 1191* Lucid Resources:: X resources for Lucid menus.
1192* LessTif Resources:: X resources for LessTif and Motif menus. 1192* Motif Resources:: X resources for Motif and LessTif menus.
1193* GTK resources:: Resources for GTK widgets. 1193* GTK resources:: Resources for GTK widgets.
1194 1194
1195GTK resources 1195GTK resources
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index 553375442d5..4a61db5509b 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -1043,12 +1043,14 @@ Ignore a file under current version control system. (@code{vc-ignore}).
1043 1043
1044@kindex C-x v G 1044@kindex C-x v G
1045@findex vc-ignore 1045@findex vc-ignore
1046 Many source trees contain some files that do not need to be versioned, 1046 Many source trees contain some files that do not need to be
1047such as editor backups, object or bytecode files, and built programs. 1047versioned, such as editor backups, object or bytecode files, and built
1048You can simply not add them, but then they’ll always crop up as 1048programs. You can simply not add them, but then they’ll always crop
1049unknown files. You can also tell the version control system to ignore 1049up as unknown files. You can also tell the version control system to
1050these files by adding them to the ignore file at the top of the tree. 1050ignore these files by adding them to the ignore file at the top of the
1051@kbd{C-x v G} (@code{vc-ignore}) can help you do this. 1051tree. @kbd{C-x v G} (@code{vc-ignore}) can help you do this. When
1052called with a prefix argument, you can remove a file from the ignored
1053file list.
1052 1054
1053@node VC Directory Mode 1055@node VC Directory Mode
1054@subsection VC Directory Mode 1056@subsection VC Directory Mode
diff --git a/doc/emacs/xresources.texi b/doc/emacs/xresources.texi
index 3723c8e5e1d..b2ebf634ba0 100644
--- a/doc/emacs/xresources.texi
+++ b/doc/emacs/xresources.texi
@@ -27,7 +27,7 @@ system registry (@pxref{MS-Windows Registry}).
27* Resources:: Using X resources with Emacs (in general). 27* Resources:: Using X resources with Emacs (in general).
28* Table of Resources:: Table of specific X resources that affect Emacs. 28* Table of Resources:: Table of specific X resources that affect Emacs.
29* Lucid Resources:: X resources for Lucid menus. 29* Lucid Resources:: X resources for Lucid menus.
30* LessTif Resources:: X resources for LessTif and Motif menus. 30* Motif Resources:: X resources for Motif and LessTif menus.
31* GTK resources:: Resources for GTK widgets. 31* GTK resources:: Resources for GTK widgets.
32@end menu 32@end menu
33 33
@@ -260,7 +260,7 @@ compiled with GTK+ support.
260@ifnottex 260@ifnottex
261@item @code{selectionFont} (class @code{SelectionFont}) 261@item @code{selectionFont} (class @code{SelectionFont})
262Font name for pop-up menu items, in non-toolkit versions of Emacs. (For 262Font name for pop-up menu items, in non-toolkit versions of Emacs. (For
263toolkit versions, see @ref{Lucid Resources}, also see @ref{LessTif 263toolkit versions, see @ref{Lucid Resources}, also see @ref{Motif
264Resources}.) 264Resources}.)
265 265
266@item @code{selectionTimeout} (class @code{SelectionTimeout}) 266@item @code{selectionTimeout} (class @code{SelectionTimeout})
@@ -370,15 +370,15 @@ elements. Default is 1.
370Margin of the menu bar, in characters. Default is 1. 370Margin of the menu bar, in characters. Default is 1.
371@end table 371@end table
372 372
373@node LessTif Resources 373@node Motif Resources
374@appendixsec LessTif Menu X Resources 374@appendixsec Motif Menu X Resources
375@cindex Menu X Resources (LessTif widgets) 375@cindex Menu X Resources (Motif widgets)
376@cindex LessTif Widget X Resources 376@cindex Motif Widget X Resources
377 377
378 If Emacs is compiled with the X toolkit support using LessTif or 378 If Emacs is compiled with the X toolkit support using Motif or
379Motif widgets, you can use X resources to customize the appearance of 379LessTif widgets, you can use X resources to customize the appearance
380the menu bar, pop-up menus, and dialog boxes. However, the resources 380of the menu bar, pop-up menus, and dialog boxes. However, the
381are organized differently from Lucid widgets. 381resources are organized differently from Lucid widgets.
382 382
383 The resource names for the menu bar are in the @samp{pane.menubar} 383 The resource names for the menu bar are in the @samp{pane.menubar}
384class, and they must be specified in this form: 384class, and they must be specified in this form:
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index db02a257a3a..ec082eecb52 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,18 @@
12013-09-01 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi (beginning-of-buffer complete):
4 Put back a version of the removed paragraph about raw prefix arg.
5
62013-09-01 Dani Moncayo <dmoncayo@gmail.com>
7
8 * emacs-lisp-intro.texi (beginning-of-buffer complete):
9 Update function details. (Bug#15085)
10
112013-08-28 Paul Eggert <eggert@cs.ucla.edu>
12
13 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
14 for portability to hosts where /bin/sh has problems.
15
12013-08-12 Glenn Morris <rgm@gnu.org> 162013-08-12 Glenn Morris <rgm@gnu.org>
2 17
3 * emacs-lisp-intro.texi (Complete copy-region-as-kill): Fix typo. 18 * emacs-lisp-intro.texi (Complete copy-region-as-kill): Fix typo.
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in
index ad1b978f255..363e12215b3 100644
--- a/doc/lispintro/Makefile.in
+++ b/doc/lispintro/Makefile.in
@@ -17,7 +17,7 @@
17# You should have received a copy of the GNU General Public License 17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19 19
20SHELL = /bin/sh 20SHELL = @SHELL@
21 21
22# NB If you add any more configure variables, 22# NB If you add any more configure variables,
23# update the sed rules in the dist target below. 23# update the sed rules in the dist target below.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 18ea8e87e19..84c9d905487 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -6323,7 +6323,7 @@ and avoids clobbering the mark."
6323 (/ (+ 10 (* size (prefix-numeric-value arg))) 6323 (/ (+ 10 (* size (prefix-numeric-value arg)))
6324 10))) 6324 10)))
6325 (point-min)))) 6325 (point-min))))
6326 (if arg (forward-line 1))) 6326 (if (and arg (not (consp arg))) (forward-line 1)))
6327@end group 6327@end group
6328@end smallexample 6328@end smallexample
6329 6329
@@ -6390,7 +6390,7 @@ to move point to the beginning of the next line if the command is
6390invoked with an argument: 6390invoked with an argument:
6391 6391
6392@smallexample 6392@smallexample
6393(if arg (forward-line 1))) 6393(if (and arg (not (consp arg))) (forward-line 1))
6394@end smallexample 6394@end smallexample
6395 6395
6396@noindent 6396@noindent
@@ -6399,14 +6399,10 @@ appropriate tenths position in the buffer. This is a flourish that
6399means that the cursor is always located @emph{at least} the requested 6399means that the cursor is always located @emph{at least} the requested
6400tenths of the way through the buffer, which is a nicety that is, 6400tenths of the way through the buffer, which is a nicety that is,
6401perhaps, not necessary, but which, if it did not occur, would be sure 6401perhaps, not necessary, but which, if it did not occur, would be sure
6402to draw complaints. 6402to draw complaints. (The @code{(not (consp arg))} portion is so that
6403 6403if you specify the command with a @kbd{C-u}, but without a number,
6404On the other hand, it also means that if you specify the command with 6404that is to say, if the `raw prefix argument' is simply a cons cell,
6405a @kbd{C-u}, but without a number, that is to say, if the `raw prefix 6405the command does not put you at the beginning of the second line.)
6406argument' is simply a cons cell, then the command puts you at the
6407beginning of the second line @dots{} I don't know whether this is
6408intended or whether no one has dealt with the code to avoid this
6409happening.
6410 6406
6411@node Second Buffer Related Review 6407@node Second Buffer Related Review
6412@section Review 6408@section Review
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index d27f58c0efa..145d595b1d2 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,13 @@
12013-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * macros.texi (Defining Macros): Prefer "function" to "lambda
4 expression" (bug#15296).
5
62013-08-28 Paul Eggert <eggert@cs.ucla.edu>
7
8 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
9 for portability to hosts where /bin/sh has problems.
10
12013-08-26 Stefan Monnier <monnier@iro.umontreal.ca> 112013-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
2 12
3 * variables.texi (File Local Variables): Don't recommend quoting! Ever! 13 * variables.texi (File Local Variables): Don't recommend quoting! Ever!
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in
index c7aa5ac1a28..164646ac433 100644
--- a/doc/lispref/Makefile.in
+++ b/doc/lispref/Makefile.in
@@ -17,7 +17,7 @@
17# You should have received a copy of the GNU General Public License 17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19 19
20SHELL = /bin/sh 20SHELL = @SHELL@
21 21
22# NB If you add any more configure variables, 22# NB If you add any more configure variables,
23# update the sed rules in the dist target below. 23# update the sed rules in the dist target below.
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi
index 5520bbbd1df..a2526f383aa 100644
--- a/doc/lispref/macros.texi
+++ b/doc/lispref/macros.texi
@@ -191,8 +191,8 @@ During Compile}).
191@section Defining Macros 191@section Defining Macros
192 192
193 A Lisp macro object is a list whose @sc{car} is @code{macro}, and 193 A Lisp macro object is a list whose @sc{car} is @code{macro}, and
194whose @sc{cdr} is a lambda expression. Expansion of the macro works 194whose @sc{cdr} is a function. Expansion of the macro works
195by applying the lambda expression (with @code{apply}) to the list of 195by applying the function (with @code{apply}) to the list of
196@emph{unevaluated} arguments from the macro call. 196@emph{unevaluated} arguments from the macro call.
197 197
198 It is possible to use an anonymous Lisp macro just like an anonymous 198 It is possible to use an anonymous Lisp macro just like an anonymous
diff --git a/doc/man/ChangeLog b/doc/man/ChangeLog
index 8b550dc4417..0235b5f7b9b 100644
--- a/doc/man/ChangeLog
+++ b/doc/man/ChangeLog
@@ -1,3 +1,7 @@
12013-08-31 Ulrich Müller <ulm@gentoo.org>
2
3 * emacs.1: Update manual links.
4
12013-04-20 Petr Hracek <phracek@redhat.com> (tiny change) 52013-04-20 Petr Hracek <phracek@redhat.com> (tiny change)
2 6
3 * emacs.1: Add some more command-line options. (Bug#14165) 7 * emacs.1: Add some more command-line options. (Bug#14165)
diff --git a/doc/man/emacs.1 b/doc/man/emacs.1
index 9149be2c523..a306edc3ca9 100644
--- a/doc/man/emacs.1
+++ b/doc/man/emacs.1
@@ -445,7 +445,7 @@ Gives frames menu bars if
445.IR on ; 445.IR on ;
446don't have menu bars if 446don't have menu bars if
447.IR off . 447.IR off .
448See the Emacs manual, sections "Lucid Resources" and "LessTif 448See the Emacs manual, sections "Lucid Resources" and "Motif
449Resources", for how to control the appearance of the menu bar 449Resources", for how to control the appearance of the menu bar
450if you have one. 450if you have one.
451.TP 451.TP
@@ -492,7 +492,7 @@ The scroll bar width in pixels, equivalent to the frame parameter
492Font name for pop-up menu items, in non-toolkit versions of 492Font name for pop-up menu items, in non-toolkit versions of
493.IR Emacs . 493.IR Emacs .
494(For toolkit versions, see the Emacs manual, sections 494(For toolkit versions, see the Emacs manual, sections
495"Lucid Resources" and "LessTif Resources".) 495"Lucid Resources" and "Motif Resources".)
496.TP 496.TP
497.BR selectionTimeout " (class " SelectionTimeout ) 497.BR selectionTimeout " (class " SelectionTimeout )
498Number of milliseconds to wait for a selection reply. 498Number of milliseconds to wait for a selection reply.
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index ca620a15b4f..e3ad5688f22 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,27 @@
12013-09-08 Glenn Morris <rgm@gnu.org>
2
3 * emacs-gnutls.texi: Tweak direntry.
4
52013-09-06 Michael Albinus <michael.albinus@gmx.de>
6
7 * tramp.texi (Alternative Syntax): Remove chapter.
8
92013-08-28 Paul Eggert <eggert@cs.ucla.edu>
10
11 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
12 for portability to hosts where /bin/sh has problems.
13
142013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 Try to reduce redundancy in doc/misc/Makefile.in.
17 * Makefile.in (DOCMISC_W32): New var to replace DOCMISC_*_W32.
18 (TARGETS): New intermediate variable.
19 (DVI_TARGETS, HTML_TARGETS, PDF_TARGETS, PS_TARGETS): Use it.
20
12013-08-27 Glenn Morris <rgm@gnu.org> 212013-08-27 Glenn Morris <rgm@gnu.org>
2 22
23 * efaq.texi (Emacs for MS-Windows): Update location of MS FAQ.
24
3 * efaq.texi: Rename from faq.texi, to match its output files. 25 * efaq.texi: Rename from faq.texi, to match its output files.
4 * Makefile.in: Update for faq.texi name change. 26 * Makefile.in: Update for faq.texi name change.
5 27
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index 0ae1edf7069..30fc4953172 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -17,7 +17,7 @@
17# You should have received a copy of the GNU General Public License 17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19 19
20SHELL = /bin/sh 20SHELL = @SHELL@
21 21
22# Where to find the source code. $(srcdir) will be the man-aux 22# Where to find the source code. $(srcdir) will be the man-aux
23# subdirectory of the source tree. This is 23# subdirectory of the source tree. This is
@@ -60,11 +60,7 @@ MAKEINFO = @MAKEINFO@
60MAKEINFO_OPTS = --force -I$(emacsdir) 60MAKEINFO_OPTS = --force -I$(emacsdir)
61 61
62## On MS Windows, efaq-w32; otherwise blank. 62## On MS Windows, efaq-w32; otherwise blank.
63DOCMISC_DVI_W32 = @DOCMISC_DVI_W32@ 63DOCMISC_W32 = @DOCMISC_W32@
64DOCMISC_HTML_W32 = @DOCMISC_HTML_W32@
65DOCMISC_INFO_W32 = @DOCMISC_INFO_W32@
66DOCMISC_PDF_W32 = @DOCMISC_PDF_W32@
67DOCMISC_PS_W32 = @DOCMISC_PS_W32@
68 64
69## Info files to build and install on all platforms. 65## Info files to build and install on all platforms.
70INFO_COMMON = ada-mode auth autotype bovine calc ccmode cl \ 66INFO_COMMON = ada-mode auth autotype bovine calc ccmode cl \
@@ -84,237 +80,15 @@ INFO_INSTALL = $(INFO_COMMON) $(DOCMISC_INFO_W32)
84## because the info files are pre-built in release tarfiles. 80## because the info files are pre-built in release tarfiles.
85INFO_TARGETS = $(INFO_COMMON) efaq-w32 81INFO_TARGETS = $(INFO_COMMON) efaq-w32
86 82
87DVI_TARGETS = $(DOCMISC_DVI_W32) \ 83# There are some naming differences between the info targets and the other
88 ada-mode.dvi \ 84# targets, so let's resolve them here.
89 auth.dvi \ 85TARGETS_1 = $(INFO_INSTALL:ccmode=cc-mode)
90 autotype.dvi \ 86TARGETS = $(TARGETS_1:info.info=info)
91 bovine.dvi \ 87
92 calc.dvi \ 88DVI_TARGETS = $(TARGETS:=.dvi)
93 cc-mode.dvi \ 89HTML_TARGETS = $(TARGETS:=.html)
94 cl.dvi \ 90PDF_TARGETS = $(TARGETS:=.pdf)
95 dbus.dvi \ 91PS_TARGETS = $(TARGETS:=.ps)
96 dired-x.dvi \
97 ebrowse.dvi \
98 ede.dvi \
99 ediff.dvi \
100 edt.dvi \
101 efaq.dvi \
102 eieio.dvi \
103 emacs-mime.dvi \
104 epa.dvi \
105 erc.dvi \
106 ert.dvi \
107 eshell.dvi \
108 eudc.dvi \
109 flymake.dvi \
110 forms.dvi \
111 gnus.dvi \
112 emacs-gnutls.dvi \
113 htmlfontify.dvi \
114 idlwave.dvi \
115 ido.dvi \
116 info.dvi \
117 mairix-el.dvi \
118 message.dvi \
119 mh-e.dvi \
120 newsticker.dvi \
121 nxml-mode.dvi \
122 org.dvi \
123 pcl-cvs.dvi \
124 pgg.dvi \
125 rcirc.dvi \
126 reftex.dvi \
127 remember.dvi \
128 sasl.dvi \
129 sc.dvi \
130 semantic.dvi \
131 ses.dvi \
132 sieve.dvi \
133 smtpmail.dvi \
134 speedbar.dvi \
135 srecode.dvi \
136 todo-mode.dvi \
137 tramp.dvi \
138 url.dvi \
139 vip.dvi \
140 viper.dvi \
141 widget.dvi \
142 wisent.dvi \
143 woman.dvi
144
145HTML_TARGETS = $(DOCMISC_HTML_W32) \
146 ada-mode.html \
147 auth.html \
148 autotype.html \
149 bovine.html \
150 calc.html \
151 cc-mode.html \
152 cl.html \
153 dbus.html \
154 dired-x.html \
155 ebrowse.html \
156 ede.html \
157 ediff.html \
158 edt.html \
159 efaq.html \
160 eieio.html \
161 emacs-mime.html \
162 epa.html \
163 erc.html \
164 ert.html \
165 eshell.html \
166 eudc.html \
167 flymake.html \
168 forms.html \
169 gnus.html \
170 emacs-gnutls.html \
171 htmlfontify.html \
172 idlwave.html \
173 ido.html \
174 info.html \
175 mairix-el.html \
176 message.html \
177 mh-e.html \
178 newsticker.html \
179 nxml-mode.html \
180 org.html \
181 pcl-cvs.html \
182 pgg.html \
183 rcirc.html \
184 reftex.html \
185 remember.html \
186 sasl.html \
187 sc.html \
188 semantic.html \
189 ses.html \
190 sieve.html \
191 smtpmail.html \
192 speedbar.html \
193 srecode.html \
194 todo-mode.html \
195 tramp.html \
196 url.html \
197 vip.html \
198 viper.html \
199 widget.html \
200 wisent.html \
201 woman.html
202
203PDF_TARGETS = $(DOCMISC_PDF_W32) \
204 ada-mode.pdf \
205 auth.pdf \
206 autotype.pdf \
207 bovine.pdf \
208 calc.pdf \
209 cc-mode.pdf \
210 cl.pdf \
211 dbus.pdf \
212 dired-x.pdf \
213 ebrowse.pdf \
214 ede.pdf \
215 ediff.pdf \
216 edt.pdf \
217 efaq.pdf \
218 eieio.pdf \
219 emacs-mime.pdf \
220 epa.pdf \
221 erc.pdf \
222 ert.pdf \
223 eshell.pdf \
224 eudc.pdf \
225 flymake.pdf \
226 forms.pdf \
227 gnus.pdf \
228 htmlfontify.pdf \
229 emacs-gnutls.pdf \
230 idlwave.pdf \
231 ido.pdf \
232 info.pdf \
233 mairix-el.pdf \
234 message.pdf \
235 mh-e.pdf \
236 newsticker.pdf \
237 nxml-mode.pdf \
238 org.pdf \
239 pcl-cvs.pdf \
240 pgg.pdf \
241 rcirc.pdf \
242 reftex.pdf \
243 remember.pdf \
244 sasl.pdf \
245 sc.pdf \
246 semantic.pdf \
247 ses.pdf \
248 sieve.pdf \
249 smtpmail.pdf \
250 speedbar.pdf \
251 srecode.pdf \
252 todo-mode.pdf \
253 tramp.pdf \
254 url.pdf \
255 vip.pdf \
256 viper.pdf \
257 widget.pdf \
258 wisent.pdf \
259 woman.pdf
260
261PS_TARGETS = $(DOCMISC_PS_W32) \
262 ada-mode.ps \
263 auth.ps \
264 autotype.ps \
265 bovine.ps \
266 calc.ps \
267 cc-mode.ps \
268 cl.ps \
269 dbus.ps \
270 dired-x.ps \
271 ebrowse.ps \
272 ede.ps \
273 ediff.ps \
274 edt.ps \
275 efaq.ps \
276 eieio.ps \
277 emacs-mime.ps \
278 epa.ps \
279 erc.ps \
280 ert.ps \
281 eshell.ps \
282 eudc.ps \
283 flymake.ps \
284 forms.ps \
285 gnus.ps \
286 htmlfontify.ps \
287 emacs-gnutls.ps \
288 idlwave.ps \
289 ido.ps \
290 info.ps \
291 mairix-el.ps \
292 message.ps \
293 mh-e.ps \
294 newsticker.ps \
295 nxml-mode.ps \
296 org.ps \
297 pcl-cvs.ps \
298 pgg.ps \
299 rcirc.ps \
300 reftex.ps \
301 remember.ps \
302 sasl.ps \
303 sc.ps \
304 semantic.ps \
305 ses.ps \
306 sieve.ps \
307 smtpmail.ps \
308 speedbar.ps \
309 srecode.ps \
310 todo-mode.ps \
311 tramp.ps \
312 url.ps \
313 vip.ps \
314 viper.ps \
315 widget.ps \
316 wisent.ps \
317 woman.ps
318 92
319TEXI2DVI = texi2dvi 93TEXI2DVI = texi2dvi
320TEXI2PDF = texi2pdf 94TEXI2PDF = texi2pdf
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index 1354f68cc9f..54e067d65bd 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -3452,8 +3452,9 @@ lack certain features, such as the Emacs Lisp extension language.
3452@cindex Emacs for MS-Windows 3452@cindex Emacs for MS-Windows
3453@cindex Microsoft Windows, Emacs for 3453@cindex Microsoft Windows, Emacs for
3454 3454
3455There is a @uref{http://www.gnu.org/software/emacs/windows/ntemacs.html, 3455There is a separate FAQ for Emacs on MS-Windows,
3456separate FAQ} for Emacs on MS-Windows. For MS-DOS, @pxref{Emacs for MS-DOS}. 3456@pxref{Top,,,efaq-w32,FAQ for Emacs on MS Windows}.
3457For MS-DOS, @pxref{Emacs for MS-DOS}.
3457 3458
3458 3459
3459@node Emacs for GNUstep 3460@node Emacs for GNUstep
diff --git a/doc/misc/emacs-gnutls.texi b/doc/misc/emacs-gnutls.texi
index 740dfee41ed..b1c4c13c5ff 100644
--- a/doc/misc/emacs-gnutls.texi
+++ b/doc/misc/emacs-gnutls.texi
@@ -25,7 +25,7 @@ modify this GNU manual.''
25 25
26@dircategory Emacs network features 26@dircategory Emacs network features
27@direntry 27@direntry
28* GnuTLS: (emacs-gnutls). The Emacs GnuTLS integration. 28* Emacs GnuTLS: (emacs-gnutls). The Emacs GnuTLS integration.
29@end direntry 29@end direntry
30 30
31@titlepage 31@titlepage
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 03c6da3b73f..aa4cea58f04 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -225,7 +225,6 @@ Configuring @value{tramp} for use
225Using @value{tramp} 225Using @value{tramp}
226 226
227* Filename Syntax:: @value{tramp} filename conventions. 227* Filename Syntax:: @value{tramp} filename conventions.
228* Alternative Syntax:: URL-like filename syntax.
229* Filename completion:: Filename completion. 228* Filename completion:: Filename completion.
230* Ad-hoc multi-hops:: Declaring multiple hops in the file name. 229* Ad-hoc multi-hops:: Declaring multiple hops in the file name.
231* Remote processes:: Integration with other @value{emacsname} packages. 230* Remote processes:: Integration with other @value{emacsname} packages.
@@ -2356,7 +2355,6 @@ minute you have already forgotten that you hit that key!
2356 2355
2357@menu 2356@menu
2358* Filename Syntax:: @value{tramp} filename conventions. 2357* Filename Syntax:: @value{tramp} filename conventions.
2359* Alternative Syntax:: URL-like filename syntax.
2360* Filename completion:: Filename completion. 2358* Filename completion:: Filename completion.
2361* Ad-hoc multi-hops:: Declaring multiple hops in the file name. 2359* Ad-hoc multi-hops:: Declaring multiple hops in the file name.
2362* Remote processes:: Integration with other @value{emacsname} packages. 2360* Remote processes:: Integration with other @value{emacsname} packages.
@@ -2453,46 +2451,6 @@ by adding @file{#<port>} to the host name, like in @file{@trampfn{ssh,
2453daniel, melancholia#42, .emacs}}. 2451daniel, melancholia#42, .emacs}}.
2454 2452
2455 2453
2456@node Alternative Syntax
2457@section URL-like filename syntax
2458@cindex filename syntax
2459@cindex filename examples
2460
2461Additionally to the syntax described in the previous chapter, it is
2462possible to use a URL-like syntax for @value{tramp}. This can be
2463switched on by customizing the variable @code{tramp-syntax}. Please
2464note that this feature is experimental for the time being.
2465
2466The variable @code{tramp-syntax} must be set before requiring @value{tramp}:
2467
2468@lisp
2469(setq tramp-syntax 'url)
2470(require 'tramp)
2471@end lisp
2472
2473Then, a @value{tramp} filename would look like this:
2474@file{/@var{method}://@var{user}@@@var{machine}:@var{port}/@var{path/to.file}}.
2475@file{/@var{method}://} is mandatory, all other parts are optional.
2476@file{:@var{port}} is useful for methods only who support this.
2477
2478The last example from the previous section would look like this:
2479@file{/ssh://daniel@@melancholia/.emacs}.
2480
2481For the time being, @code{tramp-syntax} can have the following values:
2482
2483@itemize @w{}
2484@ifset emacs
2485@item @code{ftp}---That is the default syntax
2486@item @code{url}---URL-like syntax
2487@end ifset
2488@ifset xemacs
2489@item @code{sep}---That is the default syntax
2490@item @code{url}---URL-like syntax
2491@item @code{ftp}---EFS-like syntax
2492@end ifset
2493@end itemize
2494
2495
2496@node Filename completion 2454@node Filename completion
2497@section Filename completion 2455@section Filename completion
2498@cindex filename completion 2456@cindex filename completion