diff options
| author | Juri Linkov | 2004-03-23 07:43:10 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-03-23 07:43:10 +0000 |
| commit | ef3e91755f45be240466d5d62178a5eeeecc36ba (patch) | |
| tree | 9233aed7e391a1cdf27eae296133825c35490cc7 /lisp | |
| parent | f561ff53ca9d49f4a2f2b2d549eef7f8b2d3f736 (diff) | |
| download | emacs-ef3e91755f45be240466d5d62178a5eeeecc36ba.tar.gz emacs-ef3e91755f45be240466d5d62178a5eeeecc36ba.zip | |
(display-time-string-forms): Fix help-echo date format.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 47 | ||||
| -rw-r--r-- | lisp/time.el | 2 |
2 files changed, 48 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 37855861e12..10a28d27c1d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,50 @@ | |||
| 1 | 2004-03-23 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * man.el (Man-width): New var. | ||
| 4 | (Man-getpage-in-background): Use it. | ||
| 5 | (Man-support-local-filenames): New var and fun. | ||
| 6 | (Man-build-man-command): Don't add a second %s. | ||
| 7 | (Man-fontify-manpage): Clean up message. | ||
| 8 | (Man-mode): Set outline-regexp, outline-level, | ||
| 9 | imenu-generic-expression. | ||
| 10 | |||
| 11 | * woman.el (woman-fill-frame): Doc fix. | ||
| 12 | (woman-decode-region): Use window-width instead of frame-width. | ||
| 13 | |||
| 14 | * abbrevlist.el (list-one-abbrev-table): Use window-width instead | ||
| 15 | of frame-width. | ||
| 16 | |||
| 17 | * descr-text.el (describe-char): Use window-width instead of | ||
| 18 | frame-width. | ||
| 19 | |||
| 20 | * international/mule-diag.el (describe-current-coding-system): Use | ||
| 21 | window-width instead of frame-width. | ||
| 22 | |||
| 23 | * international/quail.el (quail-insert-decode-map): Use | ||
| 24 | window-width instead of frame-width. | ||
| 25 | |||
| 26 | * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz. | ||
| 27 | (jka-compr-mode-alist-additions): Add tbz. | ||
| 28 | (jka-compr-write-region): Add error message for undefined | ||
| 29 | compress-program. | ||
| 30 | (jka-compr-insert-file-contents): Add message for undefined | ||
| 31 | compress-program. | ||
| 32 | (jka-compr-write-region): Remove redundant var bindings. | ||
| 33 | |||
| 34 | * dired-x.el (dired-guess-shell-alist-default): Add choices for | ||
| 35 | extracting files into subdirectory. Add tbz and dz. Fix regexps. | ||
| 36 | Add extensions .[0-9] for man and nroff, and .pod for perldoc. | ||
| 37 | (dired-man): Use dired-guess-shell-command. | ||
| 38 | (dired-guess-shell-case-fold-search): Change defvar to defcustom. | ||
| 39 | Change default nil to t. | ||
| 40 | |||
| 41 | * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz. | ||
| 42 | (dired-compare-directories): Add default value for empty input. | ||
| 43 | |||
| 44 | * help-at-pt.el: Move suggestions for key bindings to Commentary. | ||
| 45 | |||
| 46 | * time.el (display-time-string-forms): Fix help-echo date format. | ||
| 47 | |||
| 1 | 2004-03-22 Luc Teirlinck <teirllm@auburn.edu> | 48 | 2004-03-22 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 49 | ||
| 3 | * autorevert.el (global-auto-revert-non-file-buffers): Expand doc | 50 | * autorevert.el (global-auto-revert-non-file-buffers): Expand doc |
diff --git a/lisp/time.el b/lisp/time.el index a4c5f97ac98..ebc883b3d8e 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -177,7 +177,7 @@ depend on `display-time-day-and-date' and `display-time-24hr-format'." | |||
| 177 | (format-time-string (or display-time-format | 177 | (format-time-string (or display-time-format |
| 178 | (if display-time-24hr-format "%H:%M" "%-I:%M%p")) | 178 | (if display-time-24hr-format "%H:%M" "%-I:%M%p")) |
| 179 | now) | 179 | now) |
| 180 | 'help-echo (format-time-string "%s %b %e, %Y" now)) | 180 | 'help-echo (format-time-string "%a %b %e, %Y" now)) |
| 181 | load | 181 | load |
| 182 | (if mail | 182 | (if mail |
| 183 | ;; Build the string every time to act on customization. | 183 | ;; Build the string every time to act on customization. |