diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-04-11 18:29:48 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-04-13 22:12:12 +0200 |
commit | 0fb571e3b5043f136f2394d84b942b8c93fdde45 (patch) | |
tree | 897846d0a34979ccf7db46c53926aafaea437f9c /src/nvim/ex_getln.c | |
parent | 9a357043333cee38846a7a9a764cdae96d0856fd (diff) | |
download | rneovim-0fb571e3b5043f136f2394d84b942b8c93fdde45.tar.gz rneovim-0fb571e3b5043f136f2394d84b942b8c93fdde45.tar.bz2 rneovim-0fb571e3b5043f136f2394d84b942b8c93fdde45.zip |
refactor: add pure attribute to pure functions
This will allow compilers that support the pure attribute to make
further optimizations to functions.
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index a7c0b06050..33e71115a4 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -2604,6 +2604,7 @@ char_u *getexline(int c, void *cookie, int indent, bool do_concat) } bool cmdline_overstrike(void) + FUNC_ATTR_PURE { return ccline.overstrike; } @@ -2611,6 +2612,7 @@ bool cmdline_overstrike(void) /// Return true if the cursor is at the end of the cmdline. bool cmdline_at_end(void) + FUNC_ATTR_PURE { return (ccline.cmdpos >= ccline.cmdlen); } |