diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-09-30 17:03:27 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-09-30 17:03:27 +0000 |
commit | 0f3360b0ecc5a43ded9a0d754068413f5528376e (patch) | |
tree | 7e523506e93ea0fbf0bba0183f40d31b28c65215 /lwlib/lwlib.c | |
parent | b1904cd946ddef2e94e93946c2bc10bcd3b0cb71 (diff) | |
download | emacs-0f3360b0ecc5a43ded9a0d754068413f5528376e.tar.gz |
(lw_separator_p): Init separator_p (bug with "-- some text").
Diffstat (limited to 'lwlib/lwlib.c')
-rw-r--r-- | lwlib/lwlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index eb0804a480e..81ab8d5d2c7 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -1485,7 +1485,7 @@ lw_separator_p (label, type, motif_p) enum menu_separator *type; int motif_p; { - int separator_p; + int separator_p = 0; if (strlen (label) >= 3 && bcmp (label, "--:", 3) == 0) |