aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-08-30 22:34:03 +0000
committerGlenn Morris2008-08-30 22:34:03 +0000
commit7f02dd2cf6cb7395cb06104fd052f08cc91e9e10 (patch)
treecb47684cb060e6e9b04c7594f1369dbb9b4c2499 /src
parent18c08c7e8349a2b529ae0f190baa5a454969a955 (diff)
downloademacs-7f02dd2cf6cb7395cb06104fd052f08cc91e9e10.tar.gz
emacs-7f02dd2cf6cb7395cb06104fd052f08cc91e9e10.zip
(Fmodify_frame_parameters): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/frame.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4a16ff32b11..15e32fab73e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-08-30 Glenn Morris <rgm@gnu.org>
2
3 * frame.c (Fmodify_frame_parameters): Doc fix.
4
12008-08-30 Eli Zaretskii <eliz@gnu.org> 52008-08-30 Eli Zaretskii <eliz@gnu.org>
2 6
3 * w32.c (stat): Only root directory passed to GetDriveType. Allow 7 * w32.c (stat): Only root directory passed to GetDriveType. Allow
diff --git a/src/frame.c b/src/frame.c
index 958d6031207..b1f3915dd44 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2265,7 +2265,9 @@ so that `frame-parameters' will return them.
2265 2265
2266The value of frame parameter FOO can also be accessed 2266The value of frame parameter FOO can also be accessed
2267as a frame-local binding for the variable FOO, if you have 2267as a frame-local binding for the variable FOO, if you have
2268enabled such bindings for that variable with `make-variable-frame-local'. */) 2268enabled such bindings for that variable with `make-variable-frame-local'.
2269Note that this functionality is obsolete as of Emacs 22.2, and its
2270use is not recommended. Explicitly check for a frame-parameter instead. */)
2269 (frame, alist) 2271 (frame, alist)
2270 Lisp_Object frame, alist; 2272 Lisp_Object frame, alist;
2271{ 2273{