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
327eeec8
Commit
327eeec8
authored
Jun 12, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
parent
abbd3d23
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/fileio.c
src/fileio.c
+1
-1
No files found.
src/ChangeLog
View file @
327eeec8
2011-06-13 Paul Eggert <eggert@cs.ucla.edu>
* fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
* editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
for characters.
...
...
src/fileio.c
View file @
327eeec8
...
...
@@ -643,7 +643,7 @@ make_temp_name (Lisp_Object prefix, int base64_p)
if
(
!
make_temp_name_count_initialized_p
)
{
make_temp_name_count
=
(
unsigned
)
time
(
NULL
);
make_temp_name_count
=
time
(
NULL
);
make_temp_name_count_initialized_p
=
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