qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs qe.c tty.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs qe.c tty.c
Date: Wed, 23 Apr 2008 15:30:33 +0000

CVSROOT:        /cvsroot/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        08/04/23 15:30:33

Modified files:
        .              : qe.c tty.c 

Log message:
        hide local data

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/qe.c?cvsroot=qemacs&r1=1.91&r2=1.92
http://cvs.savannah.gnu.org/viewcvs/qemacs/tty.c?cvsroot=qemacs&r1=1.49&r2=1.50

Patches:
Index: qe.c
===================================================================
RCS file: /cvsroot/qemacs/qemacs/qe.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -b -r1.91 -r1.92
--- qe.c        22 Apr 2008 09:28:33 -0000      1.91
+++ qe.c        23 Apr 2008 15:30:33 -0000      1.92
@@ -2167,7 +2167,7 @@
     return NULL;
 }
 
-const char * const qe_style_properties[] = {
+static const char * const qe_style_properties[] = {
 #define CSS_PROP_COLOR  0
     "color",            /* color */
 #define CSS_PROP_BACKGROUND_COLOR  1

Index: tty.c
===================================================================
RCS file: /cvsroot/qemacs/qemacs/tty.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- tty.c       20 Apr 2008 11:55:49 -0000      1.49
+++ tty.c       23 Apr 2008 15:30:33 -0000      1.50
@@ -511,6 +511,7 @@
     }
 }
 
+#if 0
 unsigned int const tty_full_colors[8] = {
     QERGB(0x00, 0x00, 0x00),
     QERGB(0xff, 0x00, 0x00),
@@ -521,8 +522,9 @@
     QERGB(0x00, 0xff, 0xff),
     QERGB(0xff, 0xff, 0xff),
 };
+#endif
 
-unsigned int const tty_putty_colors[256] = {
+static unsigned int const tty_putty_colors[256] = {
     QERGB(0x00, 0x00, 0x00),
     QERGB(0xbb, 0x00, 0x00),
     QERGB(0x00, 0xbb, 0x00),




reply via email to

[Prev in Thread] Current Thread [Next in Thread]