diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-08 09:28:17 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-08 09:28:17 -0800 |
commit | 6be7d3dab6a206d26d1845e3791eaf26be1be72f (patch) | |
tree | c25e0d9c505404119b558d550788785108e78fbe /src/cm.c | |
parent | 630d6892438c5fff742a0dddb0692d2a991418e2 (diff) | |
download | emacs-6be7d3dab6a206d26d1845e3791eaf26be1be72f.tar.gz |
* cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
deduce are never used uninitialized.
Diffstat (limited to 'src/cm.c')
-rw-r--r-- | src/cm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -330,7 +330,7 @@ cmgoto (struct tty_display_info *tty, int row, int col) llcost, relcost, directcost; - int use; + int use IF_LINT (= 0); char *p, *dcm; @@ -460,4 +460,3 @@ Wcm_init (struct tty_display_info *tty) return - 2; return 0; } - |