Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
64c60c2f
Commit
64c60c2f
authored
Jun 09, 2010
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/editfns.c (Fbyte_to_string): Pacify compiler.
parent
113ddd75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
src/ChangeLog
src/ChangeLog
+2
-0
src/editfns.c
src/editfns.c
+6
-4
No files found.
src/ChangeLog
View file @
64c60c2f
2010-06-10 Glenn Morris <rgm@gnu.org>
* editfns.c (Fbyte_to_string): Pacify compiler.
* m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
...
...
src/editfns.c
View file @
64c60c2f
/* Lisp functions pertaining to editing.
Copyright (C) 1985, 1986, 1987, 1989, 1993, 1994, 1995, 1996,
1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
Copyright (C) 1985, 1986, 1987, 1989, 1993, 1994, 1995, 1996, 1997,
1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
2009, 2010 Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -225,8 +226,9 @@ DEFUN ("byte-to-string", Fbyte_to_string, Sbyte_to_string, 1, 1, 0,
(
byte
)
Lisp_Object
byte
;
{
unsigned
char
b
;
CHECK_NUMBER
(
byte
);
unsigned
char
b
=
XINT
(
byte
);
b
=
XINT
(
byte
);
return
make_string_from_bytes
(
&
b
,
1
,
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