From fe11e704eb846e92e58bc9185467a57256af0cfd Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 9 Aug 2020 12:46:11 +0200 Subject: [PATCH] Representation of `__` in typewrite font versus code Seen the discussion with the doxygen pull request https://github.com/doxygen/doxygen/pull/7782 and the subsequent regression, I think it is better to signal the words like `__GNUC__` really as code by using back-ticks in the code. --- .../Developer_manual/Chapter_portability.txt | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Documentation/doc/Documentation/Developer_manual/Chapter_portability.txt b/Documentation/doc/Documentation/Developer_manual/Chapter_portability.txt index 02242af5846..3678991eb5f 100644 --- a/Documentation/doc/Documentation/Developer_manual/Chapter_portability.txt +++ b/Documentation/doc/Documentation/Developer_manual/Chapter_portability.txt @@ -101,70 +101,70 @@ the following table. GNU 3.2.1 -__GNUC__ +`__GNUC__` 3 GNU 3.2.1 -__GNUC_MINOR__ +`__GNUC_MINOR__` 2 GNU 3.2.1 -__GNUC_PATCHLEVEL__ +`__GNUC_PATCHLEVEL__` 1 Microsoft VC7.1 -_MSC_VER +`_MSC_VER` 1310 Microsoft VC8.0 -_MSC_VER +`_MSC_VER` 1400 Intel 11.1 -__INTEL_COMPILER +`__INTEL_COMPILER` 1110 Clang 2.9 -__clang_major__ +`__clang_major__` 2 Clang 2.9 -__clang_minor__ +`__clang_minor__` 9 SUN 5.3 -__SUNPRO_CC +`__SUNPRO_CC` 0x530 SUN 5.10 -__SUNPRO_CC +`__SUNPRO_CC` 0x5100 @@ -178,17 +178,17 @@ There are also flags to identify the architecture. SGI -__sgi +`__sgi` SUN -__sun +`__sun` Linux -__linux +`__linux`