From Jason Turner

[lex.ppnumber]

Diff to HTML by rtfpessoa

tmp/tmp9w5z51n9/{from.md → to.md} RENAMED
@@ -4,17 +4,19 @@
4
  pp-number:
5
  digit
6
  '.' digit
7
  pp-number digit
8
  pp-number identifier-nondigit
 
 
9
  pp-number 'e' sign
10
  pp-number 'E' sign
11
  pp-number '.'
12
  ```
13
 
14
- Preprocessing number tokens lexically include all integral literal
15
  tokens ([[lex.icon]]) and all floating literal tokens ([[lex.fcon]]).
16
 
17
  A preprocessing number does not have a type or a value; it acquires both
18
- after a successful conversion to an integral literal token or a floating
19
  literal token.
20
 
 
4
  pp-number:
5
  digit
6
  '.' digit
7
  pp-number digit
8
  pp-number identifier-nondigit
9
+ pp-number ''' digit
10
+ pp-number ''' nondigit
11
  pp-number 'e' sign
12
  pp-number 'E' sign
13
  pp-number '.'
14
  ```
15
 
16
+ Preprocessing number tokens lexically include all integer literal
17
  tokens ([[lex.icon]]) and all floating literal tokens ([[lex.fcon]]).
18
 
19
  A preprocessing number does not have a type or a value; it acquires both
20
+ after a successful conversion to an integer literal token or a floating
21
  literal token.
22