summaryrefslogtreecommitdiff
path: root/src/dged/lang.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-02-23 15:56:23 +0100
committerAlbert Cervin <albert@acervin.com>2024-02-23 15:56:23 +0100
commit292932b8b21ec3ac208f026a000d71f1e63c7b55 (patch)
tree4fe642e0a08682313943bef6e1592c46a40f5a23 /src/dged/lang.h
parent2e286cc9b777111add7230ba33ff0d3f946181d5 (diff)
downloaddged-292932b8b21ec3ac208f026a000d71f1e63c7b55.tar.gz
dged-292932b8b21ec3ac208f026a000d71f1e63c7b55.tar.xz
dged-292932b8b21ec3ac208f026a000d71f1e63c7b55.zip
Make language less specific
Now it just contains id and name as static properties.
Diffstat (limited to 'src/dged/lang.h')
-rw-r--r--src/dged/lang.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dged/lang.h b/src/dged/lang.h
index 8f8a604..dab81e6 100644
--- a/src/dged/lang.h
+++ b/src/dged/lang.h
@@ -16,12 +16,6 @@ struct language {
/** Descriptive name of the programming language */
const char *name;
-
- /** Tab width for indentation */
- uint32_t tab_width;
-
- /** Path to the language server */
- const char *lang_srv;
};
/**