~brown121407/ml

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2 2

[PATCH guile-imanifest] Use `unless` instead of `if`

Details
Message ID
<c71672eaaa1d9804eeee81c2d2332db72b3d155d.1614603700.git.public@yoctocell.xyz>
DKIM signature
missing
Download raw message
Patch: +1 -1
* imanifest.scm (make-completer): Use `unless` instead of `if` when
  there is no alternative.
---
 imanifest.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/imanifest.scm b/imanifest.scm
index 9fbdc7a..69643c8 100644
--- a/imanifest.scm
+++ b/imanifest.scm
@@ -89,7 +89,7 @@

(define (make-completer groups)
  (lambda (text state)
    (if (not state)
    (unless state
	(set! completions
	  (find-completions text (map symbol->string groups) '())))
    (if (null? completions)

base-commit: 4ddb4ef13d28c7aa55eca4e44d768246f0a0866d
-- 
2.30.0
Details
Message ID
<875z2bdn2j.fsf@posteo.ro>
In-Reply-To
<c71672eaaa1d9804eeee81c2d2332db72b3d155d.1614603700.git.public@yoctocell.xyz> (view parent)
DKIM signature
missing
Download raw message
Thanks for the patch! I appreciate the usage of the same style of commit
messages used in Guix.

Applied in ccd5a2111b008d778106f5595a3a585954d95d0d.

-- 
Alexandru-Sergiu Marton
Details
Message ID
<8735xfyoft.fsf@yoctocell.xyz>
In-Reply-To
<875z2bdn2j.fsf@posteo.ro> (view parent)
DKIM signature
missing
Download raw message
On Mon, Mar 01 2021, Alexandru-Sergiu Marton wrote:

> Thanks for the patch! I appreciate the usage of the same style of commit
> messages used in Guix.

You are welcome!  I actually really like the ChangeLog formatting that
Guix and Emacs uses. :)

> Applied in ccd5a2111b008d778106f5595a3a585954d95d0d.

Thanks for applying!
Reply to thread Export thread (mbox)