[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/fontset.c
From: |
Dave Love |
Subject: |
[Emacs-diffs] Changes to emacs/src/fontset.c |
Date: |
Thu, 05 Sep 2002 12:59:55 -0400 |
Index: emacs/src/fontset.c
diff -c emacs/src/fontset.c:1.70 emacs/src/fontset.c:1.71
*** emacs/src/fontset.c:1.70 Tue Jul 16 12:35:27 2002
--- emacs/src/fontset.c Tue Jul 16 15:48:21 2002
***************
*** 370,377 ****
int force;
{
Lisp_Object family, registry;
! char *p = SDATA (fontname);
! char *sep[15];
int i = 0;
while (*p && i < 15)
--- 370,377 ----
int force;
{
Lisp_Object family, registry;
! const char *p = SDATA (fontname);
! const char *sep[15];
int i = 0;
while (*p && i < 15)
***************
*** 782,788 ****
for (i = 0; i < ASIZE (Vfontset_table); i++)
{
Lisp_Object fontset;
! unsigned char *this_name;
fontset = FONTSET_FROM_ID (i);
if (NILP (fontset)
--- 782,788 ----
for (i = 0; i < ASIZE (Vfontset_table); i++)
{
Lisp_Object fontset;
! const unsigned char *this_name;
fontset = FONTSET_FROM_ID (i);
if (NILP (fontset)
***************
*** 847,853 ****
for (id = 0; id < ASIZE (Vfontset_table); id++)
{
Lisp_Object fontset;
! unsigned char *name;
fontset = FONTSET_FROM_ID (id);
if (NILP (fontset)
--- 847,853 ----
for (id = 0; id < ASIZE (Vfontset_table); id++)
{
Lisp_Object fontset;
! const unsigned char *name;
fontset = FONTSET_FROM_ID (id);
if (NILP (fontset)
- [Emacs-diffs] Changes to emacs/src/fontset.c,
Dave Love <=