diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-17 12:01:45 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-20 16:59:57 -0400 |
commit | a0015103820fe2a9df92275561c2d71864cf7eb1 (patch) | |
tree | 76c7edba2e2d8138fc5d282969f539649a00d730 /src/nvim/macros.h | |
parent | c7eb8c5cd7efb12a8096418196408a60053ebc62 (diff) | |
download | rneovim-a0015103820fe2a9df92275561c2d71864cf7eb1.tar.gz rneovim-a0015103820fe2a9df92275561c2d71864cf7eb1.tar.bz2 rneovim-a0015103820fe2a9df92275561c2d71864cf7eb1.zip |
startuptime: move code to profile.{c,h} + doc
It's a better place to put it. Also slightly documented and reformatted, but
not changed.
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r-- | src/nvim/macros.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h index bff19f17dd..f8fd6ac6a2 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -116,12 +116,6 @@ # define mch_open_rw(n, f) os_open((n), (f), 0) #endif -#ifdef STARTUPTIME -# define TIME_MSG(s) { if (time_fd != NULL) time_msg(s, NULL); } -#else -# define TIME_MSG(s) -#endif - # define REPLACE_NORMAL(s) (((s) & REPLACE_FLAG) && !((s) & VREPLACE_FLAG)) # define UTF_COMPOSINGLIKE(p1, p2) utf_composinglike((p1), (p2)) |