aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-07-01 16:00:05 +0000
committerDave Love2002-07-01 16:00:05 +0000
commit646e4dffc26f4e7952a577492fc6c622e158d1e6 (patch)
treeeb7267bace0ad23db0219a9e3934c29ec8adfb28
parent55a8b3edeacbbc21afcb2aa9aadfe27c3c6b92e5 (diff)
downloademacs-646e4dffc26f4e7952a577492fc6c622e158d1e6.tar.gz
emacs-646e4dffc26f4e7952a577492fc6c622e158d1e6.zip
term.c (costs_set): Declare static, non-initialized for pcc.
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 5833a50b962..96fdc5c4798 100644
--- a/src/term.c
+++ b/src/term.c
@@ -374,7 +374,7 @@ int max_frame_width;
374 374
375int max_frame_height; 375int max_frame_height;
376 376
377int costs_set = 0; /* Nonzero if costs have been calculated. */ 377static int costs_set; /* Nonzero if costs have been calculated. */
378 378
379int insert_mode; /* Nonzero when in insert mode. */ 379int insert_mode; /* Nonzero when in insert mode. */
380int standout_mode; /* Nonzero when in standout mode. */ 380int standout_mode; /* Nonzero when in standout mode. */