Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
125e22e7
Commit
125e22e7
authored
Dec 01, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
a01c9557
dad13229
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
12 deletions
+13
-12
cmd-line-utils/libedit/map.c
cmd-line-utils/libedit/map.c
+1
-1
cmd-line-utils/libedit/terminal.c
cmd-line-utils/libedit/terminal.c
+8
-8
cmd-line-utils/libedit/tty.c
cmd-line-utils/libedit/tty.c
+1
-1
configure.in
configure.in
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_misc1.test
mysql-test/suite/innodb_plugin/t/innodb_misc1.test
+2
-1
No files found.
cmd-line-utils/libedit/map.c
View file @
125e22e7
...
@@ -1300,7 +1300,7 @@ map_bind(EditLine *el, int argc, const Char **argv)
...
@@ -1300,7 +1300,7 @@ map_bind(EditLine *el, int argc, const Char **argv)
default:
default:
(
void
)
fprintf
(
el
->
el_errfile
,
(
void
)
fprintf
(
el
->
el_errfile
,
""
FSTR
": Invalid switch `%c'.
\n
"
,
""
FSTR
": Invalid switch `%c'.
\n
"
,
argv
[
0
],
p
[
1
]);
argv
[
0
],
(
int
)
p
[
1
]);
}
}
else
else
break
;
break
;
...
...
cmd-line-utils/libedit/terminal.c
View file @
125e22e7
...
@@ -908,17 +908,17 @@ terminal_set(EditLine *el, const char *term)
...
@@ -908,17 +908,17 @@ terminal_set(EditLine *el, const char *term)
terminal_alloc
(
el
,
t
,
NULL
);
terminal_alloc
(
el
,
t
,
NULL
);
}
else
{
}
else
{
/* auto/magic margins */
/* auto/magic margins */
Val
(
T_am
)
=
tgetflag
(
"am"
);
Val
(
T_am
)
=
tgetflag
((
char
*
)
"am"
);
Val
(
T_xn
)
=
tgetflag
(
"xn"
);
Val
(
T_xn
)
=
tgetflag
(
(
char
*
)
"xn"
);
/* Can we tab */
/* Can we tab */
Val
(
T_pt
)
=
tgetflag
(
"pt"
);
Val
(
T_pt
)
=
tgetflag
(
(
char
*
)
"pt"
);
Val
(
T_xt
)
=
tgetflag
(
"xt"
);
Val
(
T_xt
)
=
tgetflag
(
(
char
*
)
"xt"
);
/* do we have a meta? */
/* do we have a meta? */
Val
(
T_km
)
=
tgetflag
(
"km"
);
Val
(
T_km
)
=
tgetflag
(
(
char
*
)
"km"
);
Val
(
T_MT
)
=
tgetflag
(
"MT"
);
Val
(
T_MT
)
=
tgetflag
(
(
char
*
)
"MT"
);
/* Get the size */
/* Get the size */
Val
(
T_co
)
=
tgetnum
(
"co"
);
Val
(
T_co
)
=
tgetnum
(
(
char
*
)
"co"
);
Val
(
T_li
)
=
tgetnum
(
"li"
);
Val
(
T_li
)
=
tgetnum
(
(
char
*
)
"li"
);
for
(
t
=
tstr
;
t
->
name
!=
NULL
;
t
++
)
{
for
(
t
=
tstr
;
t
->
name
!=
NULL
;
t
++
)
{
/* XXX: some systems' tgetstr needs non const */
/* XXX: some systems' tgetstr needs non const */
terminal_alloc
(
el
,
t
,
tgetstr
(
strchr
(
t
->
name
,
*
t
->
name
),
terminal_alloc
(
el
,
t
,
tgetstr
(
strchr
(
t
->
name
,
*
t
->
name
),
...
...
cmd-line-utils/libedit/tty.c
View file @
125e22e7
...
@@ -1215,7 +1215,7 @@ tty_stty(EditLine *el, int argc __attribute__((__unused__)), const Char **argv)
...
@@ -1215,7 +1215,7 @@ tty_stty(EditLine *el, int argc __attribute__((__unused__)), const Char **argv)
default:
default:
(
void
)
fprintf
(
el
->
el_errfile
,
(
void
)
fprintf
(
el
->
el_errfile
,
"%s: Unknown switch `%c'.
\n
"
,
"%s: Unknown switch `%c'.
\n
"
,
name
,
argv
[
0
][
1
]);
name
,
(
int
)
argv
[
0
][
1
]);
return
-
1
;
return
-
1
;
}
}
...
...
configure.in
View file @
125e22e7
...
@@ -2702,7 +2702,7 @@ case $SYSTEM_TYPE in
...
@@ -2702,7 +2702,7 @@ case $SYSTEM_TYPE in
echo
"Skipping readline"
echo
"Skipping readline"
;;
;;
*
)
*
)
if
[
test
"
$with_libedit
"
=
"yes"
]
||
[
test
"
$with_libedit
"
=
"undefined"
]
&&
[
test
"
$with_readline
"
=
"undefined"
]
if
[
test
"
$with_libedit
"
=
"yes"
]
||
(
[
test
"
$with_libedit
"
=
"undefined"
]
&&
[
test
"
$with_readline
"
=
"undefined"
]
)
then
then
readline_topdir
=
"cmd-line-utils"
readline_topdir
=
"cmd-line-utils"
readline_basedir
=
"libedit"
readline_basedir
=
"libedit"
...
...
mysql-test/suite/innodb_plugin/t/innodb_misc1.test
View file @
125e22e7
--
source
include
/
have_innodb_plugin
.
inc
--
source
include
/
have_innodb_plugin
.
inc
--
source
include
/
have_utf8
.
inc
let
collation
=
utf8_unicode_ci
;
--
source
include
/
have_collation
.
inc
let
$MYSQLD_DATADIR
=
`select @@datadir`
;
let
$MYSQLD_DATADIR
=
`select @@datadir`
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment