diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1998-04-09 06:51:54 +0800 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1998-04-09 06:51:54 +0800 |
commit | 2e5812a2c1575b9863e8f9209c123bb081eff436 (patch) | |
tree | 4555a8217418ccb0766fd56549c682d56d547a07 | |
parent | 82f62a278273719d616559b892f85afb6d41fbdb (diff) | |
download | gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar.gz gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar.bz2 gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar.lz gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar.xz gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.tar.zst gsoc2013-evolution-2e5812a2c1575b9863e8f9209c123bb081eff436.zip |
Say `#if 0', not `#ifdef 0'.
* gncal.c (update_calendar): Say `#if 0', not `#ifdef 0'.
svn path=/trunk/; revision=115
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gncal.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5ef00cfd37..26f1712396 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +1998-04-08 Raja R Harinath <harinath@cs.umn.edu> + + * gncal.c (update_calendar): Say `#if 0', not `#ifdef 0'. + 1998-04-07 Federico Mena Quintero <federico@nuclecu.unam.mx> * eventedit.c: Removed unused global variable parent_class. diff --git a/calendar/gncal.c b/calendar/gncal.c index 8d595a49dc..232aa19135 100644 --- a/calendar/gncal.c +++ b/calendar/gncal.c @@ -202,7 +202,7 @@ void update_calendar() gtk_calendar_mark_day(GTK_CALENDAR(calendar), curr_day); printf("Date changed (nothing happens much\n"); /* gtk_calendar_select_day(GTK_CALENDAR(calendar), curr_day); */ -#ifdef 0 +#if 0 /* Only update the whole calendar if the year or month has changed */ tmpday=1; month_changed = FALSE; |