diff options
author | Chong Yidong <cyd@gnu.org> | 2012-09-06 17:29:32 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-09-06 17:29:32 +0800 |
commit | 3424a4f61edc1aac5a5a59c2c8f52c8a7139232a (patch) | |
tree | 3d37328b7aaadd00221e75bf3ca8831f0a352193 | |
parent | c752cfa916879f7415990855b52862dd585242ec (diff) | |
download | emacs-3424a4f61edc1aac5a5a59c2c8f52c8a7139232a.tar.gz |
* frame.el (window-system-version): Mark as obsolete.
See http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00412.html
-rw-r--r-- | etc/NEWS | 1 | ||||
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/frame.el | 4 |
3 files changed, 9 insertions, 0 deletions
@@ -695,6 +695,7 @@ by the underlying C implementation. ** `automount-dir-prefix' is obsolete. ** `buffer-has-markers-at' is obsolete. +** `window-system-version' is obsolete. * Changes in Emacs 24.3 on non-free operating systems diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ccc517973b3..1f5f41c0e35 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-09-06 Chong Yidong <cyd@gnu.org> + + * frame.el (window-system-version): Mark as obsolete. + 2012-09-06 Juri Linkov <juri@jurta.org> * replace.el (replace-lax-whitespace): New defcustom. diff --git a/lisp/frame.el b/lisp/frame.el index 01225639ecf..c182a964820 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1657,6 +1657,10 @@ terminals, cursor blinking is controlled by the terminal." (make-variable-buffer-local 'show-trailing-whitespace) +;; Defined in dispnew.c. +(make-obsolete-variable + 'window-system-version "it does not give useful information." "24.3") + (provide 'frame) ;;; frame.el ends here |