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
529b0f64
Commit
529b0f64
authored
Jan 12, 2012
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
weave merge of mysql-5.1->mysql-5.5
merge of Nirbhay's AIX compilation fix for 5.1.61
parents
15229239
7c7506cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
cmd-line-utils/libedit/chartype.h
cmd-line-utils/libedit/chartype.h
+3
-3
cmd-line-utils/libedit/eln.c
cmd-line-utils/libedit/eln.c
+1
-1
cmd-line-utils/libedit/readline.c
cmd-line-utils/libedit/readline.c
+1
-1
No files found.
cmd-line-utils/libedit/chartype.h
View file @
529b0f64
...
...
@@ -45,11 +45,11 @@
* seems to actually advertise this properly, despite Unicode 3.1 having
* been around since 2001... */
/* XXXMYSQL : Added FreeBSD to bypass this check.
TODO : Verify if FreeBSD stores ISO 10646 in wchar_t. */
/* XXXMYSQL : Added FreeBSD
& AIX
to bypass this check.
TODO : Verify if FreeBSD
& AIX
stores ISO 10646 in wchar_t. */
#if !defined(__NetBSD__) && !defined(__sun) \
&& !(defined(__APPLE__) && defined(__MACH__)) \
&& !defined(__FreeBSD__)
&& !defined(__FreeBSD__)
&& !defined(_AIX)
#ifndef __STDC_ISO_10646__
/* In many places it is assumed that the first 127 code points are ASCII
* compatible, so ensure wchar_t indeed does ISO 10646 and not some other
...
...
cmd-line-utils/libedit/eln.c
View file @
529b0f64
...
...
@@ -200,7 +200,7 @@ el_set(EditLine *el, int op, ...)
ret
=
-
1
;
goto
out
;
}
// XXX: The two strdup's leak
/* XXX: The two strdups leak. */
ret
=
map_addfunc
(
el
,
Strdup
(
wargv
[
0
]),
Strdup
(
wargv
[
1
]),
func
);
ct_free_argv
(
wargv
);
...
...
cmd-line-utils/libedit/readline.c
View file @
529b0f64
...
...
@@ -1978,7 +1978,7 @@ rl_callback_read_char()
}
else
wbuf
=
NULL
;
(
*
(
void
(
*
)(
const
char
*
))
rl_linefunc
)(
wbuf
);
//el_set(e, EL_UNBUFFERED, 1);
/*el_set(e, EL_UNBUFFERED, 1);*/
}
}
...
...
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