Skip to content

Commit

Permalink
block comments for continuation lines
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoGiotto committed Jul 28, 2023
1 parent f4b2f6b commit 02a2103
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/metamath.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
// 2. In the directory where these files are present, type:
// gcc m*.c -o metamath
// 3. For full error checking, use:
// gcc m*.c -o metamath -O2 -Wall -Wextra -Wmissing-prototypes
// -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-align
// -Wredundant-decls -Wnested-externs -Winline -Wno-long-long
// -Wconversion -Wstrict-prototypes -std=c99 -pedantic -Wunused-result
/* gcc m*.c -o metamath -O2 -Wall -Wextra -Wmissing-prototypes \
-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-align \
-Wredundant-decls -Wnested-externs -Winline -Wno-long-long \
-Wconversion -Wstrict-prototypes -std=c99 -pedantic -Wunused-result */
// Note: gcc 4.9.2 (on Debian) fails with "unknown type name `ssize_t'" if
// -std=c99 is used, so omit -std=c99 to work around this problem.
// 4. For faster runtime, use these gcc options:
// gcc m*.c -o metamath -O3 -funroll-loops -finline-functions
// -fomit-frame-pointer -Wall -std=c99 -pedantic -fno-strict-overflow
/* gcc m*.c -o metamath -O3 -funroll-loops -finline-functions \
-fomit-frame-pointer -Wall -std=c99 -pedantic -fno-strict-overflow */
// 5. The Windows version in the download was compiled with lcc-win32 version 3.8:
// lc -O m*.c -o metamath.exe
// 6. On Linux, if you have autoconf, automake, and a C compiler, you
Expand Down
6 changes: 3 additions & 3 deletions src/mmwtex.c
Original file line number Diff line number Diff line change
Expand Up @@ -1664,9 +1664,9 @@ flag printTexComment(vstring commentPtr, flag htmlCenterFlag,
// #define CONVERT_TO_HTML 64 - convert '<' to '&gt;' unless
// <HTML>, </HTML> present
// #define METAMATH_COMMENT 128 - $) terminates string
// #define PROCESS_EVERYTHING PROCESS_SYMBOLS + PROCESS_LABELS
// + ADD_COLORED_LABEL_NUMBER + PROCESS_BIBREFS
// + PROCESS_UNDERSCORES + CONVERT_HTML + METAMATH_COMMENT
/* #define PROCESS_EVERYTHING PROCESS_SYMBOLS + PROCESS_LABELS \
+ ADD_COLORED_LABEL_NUMBER + PROCESS_BIBREFS \
+ PROCESS_UNDERSCORES + CONVERT_HTML + METAMATH_COMMENT */

// 10-Dec-2018 nm - expanded meaning of errorsOnly for MARKUP command:
// 2 = process as if in <HTML>...</HTML> preformatted mode but
Expand Down

0 comments on commit 02a2103

Please sign in to comment.