aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2007-07-18 11:55:44 +0000
committerJuanma Barranquero2007-07-18 11:55:44 +0000
commit23dacf80610c5f4ce98c71809e1fe2c363fa5c4a (patch)
treed3e6306389c4bc7da6bbe0d232ed2f2d567b7237 /src
parent819586b27dd944c766c1663fbc9b56fd77afb08e (diff)
downloademacs-23dacf80610c5f4ce98c71809e1fe2c363fa5c4a.tar.gz
emacs-23dacf80610c5f4ce98c71809e1fe2c363fa5c4a.zip
(Fsetq_default): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog18
-rw-r--r--src/data.c2
2 files changed, 16 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ee830c6bcfc..2c14c0e8eaf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,8 +1,20 @@
12007-07-18 Richard Stallman <rms@gnu.org>
2
3 * data.c (Fsetq_default): Doc fix.
4
5 * eval.c (Fsetq): Doc fix.
6
72007-07-18 Juanma Barranquero <lekktu@gmail.com>
8
9 * coding.c (Ffind_operation_coding_system):
10 * eval.c (For, Fand): Doc fixes.
11 Reported by Johan Bockg,Ae(Brd.
12
12007-07-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 132007-07-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 14
3 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame 15 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
4 16
5 * xterm.h: Declare x_ewmh_activate_frame 17 * xterm.h: Declare x_ewmh_activate_frame.
6 18
7 * xterm.c (x_ewmh_activate_frame): New function. 19 * xterm.c (x_ewmh_activate_frame): New function.
8 (XTframe_raise_lower): Move code to x_ewmh_activate_frame. 20 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
@@ -8106,7 +8118,7 @@
81062005-09-19 Kim F. Storm <storm@cua.dk> 81182005-09-19 Kim F. Storm <storm@cua.dk>
8107 8119
8108 * editfns.c (Fformat): Don't scan past end of format string that 8120 * editfns.c (Fformat): Don't scan past end of format string that
8109 ends in %. Reported by: Johan Bockg,Ae(Brd. 8121 ends in %. Reported by Johan Bockg,Ae(Brd.
8110 8122
81112005-09-18 Andreas Schwab <schwab@suse.de> 81232005-09-18 Andreas Schwab <schwab@suse.de>
8112 8124
diff --git a/src/data.c b/src/data.c
index 471df20cd48..4cc35501447 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1440,7 +1440,7 @@ More generally, you can use multiple variables and values, as in
1440This sets each VAR's default value to the corresponding VALUE. 1440This sets each VAR's default value to the corresponding VALUE.
1441The VALUE for the Nth VAR can refer to the new default values 1441The VALUE for the Nth VAR can refer to the new default values
1442of previous VARs. 1442of previous VARs.
1443usage: (setq-default [VAR VALUE...]) */) 1443usage: (setq-default [VAR VALUE]...) */)
1444 (args) 1444 (args)
1445 Lisp_Object args; 1445 Lisp_Object args;
1446{ 1446{