changeset 852:a3b8956db7bc

hbuf: minor fixes and typos
author Mikael Berthe <mikael@lilotux.net>
date Tue, 09 May 2006 23:48:41 +0200
parents da03534e46c7
children bdd526ec62bc
files mcabber/src/hbuf.c
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/src/hbuf.c	Mon May 08 23:47:26 2006 +0200
+++ b/mcabber/src/hbuf.c	Tue May 09 23:48:41 2006 +0200
@@ -252,6 +252,7 @@
   hbuf_block *blk;
   guchar last_persist_prefixflags = 0;
   GList *last_persist;  // last persistent flags
+  hbb_line **array, **array_elt;
 
   // To be able to correctly highlight multi-line messages,
   // we need to look at the last non-null prefix, which should be the first
@@ -266,10 +267,10 @@
     last_persist = g_list_previous(last_persist);
   }
 
-  hbb_line **array = g_new0(hbb_line*, n);
-  hbb_line **array_elt = array;
+  array = g_new0(hbb_line*, n);
+  array_elt = array;
 
-  for (i=0 ; i < n ; i++) {
+  for (i = 0 ; i < n ; i++) {
     if (hbuf) {
       int maxlen;
       blk = (hbuf_block*)(hbuf->data);
@@ -282,7 +283,7 @@
       if ((blk->flags & HBB_FLAG_PERSISTENT) && blk->prefix.flags) {
         last_persist_prefixflags = blk->prefix.flags;
       } else {
-        // Propagate hilighting flag
+        // Propagate highlighting flag
         (*array_elt)->flags |= last_persist_prefixflags & HBB_PREFIX_HLIGHT;
       }