Skip to content

Commit 5dcee92

Browse files
author
3836425+corob-msft@users.noreply.github.com
committed
Executable -> Execution character set
1 parent 79e64f4 commit 5dcee92

6 files changed

Lines changed: 9 additions & 9 deletions

docs/build/reference/execution-charset-set-execution-character-set.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ If you want to set both the source character set and the execution character set
4747
[MSVC Compiler Options](compiler-options.md)<br/>
4848
[MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md)<br/>
4949
[/source-charset (Set Source Character Set)](source-charset-set-source-character-set.md)<br/>
50-
[/utf-8 (Set Source and Executable character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)<br/>
50+
[/utf-8 (Set source and execution character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)<br/>
5151
[/validate-charset (Validate for compatible characters)](validate-charset-validate-for-compatible-characters.md)

docs/build/reference/source-charset-set-source-character-set.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ If you want to set both the source character set and the execution character set
4949
[MSVC Compiler Options](compiler-options.md)<br/>
5050
[MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md)<br/>
5151
[/execution-charset (Set Execution Character Set)](execution-charset-set-execution-character-set.md)<br/>
52-
[/utf-8 (Set Source and Executable character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)<br/>
52+
[/utf-8 (Set source and execution character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)<br/>
5353
[/validate-charset (Validate for compatible characters)](validate-charset-validate-for-compatible-characters.md)

docs/build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
description: "Learn more about: `/utf-8` (Set Source and Executable character sets to UTF-8)"
3-
title: "/utf-8 (Set Source and Executable character sets to UTF-8)"
2+
description: "Learn more about: `/utf-8` (Set source and execution character sets to UTF-8)"
3+
title: "/utf-8 (Set source and execution character sets to UTF-8)"
44
ms.date: "04/26/2020"
55
f1_keywords: ["/utf-8"]
66
helpviewer_keywords: ["/utf-8 compiler option"]
77
ms.assetid: f0e1f3cb-6cae-46eb-9483-04ed13d9b504
88
no-loc: [UTF, UTF-8, UTF-16]
99
---
10-
# `/utf-8` (Set Source and Executable character sets to UTF-8)
10+
# `/utf-8` (Set source and execution character sets to UTF-8)
1111

1212
Specifies both the source character set and the execution character set as UTF-8.
1313

docs/build/reference/validate-charset-validate-for-compatible-characters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ Visual Studio uses UTF-8 as the internal character encoding during conversion be
4040
[MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md)<br/>
4141
[/execution-charset (Set Execution Character Set)](execution-charset-set-execution-character-set.md)<br/>
4242
[/source-charset (Set Source Character Set)](source-charset-set-source-character-set.md)<br/>
43-
[/utf-8 (Set Source and Executable character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)
43+
[/utf-8 (Set source and execution character sets to UTF-8)](utf-8-set-source-and-executable-character-sets-to-utf-8.md)

docs/build/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ items:
715715
href: ../build/reference/translateinclude.md
716716
- name: /U, /u (Undefine symbols)
717717
href: ../build/reference/u-u-undefine-symbols.md
718-
- name: /utf-8 (Set source and executable character sets to UTF-8)
718+
- name: /utf-8 (Set source and execution character sets to UTF-8)
719719
href: ../build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md
720720
- name: /V (Version number)
721721
href: ../build/reference/v-version-number.md

docs/preprocessor/execution-character-set.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Specifies the target execution character set. Currently the only target executio
2121

2222
## Remarks
2323

24-
This compiler directive is obsolete starting in Visual Studio 2015 Update 2. We recommend that you use the **`/execution-charset:utf-8`** or **`/utf-8`** compiler options together with using the `u8` prefix on narrow character and string literals that contain extended characters. For more information about the `u8` prefix, see [String and character literals](../cpp/string-and-character-literals-cpp.md). For more information about the compiler options, see [`/execution-charset` (Set execution character set)](../build/reference/execution-charset-set-execution-character-set.md) and [`/utf-8` (Set source and executable character sets to UTF-8)](../build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md).
24+
This compiler directive is obsolete starting in Visual Studio 2015 Update 2. We recommend that you use the **`/execution-charset:utf-8`** or **`/utf-8`** compiler options together with using the `u8` prefix on narrow character and string literals that contain extended characters. For more information about the `u8` prefix, see [String and character literals](../cpp/string-and-character-literals-cpp.md). For more information about the compiler options, see [`/execution-charset` (Set execution character set)](../build/reference/execution-charset-set-execution-character-set.md) and [`/utf-8` (Set source and execution character sets to UTF-8)](../build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md).
2525

2626
The `#pragma execution_character_set("utf-8")` directive tells the compiler to encode narrow character and narrow string literals in your source code as UTF-8 in the executable. This output encoding is independent of the source file encoding used.
2727

@@ -33,4 +33,4 @@ By default, Visual Studio uses the current code page as the source character set
3333

3434
[Pragma directives and the `__pragma` and `_Pragma` keywords](./pragma-directives-and-the-pragma-keyword.md)\
3535
[`/execution-charset` (Set execution character set)](../build/reference/execution-charset-set-execution-character-set.md)\
36-
[`/utf-8` (Set source and executable character sets to UTF-8)](../build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md)
36+
[`/utf-8` (Set source and execution character sets to UTF-8)](../build/reference/utf-8-set-source-and-executable-character-sets-to-utf-8.md)

0 commit comments

Comments
 (0)