]> git.eshelyaron.com Git - emacs.git/commitdiff
(null_row): New gloval static variable.
authorKenichi Handa <handa@m17n.org>
Thu, 16 Nov 2000 00:53:41 +0000 (00:53 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 16 Nov 2000 00:53:41 +0000 (00:53 +0000)
(clear_glyph_row): Delete local static variable null_row.

src/ChangeLog
src/dispnew.c

index b88775bd719eb955c0716c9623b16f4955e84a67..836765a10645d599c33912117b64edf97f3f5e5d 100644 (file)
@@ -1,6 +1,6 @@
 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
 
-       * dispnew.c (null_row): New gloval static variable.
+       * dispnew.c (null_row): New global static variable.
        (clear_glyph_row): Delete local static variable null_row.
 
 2000-11-15  Jason Rumney  <jasonr@gnu.org>
index 55faea7b7e388341544b037bfa0a99a5a51f358d..eff7bb2bf15dba23982baef67885faecfefdd319 100644 (file)
@@ -976,12 +976,13 @@ clear_window_matrices (w, desired_p)
    changes in the glyph_row structure, i.e. addition or removal of
    structure members.  */
 
+static struct glyph_row null_row;
+
 void
 clear_glyph_row (row)
      struct glyph_row *row;
 {
   struct glyph *p[1 + LAST_AREA];
-  static struct glyph_row null_row;
 
   /* Save pointers.  */
   p[LEFT_MARGIN_AREA] = row->glyphs[LEFT_MARGIN_AREA];