The R Project SVN R

Rev

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

Rev 71883 Rev 81602
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, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2017 R Core Team
3
% Copyright 1995-2022 R Core 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 30... Line 30...
30
    \code{justify == "none"} is equivalent to \code{width = 0}, for
30
    \code{justify == "none"} is equivalent to \code{width = 0}, for
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 \samp{\\a} (bell),
34
  This escapes backslash and the control characters \samp{\\a} (bell),
35
  \samp{\\b} (backspace), \samp{\\f} (formfeed), \samp{\\n} (line feed),
35
  \samp{\\b} (backspace), \samp{\\f} (formfeed),
-
 
36
  \samp{\\n} (line feed, aka \dQuote{newline}),
36
  \samp{\\r} (carriage return), \samp{\\t} (tab) and \samp{\\v}
37
  \samp{\\r} (carriage return), \samp{\\t} (tab) and \samp{\\v}
37
  (vertical tab) as well as any non-printable characters in a
38
  (vertical tab) as well as any non-printable characters in a
38
  single-byte locale, which are printed in octal notation (\samp{\\xyz}
39
  single-byte locale, which are printed in octal notation (\samp{\\xyz}
39
  with leading zeroes).
40
  with leading zeroes).
40
 
41