diff options
| author | Dan Nicolaescu | 2008-07-13 07:35:26 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-07-13 07:35:26 +0000 |
| commit | bdee2ef3fab9b8a434d41c1f95c3f98aa342008b (patch) | |
| tree | 611a86007793d85fdbad7189d3e7a50adc319079 /src/eval.c | |
| parent | f06b5ed2ce9329fb6112f2ccfd7e3271c5cbe70c (diff) | |
| download | emacs-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.c | 4 |
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 | ||
| 457 | DEFUN ("prog1", Fprog1, Sprog1, 1, UNEVALLED, 0, | 457 | DEFUN ("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. |
| 459 | The value of FIRST is saved during the evaluation of the remaining args, | 459 | The value of FIRST is saved during the evaluation of the remaining args, |
| 460 | whose values are discarded. | 460 | whose values are discarded. |
| 461 | usage: (prog1 FIRST BODY...) */) | 461 | usage: (prog1 FIRST BODY...) */) |
| @@ -489,7 +489,7 @@ usage: (prog1 FIRST BODY...) */) | |||
| 489 | } | 489 | } |
| 490 | 490 | ||
| 491 | DEFUN ("prog2", Fprog2, Sprog2, 2, UNEVALLED, 0, | 491 | DEFUN ("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. |
| 493 | The value of FORM2 is saved during the evaluation of the | 493 | The value of FORM2 is saved during the evaluation of the |
| 494 | remaining args, whose values are discarded. | 494 | remaining args, whose values are discarded. |
| 495 | usage: (prog2 FORM1 FORM2 BODY...) */) | 495 | usage: (prog2 FORM1 FORM2 BODY...) */) |