# HG changeset patch # User Stefan Monnier # Date 1193172918 0 # Node ID 35b535f36d05a30e0cc07bf910b3b2c06f372eeb # Parent 1b7e940a8ddaee4a5e277cc59290e14b13ad7be3 (make-variable-frame-localizable): Remove. (make-variable-frame-local): Mark obsolete. diff -r 1b7e940a8dda -r 35b535f36d05 etc/NEWS --- a/etc/NEWS Tue Oct 23 15:28:15 2007 +0000 +++ b/etc/NEWS Tue Oct 23 20:55:18 2007 +0000 @@ -97,6 +97,8 @@ * Lisp Changes in Emacs 22.2. +** Frame-local variables are deprecated and are slated for removal. + Use frame parameters instead. ** The function invisible-p returns non-nil if the character after a specified position is invisible. diff -r 1b7e940a8dda -r 35b535f36d05 lisp/ChangeLog --- a/lisp/ChangeLog Tue Oct 23 15:28:15 2007 +0000 +++ b/lisp/ChangeLog Tue Oct 23 20:55:18 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-23 Stefan Monnier + + * subr.el (make-variable-frame-localizable): Remove. + (make-variable-frame-local): Mark obsolete. + 2007-10-23 Juanma Barranquero * ibuf-ext.el (ibuffer-switch-to-saved-filters) diff -r 1b7e940a8dda -r 35b535f36d05 lisp/subr.el --- a/lisp/subr.el Tue Oct 23 15:28:15 2007 +0000 +++ b/lisp/subr.el Tue Oct 23 20:55:18 2007 +0000 @@ -944,7 +944,7 @@ (make-obsolete 'focus-frame "it does nothing." "22.1") (defalias 'unfocus-frame 'ignore "") (make-obsolete 'unfocus-frame "it does nothing." "22.1") - +(make-obsolete 'make-variable-frame-local "use a frame-parameter instead" "22.2") ;;;; Obsolescence declarations for variables, and aliases. @@ -988,7 +988,6 @@ (defalias 'search-backward-regexp (symbol-function 're-search-backward)) (defalias 'int-to-string 'number-to-string) (defalias 'store-match-data 'set-match-data) -(defalias 'make-variable-frame-localizable 'make-variable-frame-local) ;; These are the XEmacs names: (defalias 'point-at-eol 'line-end-position) (defalias 'point-at-bol 'line-beginning-position)