diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-04-04 11:22:49 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-04-04 11:22:49 +0200 |
| commit | 7f0ea7a559f6c1b79b554d8e1cf880f4d22c7a61 (patch) | |
| tree | b3d375d26dcefae0f8a513b2b1df4e30bccaac92 /vis.c | |
| parent | ca222a7cc0d5a55312d96000a617e11d7a9996a1 (diff) | |
| download | vis-7f0ea7a559f6c1b79b554d8e1cf880f4d22c7a61.tar.gz vis-7f0ea7a559f6c1b79b554d8e1cf880f4d22c7a61.tar.xz | |
Mark some pointers in struct Action as const
Diffstat (limited to 'vis.c')
| -rw-r--r-- | vis.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -130,9 +130,9 @@ typedef struct { typedef struct { /** collects all information until an operator is executed */ int count; bool linewise; - Operator *op; - Movement *movement; - TextObject *textobj; + const Operator *op; + const Movement *movement; + const TextObject *textobj; Register *reg; MarkIntern mark; Key key; |
