Mercurial > emacs
changeset 31307:dd074ffca70f
(openp): GCPRO local variable `filename'.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 31 Aug 2000 08:50:35 +0000 |
parents | 15e7eab87754 |
children | c6f70d6ba074 |
files | src/lread.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Thu Aug 31 07:03:28 2000 +0000 +++ b/src/lread.c Thu Aug 31 08:50:35 2000 +0000 @@ -900,11 +900,11 @@ int want_size; Lisp_Object filename; struct stat st; - struct gcpro gcpro1, gcpro2; + struct gcpro gcpro1, gcpro2, gcpro3; Lisp_Object string; - string = Qnil; - GCPRO2 (str, string); + string = filename = Qnil; + GCPRO3 (str, string, filename); if (storeptr) *storeptr = Qnil;