~ubuntu-branches/ubuntu/trusty/me-tv/trusty

« back to all changes in this revision

Viewing changes to src/buffer.cc

  • Committer: Bazaar Package Importer
  • Author(s): Teis Dreijer
  • Date: 2010-02-14 11:29:00 UTC
  • mfrom: (1.1.11 upstream) (3.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100214112900-krutrmpz248vz1ji
Tags: 1.1.6-2
* Updated debian/control
  - Removed libgnomem-2.6-dev and libgnomeuimm-2.6-dev
    from Build-Depends (Closes: #568782)
  - Added libgconfmm-2.6-dev to Build-Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        for (guint i = 0; i < length; i++)
54
54
        {
55
55
                guchar ch = buffer[i];
56
 
                if (g_ascii_isalnum(ch))
 
56
                if (g_ascii_isalnum(ch) || g_ascii_ispunct(ch))
57
57
                {
58
58
                        g_debug ("buffer[%d] = 0x%02X; // (%c)", i, ch, ch);
59
59
                }