diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-03 12:36:09 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-03 12:36:09 -0700 |
commit | d42f4f0fb374051f2f80228821e5c0b824451807 (patch) | |
tree | 2d9104d1e1a9ef6dd04b708dfb58e269882ea341 /src/doc.c | |
parent | 79a7bafe62de094b745a47c2b90b17ada5fc5a21 (diff) | |
download | emacs-d42f4f0fb374051f2f80228821e5c0b824451807.tar.gz emacs-d42f4f0fb374051f2f80228821e5c0b824451807.tar.bz2 emacs-d42f4f0fb374051f2f80228821e5c0b824451807.zip |
Revert changes prompted only by gcc -Wjump-misses-init.
Diffstat (limited to 'src/doc.c')
-rw-r--r-- | src/doc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c index c21935577f2..02a5b4b8143 100644 --- a/src/doc.c +++ b/src/doc.c @@ -848,10 +848,9 @@ Otherwise, return a new string, without any text properties. */) struct buffer *oldbuf; ptrdiff_t start_idx; /* This is for computing the SHADOWS arg for describe_map_tree. */ - Lisp_Object active_maps; + Lisp_Object active_maps = Fcurrent_active_maps (Qnil, Qnil); Lisp_Object earlier_maps; - active_maps = Fcurrent_active_maps (Qnil, Qnil); changed = 1; strp += 2; /* skip \{ or \< */ start = strp; |