]> git.eshelyaron.com Git - emacs.git/commitdiff
More info on how to replace make-variable-frame-local.
authorGlenn Morris <rgm@gnu.org>
Sat, 1 Mar 2008 20:31:09 +0000 (20:31 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 1 Mar 2008 20:31:09 +0000 (20:31 +0000)
etc/NEWS.22

index c97ec91fb516283fd7985ef6ab9c712bb2dd0ce6..5778e56ca26ddcba0931f6a2abb3d7bb6dcc1e46 100644 (file)
@@ -135,7 +135,15 @@ because they clash with commands provided by dirtrack.el.  Use
 * Lisp Changes in Emacs 22.2.
 
 ** Frame-local variables are deprecated and are slated for removal.
-Use frame parameters instead.
+They can easily be emulated.  Rather than calling `make-variable-frame-local'
+and accessing the variable value directly, explicitly check for a
+frame-parameter, and if there is one, use its value in preference to
+that of the variable. Eg:
+(let ((fp (assoc 'var (frame-parameters))))
+  ;; Use frame-parameter, even if nil.
+  (if fp (cdr fp)
+     ;; Else use normal variable value.
+     var))
 
 ** The function invisible-p returns non-nil if the character
 after a specified position is invisible.