diff options
| author | Richard M. Stallman | 1995-09-08 16:59:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-09-08 16:59:25 +0000 |
| commit | 6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb (patch) | |
| tree | e98cae39721bfb33493099a2be485fb51745c717 | |
| parent | d473987a4c661029c8fa8a8d9d68e50bee2a7860 (diff) | |
| download | emacs-6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb.tar.gz emacs-6ef5c4bdda8e696ebfeb78ceba18a20005ab67cb.zip | |
(Fmake_marker): Initialize insertion_type to 0.
| -rw-r--r-- | src/alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index f372847ba55..791d5168a7a 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -953,6 +953,7 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, | |||
| 953 | p->buffer = 0; | 953 | p->buffer = 0; |
| 954 | p->bufpos = 0; | 954 | p->bufpos = 0; |
| 955 | p->chain = Qnil; | 955 | p->chain = Qnil; |
| 956 | p->insertion_type = 0; | ||
| 956 | return val; | 957 | return val; |
| 957 | } | 958 | } |
| 958 | 959 | ||