Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
46315744
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
46315744
编写于
2月 24, 2015
作者:
M
Michal Marek
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
kconfig: Remove dead code
Signed-off-by:
N
Michal Marek
<
mmarek@suse.cz
>
上级
70529b1a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
0 addition
and
39 deletion
+0
-39
scripts/kconfig/expr.c
scripts/kconfig/expr.c
+0
-4
scripts/kconfig/gconf.c
scripts/kconfig/gconf.c
+0
-24
scripts/kconfig/lkc.h
scripts/kconfig/lkc.h
+0
-1
scripts/kconfig/util.c
scripts/kconfig/util.c
+0
-10
未找到文件。
scripts/kconfig/expr.c
浏览文件 @
46315744
...
...
@@ -978,9 +978,6 @@ tristate expr_calc_value(struct expr *e)
int
expr_compare_type
(
enum
expr_type
t1
,
enum
expr_type
t2
)
{
#if 0
return 1;
#else
if
(
t1
==
t2
)
return
0
;
switch
(
t1
)
{
...
...
@@ -1005,7 +1002,6 @@ int expr_compare_type(enum expr_type t1, enum expr_type t2)
}
printf
(
"[%dgt%d?]"
,
t1
,
t2
);
return
0
;
#endif
}
static
inline
struct
expr
*
...
...
scripts/kconfig/gconf.c
浏览文件 @
46315744
...
...
@@ -169,14 +169,6 @@ void init_main_window(const gchar * glade_file)
style
=
gtk_widget_get_style
(
main_wnd
);
widget
=
glade_xml_get_widget
(
xml
,
"toolbar1"
);
#if 0 /* Use stock Gtk icons instead */
replace_button_icon(xml, main_wnd->window, style,
"button1", (gchar **) xpm_back);
replace_button_icon(xml, main_wnd->window, style,
"button2", (gchar **) xpm_load);
replace_button_icon(xml, main_wnd->window, style,
"button3", (gchar **) xpm_save);
#endif
replace_button_icon
(
xml
,
main_wnd
->
window
,
style
,
"button4"
,
(
gchar
**
)
xpm_single_view
);
replace_button_icon
(
xml
,
main_wnd
->
window
,
style
,
...
...
@@ -184,22 +176,6 @@ void init_main_window(const gchar * glade_file)
replace_button_icon
(
xml
,
main_wnd
->
window
,
style
,
"button6"
,
(
gchar
**
)
xpm_tree_view
);
#if 0
switch (view_mode) {
case SINGLE_VIEW:
widget = glade_xml_get_widget(xml, "button4");
g_signal_emit_by_name(widget, "clicked");
break;
case SPLIT_VIEW:
widget = glade_xml_get_widget(xml, "button5");
g_signal_emit_by_name(widget, "clicked");
break;
case FULL_VIEW:
widget = glade_xml_get_widget(xml, "button6");
g_signal_emit_by_name(widget, "clicked");
break;
}
#endif
txtbuf
=
gtk_text_view_get_buffer
(
GTK_TEXT_VIEW
(
text_w
));
tag1
=
gtk_text_buffer_create_tag
(
txtbuf
,
"mytag1"
,
"foreground"
,
"red"
,
...
...
scripts/kconfig/lkc.h
浏览文件 @
46315744
...
...
@@ -135,7 +135,6 @@ struct gstr {
int
max_width
;
};
struct
gstr
str_new
(
void
);
struct
gstr
str_assign
(
const
char
*
s
);
void
str_free
(
struct
gstr
*
gs
);
void
str_append
(
struct
gstr
*
gs
,
const
char
*
s
);
void
str_printf
(
struct
gstr
*
gs
,
const
char
*
fmt
,
...);
...
...
scripts/kconfig/util.c
浏览文件 @
46315744
...
...
@@ -88,16 +88,6 @@ struct gstr str_new(void)
return
gs
;
}
/* Allocate and assign growable string */
struct
gstr
str_assign
(
const
char
*
s
)
{
struct
gstr
gs
;
gs
.
s
=
strdup
(
s
);
gs
.
len
=
strlen
(
s
)
+
1
;
gs
.
max_width
=
0
;
return
gs
;
}
/* Free storage for growable string */
void
str_free
(
struct
gstr
*
gs
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录