aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2012-12-02 17:08:31 -0800
committerGlenn Morris2012-12-02 17:08:31 -0800
commitc5bc2d1d0558bbaa29ef04f9bd7bef50146382ab (patch)
treebeabc46c767d32fe6cda79f0567834d5ea8225ee /doc/misc
parent1bf3989cd4ebffdeeebfaaca83c6866416c3908a (diff)
parent328dac0d42a2b395a327c0eda0ed4bbcec4f6c55 (diff)
downloademacs-c5bc2d1d0558bbaa29ef04f9bd7bef50146382ab.tar.gz
emacs-c5bc2d1d0558bbaa29ef04f9bd7bef50146382ab.zip
Merge from emacs-24; up to 2012-11-23T06:23:28Z!cyd@gnu.org
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/ChangeLog9
-rw-r--r--doc/misc/rcirc.texi2
-rw-r--r--doc/misc/tramp.texi27
3 files changed, 26 insertions, 12 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 8a067b5c100..f5e5007c58d 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,12 @@
12012-12-03 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (Top, Obtaining Tramp): Replace CVS by Git.
4 (External methods): Fix typo.
5
62012-12-03 Glenn Morris <rgm@gnu.org>
7
8 * rcirc.texi (Notices): Fix typo.
9
12012-11-25 Bill Wohler <wohler@newt.com> 102012-11-25 Bill Wohler <wohler@newt.com>
2 11
3 Release MH-E manual version 8.4. 12 Release MH-E manual version 8.4.
diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi
index 0174c3fa87f..ac97db414a4 100644
--- a/doc/misc/rcirc.texi
+++ b/doc/misc/rcirc.texi
@@ -764,7 +764,7 @@ You can control which notices get omitted via the
764omit away messages: 764omit away messages:
765 765
766@example 766@example
767(setq rcirc-omit-responses '("JOIN" "PART" "QUIT" "NICK" "AWAY)) 767(setq rcirc-omit-responses '("JOIN" "PART" "QUIT" "NICK" "AWAY"))
768@end example 768@end example
769 769
770@vindex rcirc-omit-threshold 770@vindex rcirc-omit-threshold
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index a983f76ffd3..020a6e55833 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -7,7 +7,7 @@
7@c This is *so* much nicer :) 7@c This is *so* much nicer :)
8@footnotestyle end 8@footnotestyle end
9 9
10@c In the Tramp CVS, the version number is auto-frobbed from 10@c In the Tramp repository, the version number is auto-frobbed from
11@c configure.ac, so you should edit that file and run 11@c configure.ac, so you should edit that file and run
12@c "autoconf && ./configure" to change the version number. 12@c "autoconf && ./configure" to change the version number.
13 13
@@ -106,7 +106,7 @@ If you're using the other Emacs flavor, you should read the
106@ifhtml 106@ifhtml
107The latest release of @value{tramp} is available for 107The latest release of @value{tramp} is available for
108@uref{ftp://ftp.gnu.org/gnu/tramp/, download}, or you may see 108@uref{ftp://ftp.gnu.org/gnu/tramp/, download}, or you may see
109@ref{Obtaining Tramp} for more details, including the CVS server 109@ref{Obtaining Tramp} for more details, including the Git server
110details. 110details.
111 111
112@value{tramp} also has a @uref{http://savannah.gnu.org/projects/tramp/, 112@value{tramp} also has a @uref{http://savannah.gnu.org/projects/tramp/,
@@ -377,13 +377,13 @@ includes @value{tramp} already, and there is a @value{tramp} package
377for XEmacs, as well. So maybe it is easier to just use those. But if 377for XEmacs, as well. So maybe it is easier to just use those. But if
378you want the bleeding edge, read on@dots{...} 378you want the bleeding edge, read on@dots{...}
379 379
380For the especially brave, @value{tramp} is available from CVS. The CVS 380For the especially brave, @value{tramp} is available from Git. The Git
381version is the latest version of the code and may contain incomplete 381version is the latest version of the code and may contain incomplete
382features or new issues. Use these versions at your own risk. 382features or new issues. Use these versions at your own risk.
383 383
384Instructions for obtaining the latest development version of @value{tramp} 384Instructions for obtaining the latest development version of @value{tramp}
385from CVS can be found by going to the Savannah project page at the 385from Git can be found by going to the Savannah project page at the
386following URL and then clicking on the CVS link in the navigation bar 386following URL and then clicking on the Git link in the navigation bar
387at the top. 387at the top.
388 388
389@noindent 389@noindent
@@ -394,8 +394,14 @@ Or follow the example session below:
394 394
395@example 395@example
396] @strong{cd ~/@value{emacsdir}} 396] @strong{cd ~/@value{emacsdir}}
397] @strong{export CVS_RSH="ssh"} 397] @strong{git clone git://git.savannah.gnu.org/tramp.git}
398] @strong{cvs -z3 -d:pserver:anonymous@@cvs.savannah.gnu.org:/sources/tramp co tramp} 398@end example
399
400@noindent
401Tramp developers use instead
402
403@example
404] @strong{git clone login@@git.sv.gnu.org:/srv/git/tramp.git}
399@end example 405@end example
400 406
401@noindent 407@noindent
@@ -405,12 +411,11 @@ updates from the repository by issuing the command:
405 411
406@example 412@example
407] @strong{cd ~/@value{emacsdir}/tramp} 413] @strong{cd ~/@value{emacsdir}/tramp}
408] @strong{export CVS_RSH="ssh"} 414] @strong{git pull}
409] @strong{cvs update -d}
410@end example 415@end example
411 416
412@noindent 417@noindent
413Once you've got updated files from the CVS repository, you need to run 418Once you've got updated files from the Git repository, you need to run
414@command{autoconf} in order to get an up-to-date @file{configure} 419@command{autoconf} in order to get an up-to-date @file{configure}
415script: 420script:
416 421
@@ -980,7 +985,7 @@ This works only for unified filenames, see @ref{Issues}.
980@cindex method smb 985@cindex method smb
981@cindex smb method 986@cindex smb method
982 987
983This is another not natural @value{tramp} method. It uses the 988This is another not native @value{tramp} method. It uses the
984@command{smbclient} command on different Unices in order to connect to 989@command{smbclient} command on different Unices in order to connect to
985an SMB server. An SMB server might be a Samba (or CIFS) server on 990an SMB server. An SMB server might be a Samba (or CIFS) server on
986another UNIX host or, more interesting, a host running MS Windows. So 991another UNIX host or, more interesting, a host running MS Windows. So