diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-10-10 21:54:10 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-11-11 11:55:58 -0500 |
commit | 8390accde7e37f1531b250ec2144b8d16cdee198 (patch) | |
tree | 8cb082392e542ee197fb31972d62d71b8bef3c7f | |
parent | e450c541ddfe1266d3d56b594f83ab197e747584 (diff) | |
download | rneovim-8390accde7e37f1531b250ec2144b8d16cdee198.tar.gz rneovim-8390accde7e37f1531b250ec2144b8d16cdee198.tar.bz2 rneovim-8390accde7e37f1531b250ec2144b8d16cdee198.zip |
Fix fileio.c's diagram.
-rw-r--r-- | src/nvim/fileio.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 05a0a59874..4486d43578 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -72,25 +72,25 @@ * The result is an array of Autopat lists, which point to AutoCmd lists: * * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL - * Autopat.cmds Autopat.cmds - * | | - * V V - * AutoCmd.next AutoCmd.next - * | | - * V V - * AutoCmd.next NULL - * | - * V - * NULL + * Autopat.cmds Autopat.cmds + * | | + * V V + * AutoCmd.next AutoCmd.next + * | | + * V V + * AutoCmd.next NULL + * | + * V + * NULL * * first_autopat[1] --> Autopat.next --> NULL - * Autopat.cmds - * | - * V - * AutoCmd.next - * | - * V - * NULL + * Autopat.cmds + * | + * V + * AutoCmd.next + * | + * V + * NULL * etc. * * The order of AutoCmds is important, this is the order in which they were |