aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-04-01 02:47:05 +0000
committerGlenn Morris2008-04-01 02:47:05 +0000
commitbf276a50b36e858057a72633f194b0024d3f186b (patch)
tree9770d9a1aded801e9aa9ceb3b8ed3ee2789c002b
parentaea566be0fa9c10e9edc162bf74ffc78a308fc33 (diff)
downloademacs-bf276a50b36e858057a72633f194b0024d3f186b.tar.gz
emacs-bf276a50b36e858057a72633f194b0024d3f186b.zip
Comments.
-rw-r--r--lisp/calendar/diary-lib.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el
index 1d8589f35a5..c2d4e0c4f03 100644
--- a/lisp/calendar/diary-lib.el
+++ b/lisp/calendar/diary-lib.el
@@ -26,8 +26,7 @@
26 26
27;;; Commentary: 27;;; Commentary:
28 28
29;; This collection of functions implements the diary features as described 29;; See calendar.el.
30;; in calendar.el.
31 30
32;;; Code: 31;;; Code:
33 32
@@ -944,6 +943,7 @@ To use this function, add it to `diary-display-hook'."
944 (faceinfo marks) 943 (faceinfo marks)
945 temp-face) 944 temp-face)
946 (when marks 945 (when marks
946 ;; FIXME duplicate code with calendar.el.
947 (setq temp-face (make-symbol 947 (setq temp-face (make-symbol
948 (apply 948 (apply
949 'concat "temp-face-" 949 'concat "temp-face-"
@@ -956,6 +956,7 @@ To use this function, add it to `diary-display-hook'."
956 ;; Remove :face info from the marks, 956 ;; Remove :face info from the marks,
957 ;; copy the face info into temp-face 957 ;; copy the face info into temp-face
958 (while (setq faceinfo (memq :face faceinfo)) 958 (while (setq faceinfo (memq :face faceinfo))
959 ;; FIXME not read.
959 (copy-face (read (nth 1 faceinfo)) temp-face) 960 (copy-face (read (nth 1 faceinfo)) temp-face)
960 (setcar faceinfo nil) 961 (setcar faceinfo nil)
961 (setcar (cdr faceinfo) nil)) 962 (setcar (cdr faceinfo) nil))