Skip to content

Commit 23bfdda

Browse files
authored
Merge pull request #2161 from corob-msft/cr-1354-ff-1
Fix 1354: Change formfeed to form feed
2 parents bd3fe0a + ab641d9 commit 23bfdda

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/c-language/character-sets1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The source character set and execution character set include the ASCII character
1515
|---------------------|---------------|-----------------|
1616
|\a|Alert/bell|7|
1717
|\b|Backspace|8|
18-
|\f|Formfeed|12|
18+
|\f|Form feed|12|
1919
|\n|Newline|10|
2020
|\r|Carriage return|13|
2121
|\t|Horizontal tab|9|

docs/c-language/escape-sequences.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Escape Sequences"
33
ms.date: "11/04/2016"
4-
helpviewer_keywords: ["\r escape sequence", "double backslash", "horizontal-tab \t escape sequence", "(') single quotation mark", "bell character \a escape sequence", "escape sequences", "hexadecimal escape sequence", "carriage returns", "tab \t escape sequence", "\f escape sequence", "quotation marks, single", "formfeed \f escape sequence", "\v escape sequence", "control character escape sequences", "\ symbol in escape sequences", "octal escape sequence", "escape characters", "newline character \n escape sequence", "nongraphic control characters", "question mark, literal", "\n escape sequence", "vertical tab \v escape sequence", "\a escape sequence", "? symbol", "? symbol, escape sequence character", "\t escape sequence", "backspace escape sequence"]
4+
helpviewer_keywords: ["\r escape sequence", "double backslash", "horizontal-tab \t escape sequence", "(') single quotation mark", "bell character \a escape sequence", "escape sequences", "hexadecimal escape sequence", "carriage returns", "tab \t escape sequence", "\f escape sequence", "quotation marks, single", "form feed \f escape sequence", "\v escape sequence", "control character escape sequences", "\ symbol in escape sequences", "octal escape sequence", "escape characters", "newline character \n escape sequence", "nongraphic control characters", "question mark, literal", "\n escape sequence", "vertical tab \v escape sequence", "\a escape sequence", "? symbol", "? symbol, escape sequence character", "\t escape sequence", "backspace escape sequence"]
55
ms.assetid: 5aef377f-a76c-4d5c-aa04-8308758ad6a8
66
---
77
# Escape Sequences
@@ -18,7 +18,7 @@ Note that the question mark preceded by a backslash (**\\?**) specifies a litera
1818
|---------------------|----------------|
1919
|**\a**|Bell (alert)|
2020
|**\b**|Backspace|
21-
|**\f**|Formfeed|
21+
|**\f**|Form feed|
2222
|**\n**|New line|
2323
|**\r**|Carriage return|
2424
|**\t**|Horizontal tab|
@@ -37,7 +37,7 @@ If a backslash precedes a character that does not appear in the table, the compi
3737

3838
**END Microsoft Specific**
3939

40-
Escape sequences allow you to send nongraphic control characters to a display device. For example, the ESC character (**\033**) is often used as the first character of a control command for a terminal or printer. Some escape sequences are device-specific. For instance, the vertical-tab and formfeed escape sequences (**\v** and **\f**) do not affect screen output, but they do perform appropriate printer operations.
40+
Escape sequences allow you to send nongraphic control characters to a display device. For example, the ESC character (**\033**) is often used as the first character of a control command for a terminal or printer. Some escape sequences are device-specific. For instance, the vertical tab and form feed escape sequences (**\v** and **\f**) do not affect screen output, but they do perform appropriate printer operations.
4141

4242
You can also use the backslash (**\\**) as a continuation character. When a newline character (equivalent to pressing the RETURN key) immediately follows the backslash, the compiler ignores the backslash and the newline character and treats the next line as part of the previous line. This is useful primarily for preprocessor definitions longer than a single line. For example:
4343

docs/c-language/white-space-characters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.assetid: 030ccbdc-2db3-4dd0-88c8-f5c2669ddebf
66
---
77
# White-Space Characters
88

9-
Space, tab, linefeed, carriage-return, formfeed, vertical-tab, and newline characters are called "white-space characters" because they serve the same purpose as the spaces between words and lines on a printed page — they make reading easier. Tokens are delimited (bounded) by white-space characters and by other tokens, such as operators and punctuation. When parsing code, the C compiler ignores white-space characters unless you use them as separators or as components of character constants or string literals. Use white-space characters to make a program more readable. Note that the compiler also treats comments as white space.
9+
Space, tab, linefeed, carriage return, form feed, vertical tab, and newline characters are called "white-space characters" because they serve the same purpose as the spaces between words and lines on a printed page — they make reading easier. Tokens are delimited (bounded) by white-space characters and by other tokens, such as operators and punctuation. When parsing code, the C compiler ignores white-space characters unless you use them as separators or as components of character constants or string literals. Use white-space characters to make a program more readable. Note that the compiler also treats comments as white space.
1010

1111
## See also
1212

docs/c-runtime-library/is-isw-routines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Printable wide character, including space wide character (L' ').
140140
Printable wide character that is neither space wide character (L' ') nor wide character for which `iswalnum` is nonzero.
141141

142142
`iswspace`<br/>
143-
Wide character that corresponds to standard white-space character or is one of implementation-defined set of wide characters for which `iswalnum` is false. Standard white-space characters are: space (L' '), formfeed (L'\f'), newline (L'\n'), carriage return (L'\r'), horizontal tab (L'\t'), and vertical tab (L'\v').
143+
Wide character that corresponds to standard white-space character or is one of implementation-defined set of wide characters for which `iswalnum` is false. Standard white-space characters are: space (L' '), form feed (L'\f'), newline (L'\n'), carriage return (L'\r'), horizontal tab (L'\t'), and vertical tab (L'\v').
144144

145145
`iswupper`<br/>
146146
Wide character that is uppercase or is one of an implementation-defined set of wide characters for which none of `iswcntrl`, `iswdigit`, `iswpunct`, or `iswspace` is nonzero. `iswupper` returns nonzero only for wide characters that correspond to uppercase characters.

docs/cpp/tokens-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Tokens are usually separated by *white space*. White space can be one or more:
1616

1717
- New lines
1818

19-
- Formfeeds
19+
- Form feeds
2020

2121
- Comments
2222

0 commit comments

Comments
 (0)