diff options
author | aph <a.hewson@gmail.com> | 2014-04-02 20:20:33 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-04 21:44:58 -0300 |
commit | 0954e608ce48225d3e4581297e5fa63b7ca1169b (patch) | |
tree | 8c87c242d84d6c1e32ca90cdde52b307218925e2 /src/macros.h | |
parent | 4c4880b69f2dc98a8f899fe394ea15a32bcf70f7 (diff) | |
download | rneovim-0954e608ce48225d3e4581297e5fa63b7ca1169b.tar.gz rneovim-0954e608ce48225d3e4581297e5fa63b7ca1169b.tar.bz2 rneovim-0954e608ce48225d3e4581297e5fa63b7ca1169b.zip |
remove pchar from macros.h
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/macros.h b/src/macros.h index fbd3440c6d..af47fbe296 100644 --- a/src/macros.h +++ b/src/macros.h @@ -11,11 +11,6 @@ */ /* - * pchar(lp, c) - put character 'c' at position 'lp' - */ -#define pchar(lp, c) (*(ml_get_buf(curbuf, (lp).lnum, TRUE) + (lp).col) = (c)) - -/* * Position comparisons */ # define lt(a, b) (((a).lnum != (b).lnum) \ |