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
395fcb93
Commit
395fcb93
authored
Jun 12, 2011
by
Paul Eggert
Browse files
* floatfns.c (Fexpt): Omit unnecessary cast to unsigned.
parent
327eeec8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/ChangeLog
src/ChangeLog
+1
-0
src/floatfns.c
src/floatfns.c
+1
-1
No files found.
src/ChangeLog
View file @
395fcb93
2011-06-13 Paul Eggert <eggert@cs.ucla.edu>
* floatfns.c (Fexpt):
* fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
* editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
...
...
src/floatfns.c
View file @
395fcb93
...
...
@@ -507,7 +507,7 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0,
if
(
y
&
1
)
acc
*=
x
;
x
*=
x
;
y
=
(
unsigned
)
y
>>
1
;
y
>>
=
1
;
}
}
XSETINT
(
val
,
acc
);
...
...
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