diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-13 22:59:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-13 22:59:32 +0200 |
commit | fa55cfc69d2b14761e2a8bd85bc1e0d82df770aa (patch) | |
tree | 3420b78d3aa0d58695f9a660592b655ac2f22fb1 /src/README.md | |
parent | d5abb4c87727eecb71b0e8ffdda60fc9598272f3 (diff) | |
download | vim-git-fa55cfc69d2b14761e2a8bd85bc1e0d82df770aa.tar.gz |
patch 8.1.1684: profiling functionality is spread outv8.1.1684
Problem: Profiling functionality is spread out.
Solution: Put profiling functionality in profiling.c. (Yegappan Lakshmanan,
closes #4666)
Diffstat (limited to 'src/README.md')
-rw-r--r-- | src/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/README.md b/src/README.md index ff9f93ac6..87361097f 100644 --- a/src/README.md +++ b/src/README.md @@ -44,13 +44,14 @@ menu.c | menus message.c | (error) messages ops.c | handling operators ("d", "y", "p") option.c | options +profiler.c | vim script profiler quickfix.c | quickfix commands (":make", ":cn") regexp.c | pattern matching screen.c | updating the windows search.c | pattern searching sign.c | signs spell.c | spell checking -syntax.c | syntax and other highlighting +syntax.c | syntax and other highlighting tag.c | tags term.c | terminal handling, termcap codes undo.c | undo and redo |