diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-06-18 13:57:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-06-18 13:57:17 +0000 |
commit | 342fd6cd64f3199cc46a08b28c1b7b15abcc168e (patch) | |
tree | dd4459493ee270e3cd5be82ce8db972479cde113 /lispref/files.texi | |
parent | 9a2625351f07c169ca526e4d1646efbcbb5cd223 (diff) | |
download | emacs-342fd6cd64f3199cc46a08b28c1b7b15abcc168e.tar.gz |
Fix formatting ugliness.
Diffstat (limited to 'lispref/files.texi')
-rw-r--r-- | lispref/files.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/files.texi b/lispref/files.texi index 766220aa882..93c104e6ccd 100644 --- a/lispref/files.texi +++ b/lispref/files.texi @@ -98,9 +98,9 @@ new buffer and reading the file into it. It also returns that buffer. Aside from some technical details, the body of the @code{find-file} function is basically equivalent to: -@example +@smallexample (switch-to-buffer (find-file-noselect filename nil nil wildcards)) -@end example +@end smallexample @noindent (See @code{switch-to-buffer} in @ref{Displaying Buffers}.) @@ -2731,9 +2731,9 @@ This function tests whether @var{filename} is a remote file. If If @var{filename} is indeed remote, the return value is a string that identifies the remote system. -This identifier string may include a host name, a user name, and -characters designating the method used to access the remote system. -For example, the remote identifier string for the filename +This identifier string can include a host name and a user name, as +well as characters designating the method used to access the remote +system. For example, the remote identifier string for the filename @code{/ssh:user@@host:/some/file} is @code{/ssh:user@@host:}. If @code{file-remote-p} returns the same identifier for two different |