blob: 2fff565e5853902ff489419a661499ca66e8b043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package state
func RegisterRevertPath(p string) {
cleanupCandidate = append(cleanupCandidate, p)
}
func XcbActionComplete() {
if xcbActionComplete {
Fatal("xcb inserted twice")
}
xcbActionComplete = true
}
|