diff options
author | Rupert Swarbrick <rswarbrick@gmail.com> | 2012-08-01 00:15:44 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-08-01 00:15:44 -0700 |
commit | b686ba0618136facee41606ae062203f17615f79 (patch) | |
tree | a7fcea8b2a5d2aefe82324c8fcf81c090cc57e05 /lisp/calendar/cal-html.el | |
parent | 3193acd258557340907a7281d067fdbb426c2f54 (diff) | |
download | emacs-b686ba0618136facee41606ae062203f17615f79.tar.gz |
* calendar/cal-html.el (cal-html-insert-agenda-days): Fix typo. (tiny change)
Fixes: debbugs:12018
Diffstat (limited to 'lisp/calendar/cal-html.el')
-rw-r--r-- | lisp/calendar/cal-html.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/cal-html.el b/lisp/calendar/cal-html.el index 679fae98bc8..9e9544d707b 100644 --- a/lisp/calendar/cal-html.el +++ b/lisp/calendar/cal-html.el @@ -396,7 +396,7 @@ holidays in HOLIDAY-LIST." ;; Diary entries. cal-html-b-tabledata-string (cal-html-htmlify-list holiday-list date t) - (and holiday-list diary-list "<BR>\n") + (if (and holiday-list diary-list) "<BR>\n" "") (cal-html-htmlify-list diary-list date) cal-html-e-tabledata-string cal-html-e-tablerow-string) |