aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-13 07:35:26 +0000
committerDan Nicolaescu2008-07-13 07:35:26 +0000
commitbdee2ef3fab9b8a434d41c1f95c3f98aa342008b (patch)
tree611a86007793d85fdbad7189d3e7a50adc319079 /src/eval.c
parentf06b5ed2ce9329fb6112f2ccfd7e3271c5cbe70c (diff)
downloademacs-bdee2ef3fab9b8a434d41c1f95c3f98aa342008b.tar.gz
emacs-bdee2ef3fab9b8a434d41c1f95c3f98aa342008b.zip
* config.nt (HAVE_FACES): Remove, unused.
* s/vms.h: Use __GNUC__ instead of _GNUC_. * m/macppc.h: * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals. * m/ibms390x.h (XINT, XUINT): Don't define, same as the default (SPECIAL_EMACS_INT): * m/ia64.h (SPECIAL_EMACS_INT): * m/amdx86-64.h (SPECIAL_EMACS_INT): * s/gnu.h (NLIST_STRUCT): * aix4-2.h (X11R5_INHIBIT_I18N): * s/gnu-linux.h (LINUX): * s/msdos.h (HAVE_FACES): * s/ms-w32.h (HAVE_FACES): Don't define, unused. * systty.h: * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used anymore.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index e1e0a476662..045d6090a3f 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -455,7 +455,7 @@ usage: (progn BODY...) */)
455} 455}
456 456
457DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, 457DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0,
458 doc: /* Eval FIRST and BODY sequentially; value from FIRST. 458 doc: /* Eval FIRST and BODY sequentially; return value from FIRST.
459The value of FIRST is saved during the evaluation of the remaining args, 459The value of FIRST is saved during the evaluation of the remaining args,
460whose values are discarded. 460whose values are discarded.
461usage: (prog1 FIRST BODY...) */) 461usage: (prog1 FIRST BODY...) */)
@@ -489,7 +489,7 @@ usage: (prog1 FIRST BODY...) */)
489} 489}
490 490
491DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, 491DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0,
492 doc: /* Eval FORM1, FORM2 and BODY sequentially; value from FORM2. 492 doc: /* Eval FORM1, FORM2 and BODY sequentially; return value from FORM2.
493The value of FORM2 is saved during the evaluation of the 493The value of FORM2 is saved during the evaluation of the
494remaining args, whose values are discarded. 494remaining args, whose values are discarded.
495usage: (prog2 FORM1 FORM2 BODY...) */) 495usage: (prog2 FORM1 FORM2 BODY...) */)