diff options
| author | Paul Eggert | 2016-04-12 18:06:31 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-04-12 18:06:58 -0700 |
| commit | 7d835d8e792664e201ec50ba5f0a260d91e1fff5 (patch) | |
| tree | b80495b08f05cdbc1266a5a59457bb44780b3123 | |
| parent | fdb1ba144ca61185e6457f092f38f59dd9bbe6a0 (diff) | |
| download | emacs-7d835d8e792664e201ec50ba5f0a260d91e1fff5.tar.gz emacs-7d835d8e792664e201ec50ba5f0a260d91e1fff5.zip | |
Avoid now-obsolete function gmm-format-time-string
* lisp/gnus/message.el (message-insert-formatted-citation-line):
Use format-time-string instead of obsolete function
gmm-format-time-string.
| -rw-r--r-- | lisp/gnus/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 32d740b0190..3b2cf672020 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -3976,7 +3976,7 @@ See `message-citation-line-format'." | |||
| 3976 | (>= i ?a))) | 3976 | (>= i ?a))) |
| 3977 | (push i lst) | 3977 | (push i lst) |
| 3978 | (push (condition-case nil | 3978 | (push (condition-case nil |
| 3979 | (gmm-format-time-string (format "%%%c" i) time tz) | 3979 | (format-time-string (format "%%%c" i) time tz) |
| 3980 | (error (format ">%c<" i))) | 3980 | (error (format ">%c<" i))) |
| 3981 | lst)) | 3981 | lst)) |
| 3982 | (setq i (1+ i))) | 3982 | (setq i (1+ i))) |