aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-09-19 19:54:36 +0000
committerChong Yidong2009-09-19 19:54:36 +0000
commit24aedbcaed8346fd956a84ab79570891ca03a1b8 (patch)
tree87fe09dfc241c07f0031520f634d81870f5e44d7
parent327dd27aa7b049c7bfec2b50cff10ab113ceb330 (diff)
downloademacs-24aedbcaed8346fd956a84ab79570891ca03a1b8.tar.gz
emacs-24aedbcaed8346fd956a84ab79570891ca03a1b8.zip
* subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el6
2 files changed, 2 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2a949595ef7..72d309fd0ee 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12009-09-19 Chong Yidong <cyd@stupidchicken.com> 12009-09-19 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
4
3 * time-stamp.el (time-stamp-month-dd-yyyy) 5 * time-stamp.el (time-stamp-month-dd-yyyy)
4 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy) 6 (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
5 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd) 7 (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
diff --git a/lisp/subr.el b/lisp/subr.el
index e8d7072081e..ac8743e683e 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1072,12 +1072,6 @@ is converted into a string by expressing it in decimal."
1072(defun makehash (&optional test) (make-hash-table :test (or test 'eql))) 1072(defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
1073(make-obsolete 'makehash 'make-hash-table "22.1") 1073(make-obsolete 'makehash 'make-hash-table "22.1")
1074 1074
1075;; Some programs still use this as a function.
1076(defun baud-rate ()
1077 "Return the value of the `baud-rate' variable."
1078 baud-rate)
1079(make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15")
1080
1081;; These are used by VM and some old programs 1075;; These are used by VM and some old programs
1082(defalias 'focus-frame 'ignore "") 1076(defalias 'focus-frame 'ignore "")
1083(make-obsolete 'focus-frame "it does nothing." "22.1") 1077(make-obsolete 'focus-frame "it does nothing." "22.1")