diff options
author | James McCoy <jamessan@jamessan.com> | 2021-12-17 07:15:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 07:15:42 -0500 |
commit | 51306f98b8e35d056c3d12c7a9973a0fa92f8172 (patch) | |
tree | c4c775780d1d6f6fea8b4b0ee9bf7db6e549964c /src/nvim/regexp_nfa.c | |
parent | b1757e1c29d07c7958c62427e19e85916670049d (diff) | |
parent | f59f81c32e901b5f6990bbe0b5608c073c0b1b9c (diff) | |
download | rneovim-51306f98b8e35d056c3d12c7a9973a0fa92f8172.tar.gz rneovim-51306f98b8e35d056c3d12c7a9973a0fa92f8172.tar.bz2 rneovim-51306f98b8e35d056c3d12c7a9973a0fa92f8172.zip |
Merge pull request #16681 from zeertzjq/vim-8.2.3825
vim-patch:8.2.3825: various comments could be improved
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r-- | src/nvim/regexp_nfa.c | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 3e7306bad3..eac1b4596e 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -18,22 +18,20 @@ #include "nvim/garray.h" #include "nvim/os/input.h" -/* - * Logging of NFA engine. - * - * The NFA engine can write four log files: - * - Error log: Contains NFA engine's fatal errors. - * - Dump log: Contains compiled NFA state machine's information. - * - Run log: Contains information of matching procedure. - * - Debug log: Contains detailed information of matching procedure. Can be - * disabled by undefining NFA_REGEXP_DEBUG_LOG. - * The first one can also be used without debug mode. - * The last three are enabled when compiled as debug mode and individually - * disabled by commenting them out. - * The log files can get quite big! - * Do disable all of this when compiling Vim for debugging, undefine REGEXP_DEBUG in - * regexp.c - */ +// Logging of NFA engine. +// +// The NFA engine can write four log files: +// - Error log: Contains NFA engine's fatal errors. +// - Dump log: Contains compiled NFA state machine's information. +// - Run log: Contains information of matching procedure. +// - Debug log: Contains detailed information of matching procedure. Can be +// disabled by undefining NFA_REGEXP_DEBUG_LOG. +// The first one can also be used without debug mode. +// The last three are enabled when compiled as debug mode and individually +// disabled by commenting them out. +// The log files can get quite big! +// To disable all of this when compiling Vim for debugging, undefine REGEXP_DEBUG in +// regexp.c #ifdef REGEXP_DEBUG # define NFA_REGEXP_ERROR_LOG "nfa_regexp_error.log" # define NFA_REGEXP_DUMP_LOG "nfa_regexp_dump.log" |