The R Project SVN R

Rev

Rev 42333 | Rev 46945 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42333 Rev 45416
Line 1... Line 1...
1
% File src/library/base/man/encodeString.Rd
1
% File src/library/base/man/encodeString.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2007 R Core Development Team
3
% Copyright 1995-2008 R Core Development Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{encodeString}
6
\name{encodeString}
7
\alias{encodeString}
7
\alias{encodeString}
8
\title{
8
\title{
Line 31... Line 31...
31
    consistency with \code{format.default}.}
31
    consistency with \code{format.default}.}
32
}
32
}
33
\details{
33
\details{
34
  This escapes backslash and the control characters \code{\a} (bell),
34
  This escapes backslash and the control characters \code{\a} (bell),
35
  \code{\b} (backspace), \code{\f} (formfeed), \code{\n} (line feed),
35
  \code{\b} (backspace), \code{\f} (formfeed), \code{\n} (line feed),
36
  \code{\r} (carriage return), \code{\t} (tab), \code{\v} (vertical tab)
36
  \code{\r} (carriage return), \code{\t} (tab) and \code{\v} (vertical tab)
37
  and \code{\0} (nul) as well as any non-printable characters in a
37
  as well as any non-printable characters in a
38
  single-byte locale, which are printed in octal notation
38
  single-byte locale, which are printed in octal notation
39
  (\code{\xyz} with leading zeroes).
39
  (\code{\xyz} with leading zeroes).
40
#ifdef unix
40
#ifdef unix
41
  (Which characters are non-printable depends on the current locale.)
41
  (Which characters are non-printable depends on the current locale.)
42
#endif
42
#endif