Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
30143e3d
Commit
30143e3d
authored
Dec 23, 2013
by
Jan Djärv
Browse files
* src/conf_post.h: Use unsigned it for bool_bf if GNUSTEP.
Fixes: debbugs:16210
parent
44fdad1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/conf_post.h
src/conf_post.h
+3
-2
No files found.
src/ChangeLog
View file @
30143e3d
2013-12-23 Jan Djärv <jan.h.d@swipnet.se>
* conf_post.h: Use unsigned it for bool_bf if GNUSTEP (Bug#16210).
2013-12-23 Glenn Morris <rgm@gnu.org>
* lread.c (Fload): Mention load-prefer-newer in doc.
...
...
src/conf_post.h
View file @
30143e3d
...
...
@@ -34,8 +34,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <stdbool.h>
/* The pre-C99 <stdbool.h> emulation doesn't work for bool bitfields. */
#if __STDC_VERSION__ < 199901
/* The pre-C99 <stdbool.h> emulation doesn't work for bool bitfields.
Nor does compiling Objective-C with standard GCC. */
#if __STDC_VERSION__ < 199901 || NS_IMPL_GNUSTEP
typedef
unsigned
int
bool_bf
;
#else
typedef
bool
bool_bf
;
...
...
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