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
193b12ca
Commit
193b12ca
authored
Jan 02, 1998
by
Richard M. Stallman
Browse files
(Fmake_marker): Initialize marker's bytepos and charpos.
parent
f3e1f752
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/alloc.c
src/alloc.c
+2
-1
No files found.
src/alloc.c
View file @
193b12ca
...
@@ -1045,7 +1045,8 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
...
@@ -1045,7 +1045,8 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
XMISCTYPE
(
val
)
=
Lisp_Misc_Marker
;
XMISCTYPE
(
val
)
=
Lisp_Misc_Marker
;
p
=
XMARKER
(
val
);
p
=
XMARKER
(
val
);
p
->
buffer
=
0
;
p
->
buffer
=
0
;
p
->
bufpos
=
0
;
p
->
bytepos
=
0
;
p
->
charpos
=
0
;
p
->
chain
=
Qnil
;
p
->
chain
=
Qnil
;
p
->
insertion_type
=
0
;
p
->
insertion_type
=
0
;
return
val
;
return
val
;
...
...
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