Kaydet (Commit) 066fb07e authored tarafından Nick Treleaven's avatar Nick Treleaven

Remove now unnecessary "styling_within_preprocessor" C style key.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4467 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 4318e0dc
......@@ -3,6 +3,9 @@
* src/highlighting.c, data/filetypes.cpp, data/filetypes.vala,
data/filetypes.glsl, data/filetypes.cs, data/filetypes.c:
Move C-like filetype properties into configuration files.
* src/highlighting.c, data/filetypes.cpp, data/filetypes.cs,
data/filetypes.c:
Remove now unnecessary "styling_within_preprocessor" C style key.
2009-12-02 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -23,9 +23,6 @@ commentlinedoc=commentdoc,bold
commentdockeyword=commentdoc,bold,italic
commentdockeyworderror=commentdoc
globalclass=type
# whether arguments of preprocessor commands should be styled (only first argument is used)
# 1 to enable, 0 to disable
styling_within_preprocessor=1;0;false;false
[keywords]
# all items must be in one line
......
......@@ -23,9 +23,6 @@ commentlinedoc=commentdoc,bold
commentdockeyword=commentdoc,bold,italic
commentdockeyworderror=commentdoc
globalclass=type
# whether arguments of preprocessor commands should be styled (only first argument is used)
# 1 to enable, 0 to disable
styling_within_preprocessor=1;0;false;false
[keywords]
# all items must be in one line
......
......@@ -23,9 +23,6 @@ commentlinedoc=commentdoc,bold
commentdockeyword=commentdoc,bold,italic
commentdockeyworderror=commentdoc
globalclass=type
# whether arguments of preprocessor commands should be styled (only first argument is used)
# 1 to enable, 0 to disable
styling_within_preprocessor=1;0;false;false
[keywords]
# all items must be in one line
......
......@@ -884,10 +884,8 @@ styleset_c_like_init(GKeyFile *config, GKeyFile *config_home, gint filetype_idx)
"globalclass"
};
new_styleset(filetype_idx, 21);
new_styleset(filetype_idx, G_N_ELEMENTS(entries));
load_style_entries(config, config_home, filetype_idx, entries, G_N_ELEMENTS(entries));
get_keyfile_int(config, config_home, "styling", "styling_within_preprocessor",
1, 0, &style_sets[filetype_idx].styling[20]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment