<feed xmlns='http://www.w3.org/2005/Atom'>
<title>magit.git, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/'/>
<entry>
<title>magit-blame-mode: Set magit-blame--make-margin-overlays to boolean</title>
<updated>2026-04-26T13:40:25+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-26T13:40:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=09c63eb957efdf1b8ac431307b5bd277d6b15ffd'/>
<id>09c63eb957efdf1b8ac431307b5bd277d6b15ffd</id>
<content type='text'>
That was the intention all along.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That was the intention all along.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add kludge to verify that a recent transient is loaded</title>
<updated>2026-04-22T22:06:22+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-22T22:06:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=569b9656d6a2c792b07d3980796c76b121c9737e'/>
<id>569b9656d6a2c792b07d3980796c76b121c9737e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>magit--display-core-upgrade-instructions: New function</title>
<updated>2026-04-22T22:06:21+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-22T22:06:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=fe7cd1e56b4cf220d1640647ca8e7d66e13de12a'/>
<id>fe7cd1e56b4cf220d1640647ca8e7d66e13de12a</id>
<content type='text'>
Replace the variable `magit--display-core-upgrade-instructions',
making it easier to use this for more than one dependency.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace the variable `magit--display-core-upgrade-instructions',
making it easier to use this for more than one dependency.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant seq version verification kludge from magit-base.el</title>
<updated>2026-04-22T22:06:19+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-22T22:06:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=73adabad207e4a33a379e6a7fa18e725ee952bda'/>
<id>73adabad207e4a33a379e6a7fa18e725ee952bda</id>
<content type='text'>
That library requires `magit-section', which performs the extended
version of this kludge.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That library requires `magit-section', which performs the extended
version of this kludge.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add kludge for mystery issue involving static-if</title>
<updated>2026-04-22T16:27:03+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-22T16:27:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=bf9f861025805d7e3c01fb1cfea32f02efebb04e'/>
<id>bf9f861025805d7e3c01fb1cfea32f02efebb04e</id>
<content type='text'>
It appears that for some users `static-if' expands to nothing if
the THEN or ELSE part is a `defalias' form (whichever is used in
their case).  I got similar reports when using `static-if' like
this in other packages, but I was never able to reproduce these
issues.

Workaround this by placing the `static-if' inside the `defalias'.
Another workaround, which appears to work, would be to wrap both
THEN and ELSE with `progn'.

Closes #5557.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It appears that for some users `static-if' expands to nothing if
the THEN or ELSE part is a `defalias' form (whichever is used in
their case).  I got similar reports when using `static-if' like
this in other packages, but I was never able to reproduce these
issues.

Workaround this by placing the `static-if' inside the `defalias'.
Another workaround, which appears to work, would be to wrap both
THEN and ELSE with `progn'.

Closes #5557.
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly implement dabbrev-capf bugfix backport</title>
<updated>2026-04-16T12:59:31+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-16T12:59:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=83d899b66f2aa4744498baa6866f3bdec2d238be'/>
<id>83d899b66f2aa4744498baa6866f3bdec2d238be</id>
<content type='text'>
`dabbrev-capf' does not call `user-error'; in actuality it merely
includes in its return value a function, which calls `user-error'.
That function is what needs to be advised to neuter that incorrect
use of `user-error'.

Also use `condition-case' instead of `cl-letf'.

Closes #5559.

Suggested-by: Stefan Monnier &lt;monnier@iro.umontreal.ca&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`dabbrev-capf' does not call `user-error'; in actuality it merely
includes in its return value a function, which calls `user-error'.
That function is what needs to be advised to neuter that incorrect
use of `user-error'.

Also use `condition-case' instead of `cl-letf'.

Closes #5559.

Suggested-by: Stefan Monnier &lt;monnier@iro.umontreal.ca&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>magit-read-module-path: Fix previous change</title>
<updated>2026-04-15T22:33:43+00:00</updated>
<author>
<name>Pedro Ribeiro Mendes Júnior</name>
<email>pedrormjunior@gmail.com</email>
</author>
<published>2026-04-15T21:48:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=f0ead86bb4992b4bb56c48ba26b8b349d269053d'/>
<id>f0ead86bb4992b4bb56c48ba26b8b349d269053d</id>
<content type='text'>
Only augment the predicate if there actually is one.

Fix problem introduced in d527f833.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only augment the predicate if there actually is one.

Fix problem introduced in d527f833.
</pre>
</div>
</content>
</entry>
<entry>
<title>changelog: Fix typos</title>
<updated>2026-04-12T16:20:13+00:00</updated>
<author>
<name>Kyle Meyer</name>
<email>kyle@kyleam.com</email>
</author>
<published>2026-04-12T16:20:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=4a1c6389e70b80152160e265738dd87e60fef496'/>
<id>4a1c6389e70b80152160e265738dd87e60fef496</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2026-04-11T20:33:58+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-11T20:33:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=5cfa4f55fc33f63bbdd1339da3cf4e5ff4f4675a'/>
<id>5cfa4f55fc33f63bbdd1339da3cf4e5ff4f4675a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not attempt to fontify and refine metadata hunks</title>
<updated>2026-04-11T14:52:58+00:00</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2026-04-11T14:52:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/magit.git/commit/?id=68cfa77319b6935773b4882f92e092024eb8b8f8'/>
<id>68cfa77319b6935773b4882f92e092024eb8b8f8</id>
<content type='text'>
The new `magit--meta-hunk-p' is a kludge, instead we should
define proper types for these "not-quite-a-hunk" sections.

Closes #5554.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new `magit--meta-hunk-p' is a kludge, instead we should
define proper types for these "not-quite-a-hunk" sections.

Closes #5554.
</pre>
</div>
</content>
</entry>
</feed>
