diff options
Diffstat (limited to 'lisp/calendar')
-rw-r--r-- | lisp/calendar/cal-dst.el | 2 | ||||
-rw-r--r-- | lisp/calendar/calendar.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el index e8d6077b165..a0d0def61a5 100644 --- a/lisp/calendar/cal-dst.el +++ b/lisp/calendar/cal-dst.el @@ -82,7 +82,7 @@ list and for correcting times of day in the solar and lunar calculations. For example, if daylight saving time ends on the last Sunday in October: - '(calendar-nth-named-day -1 0 10 year) + (calendar-nth-named-day -1 0 10 year) If the locale never uses daylight saving time, set this to nil." :type 'sexp diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index c35bd38bb64..07977afc397 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -550,12 +550,12 @@ For example, to display the ISO week numbers: (setq calendar-week-start-day 1 calendar-intermonth-text - '(propertize + \\='(propertize (format \"%2d\" (car (calendar-iso-from-absolute (calendar-absolute-from-gregorian (list month day year))))) - 'font-lock-face 'font-lock-function-name-face)) + \\='font-lock-face \\='font-lock-function-name-face)) See also `calendar-intermonth-header'." :group 'calendar |