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
5d625851
Commit
5d625851
authored
Dec 19, 2018
by
Nicholas Drozd
Committed by
Paul Eggert
Dec 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/editfns.c (Finsert_char): Skip unnecessary fixnum check.
parent
dc3f70dc
Pipeline
#330
failed with stage
in 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/editfns.c
src/editfns.c
+2
-1
No files found.
src/editfns.c
View file @
5d625851
...
@@ -1471,7 +1471,8 @@ called interactively, INHERIT is t. */)
...
@@ -1471,7 +1471,8 @@ called interactively, INHERIT is t. */)
CHECK_CHARACTER
(
character
);
CHECK_CHARACTER
(
character
);
if
(
NILP
(
count
))
if
(
NILP
(
count
))
XSETFASTINT
(
count
,
1
);
XSETFASTINT
(
count
,
1
);
CHECK_FIXNUM
(
count
);
else
CHECK_FIXNUM
(
count
);
c
=
XFIXNAT
(
character
);
c
=
XFIXNAT
(
character
);
if
(
!
NILP
(
BVAR
(
current_buffer
,
enable_multibyte_characters
)))
if
(
!
NILP
(
BVAR
(
current_buffer
,
enable_multibyte_characters
)))
...
...
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