summary refs log tree commit diff stats
path: root/tests/ccgbugs/tcvarargs.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #1593Araq2014-11-121-0/+34
?id=98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942'>98da4c9 ^
f37508a ^





2a09617 ^
f37508a ^


2a09617 ^
f37508a ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


               
                                           





                                          
                                     


                                                        
                                     
 
package compose

import (
	"git.sr.ht/~sircmpwn/aerc/commands"
)

var (
	ComposeCommands *commands.Commands
)

func register(cmd commands.Command) {
	if ComposeCommands == nil {
		ComposeCommands = commands.NewCommands()
	}
	ComposeCommands.Register(cmd)
}