]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing calendar-dlet* (Bug#31267)
authorNoam Postavsky <npostavs@gmail.com>
Thu, 26 Apr 2018 11:36:50 +0000 (07:36 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Thu, 26 Apr 2018 11:37:48 +0000 (07:37 -0400)
* lisp/calendar/calendar.el (calendar-generate-month): Use
calendar-dlet* around evaluation of calendar-date-echo-text.

lisp/calendar/calendar.el

index 16009df82455a141f44be75677fc0732e46d1cb9..71fb76ce2139217d69a0742d632f5991b0e227b7 100644 (file)
@@ -1517,7 +1517,8 @@ line."
      (insert (propertize
               (format (format "%%%dd" calendar-day-digit-width) day)
               'mouse-face 'highlight
-              'help-echo (eval calendar-date-echo-text)
+              'help-echo (calendar-dlet* ((day day) (month month) (year year))
+                           (eval calendar-date-echo-text))
               ;; 'date property prevents intermonth text confusing re-searches.
               ;; (Tried intangible, it did not really work.)
               'date t)