summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index d91642c5cbe..f284c18ce5e 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -784,6 +784,12 @@ is converted into a string by expressing it in decimal."
baud-rate)
(make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15")
+;; These are used by VM and some old programs
+(defalias 'focus-frame 'ignore "")
+(make-obsolete 'focus-frame "it does nothing." "22.1")
+(defalias 'unfocus-frame 'ignore "")
+(make-obsolete 'unfocus-frame "it does nothing." "22.1")
+
;;;; Obsolescence declarations for variables, and aliases.
@@ -1452,10 +1458,6 @@ BEG and END default respectively to the beginning and end of buffer."
;;;; Miscellanea.
-;; A number of major modes set this locally.
-;; Give it a global value to avoid compiler warnings.
-(defvar font-lock-defaults nil)
-
(defvar suspend-hook nil
"Normal hook run by `suspend-emacs', before suspending.")