aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2012-11-19 11:17:49 -0500
committerStefan Monnier2012-11-19 11:17:49 -0500
commit855b17af8fd8a96e1ca66a652b88f34479df12d7 (patch)
tree42bb2660c98ac384173510b1f7dec3e0fbeffe92
parent020423c2c37f80e6746bce87f431a51c66082a50 (diff)
downloademacs-855b17af8fd8a96e1ca66a652b88f34479df12d7.tar.gz
emacs-855b17af8fd8a96e1ca66a652b88f34479df12d7.zip
* lisp/calendar/time-date.el (time-to-seconds): De-obsolete.
-rw-r--r--etc/NEWS1
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/calendar/time-date.el4
3 files changed, 8 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c906640d80e..b63d3f8d538 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -52,6 +52,7 @@ spurious warnings about an unused var.
52 52
53* Lisp changes in Emacs 24.4 53* Lisp changes in Emacs 24.4
54 54
55** time-to-seconds is not obsolete any more.
55** New function special-form-p. 56** New function special-form-p.
56** Docstrings can be made dynamic by adding a `dynamic-docstring-function' 57** Docstrings can be made dynamic by adding a `dynamic-docstring-function'
57text-property on the first char. 58text-property on the first char.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ab060de5782..abaa53f5e4c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * calendar/time-date.el (time-to-seconds): De-obsolete.
4
12012-11-19 Jay Belanger <jay.p.belanger@gmail.com> 52012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2 6
3 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative 7 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
@@ -7,8 +11,8 @@
7 11
82012-11-19 Daniel Colascione <dancol@dancol.org> 122012-11-19 Daniel Colascione <dancol@dancol.org>
9 13
10 * term/w32-win.el (cygwin-convert-path-from-windows): Accomodate 14 * term/w32-win.el (cygwin-convert-path-from-windows):
11 rename of cygwin_convert_path* to cygwin_convert_file_name*. 15 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
12 16
132012-11-18 Chong Yidong <cyd@gnu.org> 172012-11-18 Chong Yidong <cyd@gnu.org>
14 18
diff --git a/lisp/calendar/time-date.el b/lisp/calendar/time-date.el
index 38b766084c9..b953a6fb2b0 100644
--- a/lisp/calendar/time-date.el
+++ b/lisp/calendar/time-date.el
@@ -134,9 +134,7 @@ If DATE lacks timezone information, GMT is assumed."
134;;;###autoload(if (or (featurep 'emacs) 134;;;###autoload(if (or (featurep 'emacs)
135;;;###autoload (and (fboundp 'float-time) 135;;;###autoload (and (fboundp 'float-time)
136;;;###autoload (subrp (symbol-function 'float-time)))) 136;;;###autoload (subrp (symbol-function 'float-time))))
137;;;###autoload (progn 137;;;###autoload (defalias 'time-to-seconds 'float-time)
138;;;###autoload (defalias 'time-to-seconds 'float-time)
139;;;###autoload (make-obsolete 'time-to-seconds 'float-time "21.1"))
140;;;###autoload (autoload 'time-to-seconds "time-date")) 138;;;###autoload (autoload 'time-to-seconds "time-date"))
141 139
142(eval-when-compile 140(eval-when-compile