diff options
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b1d4e26dfdb..334412d7d0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * help.el (describe-mode): Pass the right buffer to format-mode-line. | ||
| 4 | |||
| 1 | 2008-01-16 Glenn Morris <rgm@gnu.org> | 5 | 2008-01-16 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * comint.el (comint-regexp-arg): Fix no-input case. | 7 | * comint.el (comint-regexp-arg): Fix no-input case. |
| @@ -14,8 +18,8 @@ | |||
| 14 | 2008-01-16 Ulf Jasper <ulf.jasper@web.de> | 18 | 2008-01-16 Ulf Jasper <ulf.jasper@web.de> |
| 15 | 19 | ||
| 16 | * calendar/icalendar.el (icalendar-version): Increase to 0.16. | 20 | * calendar/icalendar.el (icalendar-version): Increase to 0.16. |
| 17 | (icalendar-export-file, icalendar-import-file): Restore | 21 | (icalendar-export-file, icalendar-import-file): |
| 18 | significant trailing whitespace in `interactive' prompts. | 22 | Restore significant trailing whitespace in `interactive' prompts. |
| 19 | 23 | ||
| 20 | 2008-01-16 Tom Tromey <tromey@redhat.com> | 24 | 2008-01-16 Tom Tromey <tromey@redhat.com> |
| 21 | 25 | ||
| @@ -24,8 +28,8 @@ | |||
| 24 | (icalendar--find-time-zone): New functions. | 28 | (icalendar--find-time-zone): New functions. |
| 25 | (icalendar--decode-isodatetime): Add `zone' argument, passed to | 29 | (icalendar--decode-isodatetime): Add `zone' argument, passed to |
| 26 | `decode-time'. Doc fix. | 30 | `decode-time'. Doc fix. |
| 27 | (icalendar--convert-ical-to-diary): Compute zone-map. Pass | 31 | (icalendar--convert-ical-to-diary): Compute zone-map. |
| 28 | timezone to icalendar--decode-isodatetime. | 32 | Pass timezone to icalendar--decode-isodatetime. |
| 29 | 33 | ||
| 30 | 2008-01-16 Alan Mackenzie <acm@muc.de> | 34 | 2008-01-16 Alan Mackenzie <acm@muc.de> |
| 31 | 35 | ||
diff --git a/lisp/help.el b/lisp/help.el index 68d3e33fe0a..24f1e74d71a 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -860,7 +860,7 @@ whose documentation describes the minor mode." | |||
| 860 | (let ((mode mode-name)) | 860 | (let ((mode mode-name)) |
| 861 | (with-current-buffer standard-output | 861 | (with-current-buffer standard-output |
| 862 | (let ((start (point))) | 862 | (let ((start (point))) |
| 863 | (insert (format-mode-line mode)) | 863 | (insert (format-mode-line mode nil nil buffer)) |
| 864 | (add-text-properties start (point) '(face bold))))) | 864 | (add-text-properties start (point) '(face bold))))) |
| 865 | (princ " mode:\n") | 865 | (princ " mode:\n") |
| 866 | (princ (documentation major-mode)))))) | 866 | (princ (documentation major-mode)))))) |