<feed xmlns='http://www.w3.org/2005/Atom'>
<title>helpful.git, branch master</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/helpful.git/'/>
<entry>
<title>Fix typo in doc comment</title>
<updated>2025-04-08T03:34:20+00:00</updated>
<author>
<name>Richard M.</name>
<email>148184265+Richard1813@users.noreply.github.com</email>
</author>
<published>2025-04-08T02:51:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=03756fa6ad4dcca5e0920622b1ee3f70abfc4e39'/>
<id>03756fa6ad4dcca5e0920622b1ee3f70abfc4e39</id>
<content type='text'>
Change "helful" to "helpful"</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change "helful" to "helpful"</pre>
</div>
</content>
</entry>
<entry>
<title>Adapt helpful--keymaps-containing for Emacs 30+</title>
<updated>2025-02-27T15:27:57+00:00</updated>
<author>
<name>Xiyue Deng</name>
<email>manphiz@gmail.com</email>
</author>
<published>2025-02-26T23:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=6a4d5e0760ba96a24cd13052233c6edfb34d022c'/>
<id>6a4d5e0760ba96a24cd13052233c6edfb34d022c</id>
<content type='text'>
The output of helpful--keymaps-containing changed since Emacs 30.x.
This patch adapts its test for newer Emacs versions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The output of helpful--keymaps-containing changed since Emacs 30.x.
This patch adapts its test for newer Emacs versions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Check for interpreted-function-p</title>
<updated>2025-02-27T15:27:57+00:00</updated>
<author>
<name>Xiyue Deng</name>
<email>manphiz@gmail.com</email>
</author>
<published>2025-02-26T23:39:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=3794389ef685b6a59b3a487d0492c3add3c42c2f'/>
<id>3794389ef685b6a59b3a487d0492c3add3c42c2f</id>
<content type='text'>
Emacs 30.x added interpreted-function which is different from
byte-code-function, and hence helpful--signature will try to treat it
like a lambda which will fail with

,----
| (wrong-type-argument listp #[(x) (x) (t) nil "Foo"])
`----

This patch adds tests for such case using interpreted-function-p when
it's available.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Emacs 30.x added interpreted-function which is different from
byte-code-function, and hence helpful--signature will try to treat it
like a lambda which will fail with

,----
| (wrong-type-argument listp #[(x) (x) (t) nil "Foo"])
`----

This patch adds tests for such case using interpreted-function-p when
it's available.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: Improve variable setting logic in helpful.el</title>
<updated>2025-02-20T05:45:18+00:00</updated>
<author>
<name>StrawberryTea</name>
<email>look@strawberrytea.xyz</email>
</author>
<published>2025-02-20T03:28:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=5ad8a9ce57b6c076428286c3d25968b449ab6fd3'/>
<id>5ad8a9ce57b6c076428286c3d25968b449ab6fd3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>handle `package-version` safely to prevent `listp` error</title>
<updated>2025-01-31T16:45:49+00:00</updated>
<author>
<name>Sau P</name>
<email>sau@yaaama.xyz</email>
</author>
<published>2024-08-28T09:28:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=34328c639ed7aad371a3f57209acad2a5bb66401'/>
<id>34328c639ed7aad371a3f57209acad2a5bb66401</id>
<content type='text'>
When `package-version' is not what we expect (e.g a simple string), a `listp`
error is thrown and you are unable to view the variable documentation due to it.
This now handles it and provides a fallback value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When `package-version' is not what we expect (e.g a simple string), a `listp`
error is thrown and you are unable to view the variable documentation due to it.
This now handles it and provides a fallback value.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix scan-sexps error for C-defined variables</title>
<updated>2024-06-13T15:23:51+00:00</updated>
<author>
<name>StrawberryTea</name>
<email>look@strawberrytea.xyz</email>
</author>
<published>2024-01-06T10:30:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=4ba24cac9fb14d5fdc32582cd947572040e82b2c'/>
<id>4ba24cac9fb14d5fdc32582cd947572040e82b2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix wrong-type-argument error in helpful-key</title>
<updated>2024-06-07T15:18:47+00:00</updated>
<author>
<name>mmarshall540</name>
<email>62682447+mmarshall540@users.noreply.github.com</email>
</author>
<published>2023-12-26T01:11:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=a835b7ec59004a13f4a09ff127a785a92b957e8f'/>
<id>a835b7ec59004a13f4a09ff127a785a92b957e8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use setopt for "set" button if available</title>
<updated>2023-10-28T05:16:20+00:00</updated>
<author>
<name>StrawberryTea</name>
<email>look@strawberrytea.xyz</email>
</author>
<published>2023-10-19T13:06:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=a32a5b3d959a7fccf09a71d97b3d7c888ac31c69'/>
<id>a32a5b3d959a7fccf09a71d97b3d7c888ac31c69</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Test CI on Emacs 29</title>
<updated>2023-10-07T21:43:12+00:00</updated>
<author>
<name>Wilfred Hughes</name>
<email>me@wilfred.me.uk</email>
</author>
<published>2023-10-07T21:43:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=be6f7bb6d7371619f076e55bc7449002f0725478'/>
<id>be6f7bb6d7371619f076e55bc7449002f0725478</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Repair helpful--display-implementations test for emacs 29.1</title>
<updated>2023-10-07T21:42:36+00:00</updated>
<author>
<name>aagon</name>
<email>aymeric.agon@hotmail.fr</email>
</author>
<published>2023-08-10T18:03:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/helpful.git/commit/?id=79cae33c7b4edc2679c81e219d41d890b5eaac73'/>
<id>79cae33c7b4edc2679c81e219d41d890b5eaac73</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
