Skip to content

Commit b8f1cea

Browse files
committed
Add new NBSP constant to UConsts unit.
Constant for Unicode non-breaking space character
1 parent 96ea2bb commit b8f1cea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Src/UConsts.pas

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2009-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2009-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Defines various character, string and resource id constants.
99
}
@@ -36,7 +36,8 @@ interface
3636
GT = '>'; // greater-than / closing angle bracket character
3737
LT = '<'; // less-than / opening angle bracket character
3838

39-
COPYRIGHT = #$00A9;
39+
NBSP = #$00A0; // non-breaking space
40+
COPYRIGHT = #$00A9; // copyright symbol
4041

4142
CRLF = CR + LF; // carriage return followed by line feed
4243
EOL = CRLF; // end of line character sequence for Windows systems

0 commit comments

Comments
 (0)