<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/src/misc2.c, branch v0.3.2</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>Introduce nvim namespace: Move files.</title>
<updated>2014-05-15T18:46:01+00:00</updated>
<author>
<name>Eliseo Martínez</name>
<email>eliseomarmol@gmail.com</email>
</author>
<published>2014-05-12T00:25:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=da51dc9cf202772f60bd2da975dbef257bd9237c'/>
<id>da51dc9cf202772f60bd2da975dbef257bd9237c</id>
<content type='text'>
Move files from src/ to src/nvim/.
- src/nvim/ becomes the new root dir for nvim executable sources.
- src/libnvim/ is planned to become root dir of the neovim library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move files from src/ to src/nvim/.
- src/nvim/ becomes the new root dir for nvim executable sources.
- src/libnvim/ is planned to become root dir of the neovim library.
</pre>
</div>
</content>
</entry>
<entry>
<title>removed mch_lstat() and mch_stat() macros</title>
<updated>2014-05-09T13:49:34+00:00</updated>
<author>
<name>Stefan Hoffmann</name>
<email>stefan991@gmail.com</email>
</author>
<published>2014-05-03T14:13:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=eae498c4c5d34c1d0af40ecb430cbbc23b0a8e97'/>
<id>eae498c4c5d34c1d0af40ecb430cbbc23b0a8e97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>removed `vim_free()` function</title>
<updated>2014-05-05T22:40:07+00:00</updated>
<author>
<name>Matthias Beyer</name>
<email>mail@beyermatthias.de</email>
</author>
<published>2014-04-29T14:17:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d910ef2099f476ab2564d7c9ba2a33dc797b6385'/>
<id>d910ef2099f476ab2564d7c9ba2a33dc797b6385</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replaced `vim_free()` calls with `free()` calls</title>
<updated>2014-05-05T22:38:52+00:00</updated>
<author>
<name>Matthias Beyer</name>
<email>mail@beyermatthias.de</email>
</author>
<published>2014-04-29T14:16:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f9d4c78ddcd99efeeb4e4e44b7bd0b6e34889db3'/>
<id>f9d4c78ddcd99efeeb4e4e44b7bd0b6e34889db3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace vim_free() implementation</title>
<updated>2014-05-04T19:33:33+00:00</updated>
<author>
<name>Matthias Beyer</name>
<email>mail@beyermatthias.de</email>
</author>
<published>2014-04-26T18:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c5cac800e7b63d175f7da9462804d7f250f1e23a'/>
<id>c5cac800e7b63d175f7da9462804d7f250f1e23a</id>
<content type='text'>
This replaces the vim_free() implementation with a free() call and adds
a deprecated flag for the doxygen documentation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces the vim_free() implementation with a free() call and adds
a deprecated flag for the doxygen documentation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use portable format specifiers: Adapt/fix EMSGU/emsgu to use (uint64_t).</title>
<updated>2014-05-04T16:40:27+00:00</updated>
<author>
<name>Eliseo Martínez</name>
<email>eliseomarmol@gmail.com</email>
</author>
<published>2014-05-02T19:23:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a9e6098637e63c56209047707c6631da7b9ca409'/>
<id>a9e6098637e63c56209047707c6631da7b9ca409</id>
<content type='text'>
Problem

EMSGU macro was defined as the unsigned counterpart of EMSGN. This is,
invoking emsgu instead of emsgn and having a long_u argument instead of
a long.
But, surprisingly, emsgu was not defined anywhere, which didn't result
in an error because in fact EMSGU was not used (the only point in code
printing a %lu erroneously using EMSGN instead).

Solution

- Define emsgu.
- Adapt EMSGU macro to use uint64_t instead of long_u.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem

EMSGU macro was defined as the unsigned counterpart of EMSGN. This is,
invoking emsgu instead of emsgn and having a long_u argument instead of
a long.
But, surprisingly, emsgu was not defined anywhere, which didn't result
in an error because in fact EMSGU was not used (the only point in code
printing a %lu erroneously using EMSGN instead).

Solution

- Define emsgu.
- Adapt EMSGU macro to use uint64_t instead of long_u.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract strings.c from misc2.c</title>
<updated>2014-05-02T18:36:13+00:00</updated>
<author>
<name>John Schmidt</name>
<email>john.schmidt.h@gmail.com</email>
</author>
<published>2014-04-26T15:50:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7a4d24d4cc29ecd172b2848d97b0afca25c34973'/>
<id>7a4d24d4cc29ecd172b2848d97b0afca25c34973</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>revert #652</title>
<updated>2014-05-01T18:00:31+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2014-05-01T18:00:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=1b5217687abf8e1aeabaf4e5a64073177d56e593'/>
<id>1b5217687abf8e1aeabaf4e5a64073177d56e593</id>
<content type='text'>
reverting broad cosmetic/style change because:
- increases merge-conflicts
- increases overhead of merging upstream Vim patches
- reasons for change are ambiguous, so default to no change
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reverting broad cosmetic/style change because:
- increases merge-conflicts
- increases overhead of merging upstream Vim patches
- reasons for change are ambiguous, so default to no change
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove NUL macro</title>
<updated>2014-04-29T20:51:09+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro@gmail.com</email>
</author>
<published>2014-04-29T19:56:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2e4613aecc712eb5e893d341da5f571f932376d5'/>
<id>2e4613aecc712eb5e893d341da5f571f932376d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove code and checks for unsupported systems.</title>
<updated>2014-04-28T10:43:57+00:00</updated>
<author>
<name>Chris Watkins</name>
<email>chris.watkins88@gmail.com</email>
</author>
<published>2014-04-23T05:49:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9da32a1f78fe075663466ac1349cb1495420591f'/>
<id>9da32a1f78fe075663466ac1349cb1495420591f</id>
<content type='text'>
Remove remnants of support for systems including
__EMX__, MSDOS, OS2, AMIGA and MORPHOS.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove remnants of support for systems including
__EMX__, MSDOS, OS2, AMIGA and MORPHOS.
</pre>
</div>
</content>
</entry>
</feed>
