Mercurial > emacs
comparison lispref/files.texi @ 63583:99e9892a51d9
Fix formatting ugliness.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 18 Jun 2005 13:57:17 +0000 |
parents | 19deaa395e85 |
children | e836425ee789 b7da78284d4c |
comparison
equal
deleted
inserted
replaced
63582:6dfe79da09ed | 63583:99e9892a51d9 |
---|---|
96 new buffer and reading the file into it. It also returns that buffer. | 96 new buffer and reading the file into it. It also returns that buffer. |
97 | 97 |
98 Aside from some technical details, the body of the @code{find-file} | 98 Aside from some technical details, the body of the @code{find-file} |
99 function is basically equivalent to: | 99 function is basically equivalent to: |
100 | 100 |
101 @example | 101 @smallexample |
102 (switch-to-buffer (find-file-noselect filename nil nil wildcards)) | 102 (switch-to-buffer (find-file-noselect filename nil nil wildcards)) |
103 @end example | 103 @end smallexample |
104 | 104 |
105 @noindent | 105 @noindent |
106 (See @code{switch-to-buffer} in @ref{Displaying Buffers}.) | 106 (See @code{switch-to-buffer} in @ref{Displaying Buffers}.) |
107 | 107 |
108 If @var{wildcards} is non-@code{nil}, which is always true in an | 108 If @var{wildcards} is non-@code{nil}, which is always true in an |
2729 This function tests whether @var{filename} is a remote file. If | 2729 This function tests whether @var{filename} is a remote file. If |
2730 @var{filename} is local (not remote), the return value is @code{nil}. | 2730 @var{filename} is local (not remote), the return value is @code{nil}. |
2731 If @var{filename} is indeed remote, the return value is a string that | 2731 If @var{filename} is indeed remote, the return value is a string that |
2732 identifies the remote system. | 2732 identifies the remote system. |
2733 | 2733 |
2734 This identifier string may include a host name, a user name, and | 2734 This identifier string can include a host name and a user name, as |
2735 characters designating the method used to access the remote system. | 2735 well as characters designating the method used to access the remote |
2736 For example, the remote identifier string for the filename | 2736 system. For example, the remote identifier string for the filename |
2737 @code{/ssh:user@@host:/some/file} is @code{/ssh:user@@host:}. | 2737 @code{/ssh:user@@host:/some/file} is @code{/ssh:user@@host:}. |
2738 | 2738 |
2739 If @code{file-remote-p} returns the same identifier for two different | 2739 If @code{file-remote-p} returns the same identifier for two different |
2740 filenames, that means they are stored on the same file system and can | 2740 filenames, that means they are stored on the same file system and can |
2741 be accessed locally with respect to each other. This means, for | 2741 be accessed locally with respect to each other. This means, for |