comparison src/data.c @ 90105:7e3f621f1dd4

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-15 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-95 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-96 Move Gnus images into etc/images * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-97 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-105 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-14 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-15 Update from CVS: lisp/imap.el (imap-log): Doc fix. * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-16 Merge from emacs--cvs-trunk--0
author Miles Bader <miles@gnu.org>
date Fri, 18 Feb 2005 00:41:50 +0000
parents 95879cc1ed20 896e880eab56
children 08185296b491
comparison
equal deleted inserted replaced
90104:a01e7a9f1659 90105:7e3f621f1dd4
1456 value, NULL); 1456 value, NULL);
1457 1457
1458 return value; 1458 return value;
1459 } 1459 }
1460 1460
1461 DEFUN ("setq-default", Fsetq_default, Ssetq_default, 2, UNEVALLED, 0, 1461 DEFUN ("setq-default", Fsetq_default, Ssetq_default, 0, UNEVALLED, 0,
1462 doc: /* Set the default value of variable VAR to VALUE. 1462 doc: /* Set the default value of variable VAR to VALUE.
1463 VAR, the variable name, is literal (not evaluated); 1463 VAR, the variable name, is literal (not evaluated);
1464 VALUE is an expression: it is evaluated and its value returned. 1464 VALUE is an expression: it is evaluated and its value returned.
1465 The default value of a variable is seen in buffers 1465 The default value of a variable is seen in buffers
1466 that do not have their own values for the variable. 1466 that do not have their own values for the variable.
1468 More generally, you can use multiple variables and values, as in 1468 More generally, you can use multiple variables and values, as in
1469 (setq-default VAR VALUE VAR VALUE...) 1469 (setq-default VAR VALUE VAR VALUE...)
1470 This sets each VAR's default value to the corresponding VALUE. 1470 This sets each VAR's default value to the corresponding VALUE.
1471 The VALUE for the Nth VAR can refer to the new default values 1471 The VALUE for the Nth VAR can refer to the new default values
1472 of previous VARs. 1472 of previous VARs.
1473 usage: (setq-default VAR VALUE [VAR VALUE...]) */) 1473 usage: (setq-default [VAR VALUE...]) */)
1474 (args) 1474 (args)
1475 Lisp_Object args; 1475 Lisp_Object args;
1476 { 1476 {
1477 register Lisp_Object args_left; 1477 register Lisp_Object args_left;
1478 register Lisp_Object val, symbol; 1478 register Lisp_Object val, symbol;