Skip to content

Commit 8e37331

Browse files
committed
Removed the dead nibbles code
What do I mean with dead? Well, the `nibbles` command in Cluido hasn't been around for a while. And, the code had #ifdef:ed parts, parts that wouldn't compile if you would remove the #ifdef. Simply put, this has become old cruft that is just now laying around gathering dust. It gives the _false_ impressions that it does something useful, which it doesnt. Hence, we must kill it with 🔥. Let's not be sentimental with old code please. What I mean is: if someone wants to fix it, fine. I won't object. If so, we should: - make it a proper "program" and put it under the `programs` folder, just like cluido and other programs. - fix it so that it compiles. We can even use this code as the basis for that. It's not like we are making it impossible or anything to fix it; we're just being very clear with the fact that _this is not working_ and should hence not be included in the `master` branch.
1 parent dc9a835 commit 8e37331

File tree

7 files changed

+8
-336
lines changed

7 files changed

+8
-336
lines changed

programs/cluido/Rakefile

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ OBJECTS = %w(
33
cluido.o
44
command.o
55
init.o
6-
nibbles.o
76
).freeze
87

98
LIBRARIES = %w(

programs/cluido/cluido.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
// Henrik Hallin <[email protected]>
66
//
77
// © Copyright 1999-2000 chaos development
8-
// © Copyright 2015 chaos development
8+
// © Copyright 2013 chaos development
9+
// © Copyright 2015-2016 chaos development
910

1011
#include "cluido.h"
1112
#include "list.h"

programs/cluido/cluido.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// Author: Per Lundberg <[email protected]>
33
//
44
// © Copyright 1999-2000 chaos development
5-
// © Copyright 2015 chaos development
5+
// © Copyright 2013 chaos development
6+
// © Copyright 2015-2016 chaos development
67

78
#pragma once
89

programs/cluido/init.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Henrik Hallin <[email protected]>
44
//
55
// © Copyright 1999-2000 chaos development
6-
// © Copyright 2015 chaos development
6+
// © Copyright 2013 chaos development
7+
// © Copyright 2015-2016 chaos development
78

89
#include "cluido.h"
910

programs/cluido/list.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Anders Öhrt <[email protected]>
44
//
55
// © Copyright 1999-2000 chaos development
6-
// © Copyright 2015 chaos development
6+
// © Copyright 2013 chaos development
7+
// © Copyright 2015-2016 chaos development
78

89
#pragma once
910

programs/cluido/nibbles.c

-322
This file was deleted.

programs/cluido/nibbles.h

-9
This file was deleted.

0 commit comments

Comments
 (0)