diff options
| -rw-r--r-- | lisp/calendar/calendar.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 16009df8245..71fb76ce213 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1517,7 +1517,8 @@ line." | |||
| 1517 | (insert (propertize | 1517 | (insert (propertize |
| 1518 | (format (format "%%%dd" calendar-day-digit-width) day) | 1518 | (format (format "%%%dd" calendar-day-digit-width) day) |
| 1519 | 'mouse-face 'highlight | 1519 | 'mouse-face 'highlight |
| 1520 | 'help-echo (eval calendar-date-echo-text) | 1520 | 'help-echo (calendar-dlet* ((day day) (month month) (year year)) |
| 1521 | (eval calendar-date-echo-text)) | ||
| 1521 | ;; 'date property prevents intermonth text confusing re-searches. | 1522 | ;; 'date property prevents intermonth text confusing re-searches. |
| 1522 | ;; (Tried intangible, it did not really work.) | 1523 | ;; (Tried intangible, it did not really work.) |
| 1523 | 'date t) | 1524 | 'date t) |