CVS update by jmiller packages/xemacs-packages/calendar, diary-lib.el ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Sat Mar 29 15:20:33 EDT 2008


  User: jmiller 
  Date: 08/03/29 20:20:33

  Modified:    packages/xemacs-packages/calendar ChangeLog calendar.el
                        diary-lib.el
Log:
fix bold weight breakage in face definitions

Revision  Changes    Path
1.56      +9 -0      XEmacs/packages/xemacs-packages/calendar/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/calendar/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -p -r1.55 -r1.56
--- ChangeLog	2007/09/21 08:03:39	1.55
+++ ChangeLog	2008/03/29 19:20:30	1.56
@@ -1,3 +1,12 @@
+2008-03-27  Jeff Miller  <jmiller at cablespeed.com>
+
+	* calendar.el (diary):
+	* calendar.el (calendar-mode-hook):
+	* calendar.el (european-calendar-style):
+	* calendar.el (diary-display-hook):
+	* diary-lib.el (diary-anniversary):
+	* diary-lib.el (diary-time):
+
 2007-09-21  Norbert Koch  <viteno at xemacs.org>
 
 	* Makefile (VERSION): XEmacs package 1.34 released.



1.17      +7 -7      XEmacs/packages/xemacs-packages/calendar/calendar.el

Index: calendar.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/calendar/calendar.el,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -p -r1.16 -r1.17
--- calendar.el	2007/07/10 22:52:24	1.16
+++ calendar.el	2008/03/29 19:20:31	1.17
@@ -191,7 +191,7 @@ If nil, make an icon of the frame.  If n
     (((class color) (background dark))
      (:foreground "yellow"))
     (t
-     (:weight bold t)))
+     (:bold t)))
   "Face for highlighting diary entries."
   :group 'diary)
 ;; backward-compatibility alias
@@ -305,8 +305,8 @@ calendar."
 
 (defcustom calendar-mode-hook nil
   "Hook run when entering `calendar-mode'."
-:type 'hook
-:group 'calendar-hooks)
+:type 'hook
+:group 'calendar-hooks)
 
 ;;;###autoload
 (defcustom calendar-load-hook nil
@@ -585,8 +585,8 @@ calendar package is already loaded).  Ra
   :type 'boolean
   ;; Without :initialize (require 'calendar) throws an error because
   ;; american-calendar is undefined at this point.
-:initialize 'custom-initialize-default
-:set (lambda (symbol value)
+:initialize 'custom-initialize-default
+:set (lambda (symbol value)
          (if value
              (european-calendar)
            (american-calendar)))
@@ -804,8 +804,8 @@ if that day is a holiday; if you want su
 diary buffer, set the variable `diary-list-include-blanks' to t."
   :type 'hook
   :options '(fancy-diary-display)
-:initialize 'custom-initialize-default
-:set 'diary-set-maybe-redraw
+:initialize 'custom-initialize-default
+:set 'diary-set-maybe-redraw
   :group 'diary)
 
 ;;;###autoload



1.11      +2 -2      XEmacs/packages/xemacs-packages/calendar/diary-lib.el

Index: diary-lib.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/calendar/diary-lib.el,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- diary-lib.el	2007/07/10 22:52:24	1.10
+++ diary-lib.el	2008/03/29 19:20:31	1.11
@@ -1960,7 +1960,7 @@ Prefix arg will make the entry nonmarkin
     (((class color) (background dark))
      (:foreground "cyan"))
     (t
-     (:weight bold t)))
+     (:bold t)))
   "Face used for anniversaries in the diary."
   :group 'diary)
 
@@ -1971,7 +1971,7 @@ Prefix arg will make the entry nonmarkin
     (((class color) (background dark))
      (:foreground "cyan3"))
     (t
-     (:weight bold t)))
+     (:bold t)))
   "Face used for times of day in the diary."
   :group 'diary)
 





More information about the XEmacs-CVS mailing list