diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-17 02:08:21 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-17 02:08:21 +0100 |
| commit | 706b01ba7999b65da68055a7ac75c2be410ffd2c (patch) | |
| tree | 10d60b3bb28151dde32730f34e7dfdd0074e2cbd /src/nvim/pos.h | |
| parent | 4a107a11a1c708c2fb8e40b6464f080aca111767 (diff) | |
| parent | 095e6cc2e098db110981e5f9ea4bbc0ce316cecb (diff) | |
| download | rneovim-706b01ba7999b65da68055a7ac75c2be410ffd2c.tar.gz rneovim-706b01ba7999b65da68055a7ac75c2be410ffd2c.tar.bz2 rneovim-706b01ba7999b65da68055a7ac75c2be410ffd2c.zip | |
Merge #6114 'Partial string handling refactoring'.
Diffstat (limited to 'src/nvim/pos.h')
| -rw-r--r-- | src/nvim/pos.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/pos.h b/src/nvim/pos.h index 864f3fe866..966255e6a4 100644 --- a/src/nvim/pos.h +++ b/src/nvim/pos.h @@ -2,6 +2,8 @@ #define NVIM_POS_H typedef long linenr_T; // line number type +/// Format used to print values which have linenr_T type +#define PRIdLINENR "ld" /// Column number type typedef int colnr_T; |
