Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions source/preprocessor.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2219,20 +2219,20 @@
\item
\indextext{__file__@\mname{FILE}}%
\mname{FILE}\\
The presumed name of the current source file (a character string
literal).
\begin{footnote}
The presumed source file name can be changed by the \tcode{\#line} directive.
\end{footnote}
A character string literal representing the presumed name of
the current source file.
\begin{note}
The presumed source file name can be changed by the \tcode{\#line} directive\iref{cpp.line}.
\end{note}

\item
\indextext{__line__@\mname{LINE}}%
\mname{LINE}\\
The presumed line number (within the current source file) of the current source line
(an integer literal).
\begin{footnote}
The presumed line number can be changed by the \tcode{\#line} directive.
\end{footnote}
A decimal integer literal representing the presumed line number
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The incoming text says "an integer literal", allowing hex or binary literals. You change that to "decimal", which feels like a normative change.

of the current source line within the current source file.
\begin{note}
The presumed line number can be changed by the \tcode{\#line} directive\iref{cpp.line}.
\end{note}

\item
\indextext{stdc__embed_not_found__@\mname{STDC_EMBED_NOT_FOUND}}%
Expand Down